Total Complexity | 51 |
Total Lines | 406 |
Duplicated Lines | 0 % |
Changes | 4 | ||
Bugs | 0 | Features | 0 |
Complex classes like ClientService often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use ClientService, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
13 | class ClientService extends BaseService |
||
14 | { |
||
15 | public function __construct(ClientRepository $client, ClientAddressRepository $clientAddress) |
||
16 | { |
||
17 | $this->repo = $client; |
||
|
|||
18 | $this->repoAddress = $clientAddress; |
||
19 | } |
||
20 | |||
21 | /** |
||
22 | * The validation rules for the model. |
||
23 | * |
||
24 | * @param integer $clientId id attribute model |
||
25 | * @return array |
||
26 | */ |
||
27 | private function rules($clientId = false) |
||
52 | } |
||
53 | |||
54 | public function validateAddress(array $attributes) |
||
55 | { |
||
56 | $rules = array( |
||
57 | 'firstname' => 'required', |
||
58 | 'lastname' => 'required', |
||
59 | 'zipcode' => 'required|max:8', |
||
60 | 'housenumber' => 'required|numeric', |
||
61 | 'street' => 'required', |
||
62 | 'city' => 'required', |
||
63 | 'country' => 'required' |
||
64 | ); |
||
65 | |||
66 | return Validator::make($attributes, $rules); |
||
67 | } |
||
68 | |||
69 | |||
70 | public function create(array $attributes) |
||
71 | { |
||
72 | $attributes['shop_id'] = auth('hideyobackend')->user()->selected_shop_id; |
||
73 | $validator = Validator::make($attributes, $this->rules()); |
||
74 | |||
75 | if ($validator->fails()) { |
||
76 | return $validator; |
||
77 | } |
||
78 | |||
79 | $attributes['password'] = Hash::make($attributes['password']); |
||
80 | $attributes['modified_by_user_id'] = auth('hideyobackend')->user()->id; |
||
81 | $this->repo->getModel()->fill($attributes); |
||
82 | $this->repo->getModel()->save(); |
||
83 | $clientAddress = $this->createAddress($attributes, $this->repo->getModel()->id); |
||
84 | $new['delivery_client_address_id'] = $clientAddress->id; |
||
85 | $new['bill_client_address_id'] = $clientAddress->id; |
||
86 | $this->repo->getModel()->fill($new); |
||
87 | $this->repo->getModel()->save(); |
||
88 | return $this->repo->getModel(); |
||
89 | } |
||
90 | |||
91 | public function updateById(array $attributes, $clientId) |
||
92 | { |
||
93 | $model = $this->find($clientId); |
||
94 | $attributes['shop_id'] = auth('hideyobackend')->user()->selected_shop_id; |
||
95 | $attributes['modified_by_user_id'] = auth('hideyobackend')->user()->id; |
||
96 | |||
97 | $validator = Validator::make($attributes, $this->rules($clientId)); |
||
98 | |||
99 | if ($validator->fails()) { |
||
100 | return $validator; |
||
101 | } |
||
102 | |||
103 | if ($attributes['password']) { |
||
104 | $attributes['password'] = Hash::make($attributes['password']); |
||
105 | } |
||
106 | |||
107 | $model->fill($attributes); |
||
108 | $model->save(); |
||
109 | |||
110 | return $model; |
||
111 | } |
||
112 | |||
113 | public function validateConfirmationCode($confirmationCode, $email, $shopId) |
||
116 | } |
||
117 | |||
118 | public function validateLogin($attributes) |
||
119 | { |
||
120 | $rules = array( |
||
121 | 'email' => 'required|email', |
||
122 | 'password' => 'required|min:2' |
||
123 | ); |
||
124 | |||
125 | return Validator::make($attributes, $rules); |
||
126 | } |
||
127 | |||
128 | public function login($request) |
||
129 | { |
||
130 | $loginData = array( |
||
131 | 'email' => $request->get('email'), |
||
132 | 'password' => $request->get('password'), |
||
133 | 'confirmed' => 1, |
||
134 | 'active' => 1, |
||
135 | 'shop_id' => config()->get('app.shop_id') |
||
136 | ); |
||
137 | |||
138 | if (auth('web')->attempt($loginData)) { |
||
139 | return true; |
||
140 | } |
||
141 | } |
||
142 | |||
143 | public function confirmClient($confirmationCode, $email, $shopId) |
||
158 | } |
||
159 | |||
160 | public function getConfirmationCodeByEmail($email, $shopId) |
||
173 | } |
||
174 | |||
175 | public function validateRegister($attributes, $noAccount = false) |
||
176 | { |
||
177 | // create the validation rules ------------------------ |
||
178 | $rules = array( |
||
179 | 'email' => 'required|email', // required and must be unique in the ducks table |
||
180 | 'password' => 'required', |
||
181 | 'firstname' => 'required', |
||
182 | 'lastname' => 'required', |
||
183 | 'zipcode' => 'required', |
||
184 | 'housenumber' => 'required|numeric', |
||
185 | 'houseletter' => 'alpha', |
||
186 | 'street' => 'required', |
||
187 | 'city' => 'required', |
||
188 | 'country' => 'required' |
||
189 | ); |
||
190 | |||
191 | if ($noAccount) { |
||
192 | unset($rules['email']); |
||
193 | unset($rules['password']); |
||
194 | } |
||
195 | |||
196 | |||
197 | return $validator = Validator::make($attributes, $rules); |
||
198 | } |
||
199 | |||
200 | public function register($attributes, $shopId, $accountConfirmed = false) |
||
201 | { |
||
202 | $client = $this->repo->checkEmailByShopId($attributes['email'], $shopId); |
||
203 | |||
204 | if($client AND $client->account_created) { |
||
205 | return false; |
||
206 | } |
||
207 | |||
208 | if($client) { |
||
209 | $model = $client; |
||
210 | } else { |
||
211 | $model = $this->repo->getModel(); |
||
212 | } |
||
213 | |||
214 | $attributes['shop_id'] = $shopId; |
||
215 | $attributes['modified_by_user_id'] = null; |
||
216 | $attributes['active'] = 0; |
||
217 | $attributes['confirmed'] = 0; |
||
218 | $attributes['confirmation_code'] = md5(uniqid(mt_rand(), true)); |
||
219 | if($accountConfirmed) { |
||
220 | $attributes['active'] = 1; |
||
221 | $attributes['confirmed'] = 1; |
||
222 | $attributes['confirmation_code'] = null; |
||
223 | } |
||
224 | |||
225 | if (isset($attributes['password'])) { |
||
226 | $attributes['password'] = Hash::make($attributes['password']); |
||
227 | $attributes['account_created'] = Carbon::now()->toDateTimeString(); |
||
228 | } |
||
229 | |||
230 | $model->fill($attributes); |
||
231 | $model->save(); |
||
232 | |||
233 | $clientAddress = $this->createAddress($attributes, $model->id); |
||
234 | $new['delivery_client_address_id'] = $clientAddress->id; |
||
235 | $new['bill_client_address_id'] = $clientAddress->id; |
||
236 | $model->fill($new); |
||
237 | $model->save(); |
||
238 | return $model; |
||
239 | } |
||
240 | |||
241 | public function createAddress($attributes, $clientId) |
||
249 | } |
||
250 | |||
251 | public function editAddress($clientId, $addressId, $attributes) |
||
252 | { |
||
253 | $clientAddress = $this->repoAddress->find($addressId); |
||
254 | |||
255 | if($clientAddress) { |
||
256 | $clientAddress->fill($attributes); |
||
257 | $clientAddress->save(); |
||
258 | |||
259 | return $clientAddress; |
||
260 | } |
||
261 | |||
262 | return false; |
||
263 | } |
||
264 | |||
265 | public function updateByIdAndShopId($shopId, array $attributes, $clientId, $id) |
||
266 | { |
||
267 | $this->model = $this->find($id); |
||
268 | return $this->updateEntity($attributes); |
||
269 | } |
||
270 | |||
271 | public function requestChangeAccountDetails($attributes, $shopId) { |
||
272 | |||
273 | $client = $this->repo->checkEmailByShopId($attributes['email'], $shopId); |
||
274 | |||
275 | if ($client) { |
||
276 | $newAttributes = array( |
||
277 | 'new_email' => $attributes['email'], |
||
278 | 'new_password' => Hash::make($attributes['password']), |
||
279 | 'confirmation_code' => md5(uniqid(mt_rand(), true)) |
||
280 | ); |
||
281 | |||
282 | $client->fill($newAttributes); |
||
283 | $client->save(); |
||
284 | |||
285 | return $client; |
||
286 | } |
||
287 | |||
288 | return false; |
||
289 | } |
||
290 | |||
291 | public function changeAccountDetails($confirmationCode, $newEmail, $shopId) { |
||
311 | } |
||
312 | |||
313 | public function changePassword(array $attributes, $shopId) |
||
314 | { |
||
315 | $result = array(); |
||
316 | $result['result'] = false; |
||
317 | |||
318 | $client = $this->repo->validateConfirmationCodeByConfirmationCodeAndEmail($attributes['confirmation_code'], $attributes['email'], $shopId); |
||
319 | |||
320 | if ($client) { |
||
321 | if ($attributes['password']) { |
||
322 | $newAttributes['confirmed'] = 1; |
||
323 | $newAttributes['active'] = 1; |
||
324 | $newAttributes['confirmation_code'] = null; |
||
325 | $newAttributes['password'] = Hash::make($attributes['password']); |
||
326 | $client->fill($newAttributes); |
||
327 | $client->save(); |
||
328 | return $client; |
||
329 | } |
||
330 | } |
||
331 | |||
332 | return false; |
||
333 | } |
||
334 | |||
335 | public function selectAllExport() { |
||
336 | return $this->repo->selectAllExport(); |
||
337 | } |
||
338 | |||
339 | public function activate($clientId) |
||
340 | { |
||
341 | $model = $this->find($clientId); |
||
342 | |||
343 | if ($model) { |
||
344 | $attributes['confirmed'] = 1; |
||
345 | $attributes['active'] = 1; |
||
346 | $attributes['confirmation_code'] = null; |
||
347 | |||
348 | $model->fill($attributes); |
||
349 | $model->save(); |
||
350 | |||
351 | return $model; |
||
352 | } |
||
353 | |||
354 | return false; |
||
355 | } |
||
356 | |||
357 | public function deactivate($clientId) |
||
358 | { |
||
359 | $model = $this->find($clientId); |
||
360 | |||
361 | if ($model) { |
||
362 | $attributes['confirmed'] = 0; |
||
363 | $attributes['active'] = 0; |
||
364 | $attributes['confirmation_code'] = null; |
||
365 | |||
366 | $model->fill($attributes); |
||
367 | $model->save(); |
||
368 | |||
369 | return $model; |
||
370 | } |
||
371 | |||
372 | return false; |
||
373 | } |
||
374 | |||
375 | public function setBillOrDeliveryAddress($shopId, $clientId, $addressId, $type) |
||
376 | { |
||
377 | $client = $this->find($clientId); |
||
378 | |||
379 | if ($client) { |
||
380 | |||
381 | $newAttributes = array(); |
||
382 | |||
383 | if ($type == 'bill') { |
||
384 | $newAttributes['bill_client_address_id'] = $addressId; |
||
385 | } elseif ($type == 'delivery') { |
||
386 | $newAttributes['delivery_client_address_id'] = $addressId; |
||
387 | } |
||
388 | |||
389 | $client->fill($newAttributes); |
||
390 | $client->save(); |
||
391 | return $client; |
||
392 | } |
||
393 | |||
394 | return false; |
||
395 | } |
||
396 | |||
397 | public function selectOneByShopIdAndId($shopId, $clientId) |
||
398 | { |
||
399 | return $this->repo->selectOneByShopIdAndId($shopId, $clientId); |
||
400 | } |
||
401 | |||
402 | public function selectAddressesByClientId($clientId) { |
||
404 | } |
||
405 | |||
406 | public function getAddressModel() |
||
407 | { |
||
408 | return $this->repoAddress->getModel(); |
||
409 | } |
||
410 | |||
411 | public function findAddress($clientAddressId) |
||
414 | } |
||
415 | |||
416 | public function validateRegisterNoAccount(array $attributes, $shopId) |
||
417 | { |
||
418 | return $this->repo->validateRegisterNoAccount($attributes, $shopId); |
||
419 | } |
||
420 | } |