1 | <?php |
||
13 | class SourcedUser extends EventSourcedAggregateRoot |
||
14 | { |
||
15 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
16 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
17 | ///////////////////////////////////////////// PROPERTIES /////////////////////////////////////////////////// |
||
18 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
19 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
20 | |||
21 | /** |
||
22 | * @var ApplicationUserId |
||
23 | */ |
||
24 | private $id; |
||
25 | |||
26 | /** |
||
27 | * @var string |
||
28 | */ |
||
29 | private $name; |
||
30 | |||
31 | /** |
||
32 | * @var string |
||
33 | */ |
||
34 | private $preferredLanguage; |
||
35 | |||
36 | /** |
||
37 | * @var ThirdPartyAccount[] |
||
38 | */ |
||
39 | private $thirdPartyAccounts; |
||
40 | |||
41 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
42 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
43 | ///////////////////////////////////////// PRIVATE CONSTRUCTOR ////////////////////////////////////////////// |
||
44 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
45 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
46 | |||
47 | /** |
||
48 | * Constructor |
||
49 | */ |
||
50 | 6 | private function __construct() |
|
54 | |||
55 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
56 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
57 | //////////////////////////////////////////// DOMAIN METHODS //////////////////////////////////////////////// |
||
58 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
59 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
60 | |||
61 | /** |
||
62 | * @param ThirdPartyAccount $thirdPartyUser |
||
63 | */ |
||
64 | public function linkToThirdPartyAccount(ThirdPartyAccount $thirdPartyUser) |
||
72 | |||
73 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
74 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
75 | ////////////////////////////////////////////// ACCESSORS /////////////////////////////////////////////////// |
||
76 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
77 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
78 | |||
79 | /** |
||
80 | * Returns the user id |
||
81 | * |
||
82 | * @return ApplicationUserId |
||
83 | */ |
||
84 | 3 | public function getId() |
|
88 | |||
89 | /** |
||
90 | * @return string |
||
91 | */ |
||
92 | 3 | public function getAggregateRootId() |
|
96 | |||
97 | /** |
||
98 | * Returns the user name |
||
99 | * |
||
100 | * @return string |
||
101 | */ |
||
102 | 3 | public function getName() |
|
106 | |||
107 | /** |
||
108 | * Returns the preferred language |
||
109 | * |
||
110 | * @return string |
||
111 | */ |
||
112 | 3 | public function getPreferredLanguage() |
|
116 | |||
117 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
118 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
119 | ////////////////////////////////////////// PRIVATE METHODS ///////////////////////////////////////////////// |
||
120 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
121 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
122 | |||
123 | /** |
||
124 | * Initialize the game |
||
125 | * |
||
126 | * @param ApplicationUserId $id |
||
127 | * @param string $name |
||
128 | * @param string $language |
||
129 | */ |
||
130 | 3 | private function initialize(ApplicationUserId $id, $name, $language) |
|
134 | |||
135 | /** |
||
136 | * @param Source $source |
||
137 | * |
||
138 | * @return bool |
||
139 | */ |
||
140 | private function isThirdPartyAccountAlreadyLinked(Source $source) |
||
144 | |||
145 | /** |
||
146 | * @param ThirdPartyAccount $account |
||
147 | */ |
||
148 | private function setThirdPartyUser(ThirdPartyAccount $account) |
||
152 | |||
153 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
154 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
155 | //////////////////////////////////////////// APPLY EVENTS ////////////////////////////////////////////////// |
||
156 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
157 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
158 | |||
159 | /** |
||
160 | * Apply the user created event |
||
161 | * |
||
162 | * @param \MessageApp\Event\UserCreatedEvent $event |
||
163 | */ |
||
164 | 3 | protected function applyUserCreatedEvent(UserCreatedEvent $event) |
|
171 | |||
172 | /** |
||
173 | * Apply the third party account linked event |
||
174 | * |
||
175 | * @param ThirdPartyAccountLinkedEvent $event |
||
176 | */ |
||
177 | protected function applyThirdPartyAccountLinkedEvent(ThirdPartyAccountLinkedEvent $event) |
||
181 | |||
182 | /** |
||
183 | * Apply the third party account replaced event |
||
184 | * |
||
185 | * @param ThirdPartyAccountReplacedEvent $event |
||
186 | */ |
||
187 | protected function applyThirdPartyAccountReplacedEvent(ThirdPartyAccountReplacedEvent $event) |
||
191 | |||
192 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
193 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
194 | ///////////////////////////////////////// STATIC CONSTRUCTOR /////////////////////////////////////////////// |
||
195 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
196 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
197 | |||
198 | /** |
||
199 | * Create a new instance |
||
200 | * |
||
201 | * @param ApplicationUserId $id |
||
202 | * @param string $name |
||
203 | * @param string $language |
||
204 | * |
||
205 | * @return SourcedUser |
||
206 | */ |
||
207 | 3 | public static function createUser(ApplicationUserId $id, $name, $language) |
|
218 | |||
219 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
220 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
221 | /////////////////////////////////////////// RECONSTITUTION ///////////////////////////////////////////////// |
||
222 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
223 | //////////////////////////////////////////////////////////////////////////////////////////////////////////////// |
||
224 | |||
225 | /** |
||
226 | * Static construction method for reconstitution |
||
227 | * |
||
228 | * @return SourcedUser |
||
229 | */ |
||
230 | 3 | public static function instantiateForReconstitution() |
|
234 | } |
||
235 |