Total Complexity | 63 |
Total Lines | 528 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
Complex classes like XoopsMemberHandler 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 XoopsMemberHandler, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
33 | class XoopsMemberHandler |
||
34 | { |
||
35 | /** |
||
36 | * holds reference to group handler(DAO) class |
||
37 | * @access private |
||
38 | */ |
||
39 | protected $groupHandler; |
||
40 | |||
41 | /** |
||
42 | * holds reference to user handler(DAO) class |
||
43 | */ |
||
44 | protected $userHandler; |
||
45 | |||
46 | /** |
||
47 | * holds reference to membership handler(DAO) class |
||
48 | */ |
||
49 | protected $membershipHandler; |
||
50 | |||
51 | /** |
||
52 | * holds temporary user objects |
||
53 | */ |
||
54 | protected $membersWorkingList = array(); |
||
55 | |||
56 | /** |
||
57 | * constructor |
||
58 | * @param XoopsDatabase|null| $db |
||
59 | */ |
||
60 | public function __construct(XoopsDatabase $db) |
||
61 | { |
||
62 | $this->groupHandler = new XoopsGroupHandler($db); |
||
63 | $this->userHandler = new XoopsUserHandler($db); |
||
64 | $this->membershipHandler = new XoopsMembershipHandler($db); |
||
65 | } |
||
66 | |||
67 | /** |
||
68 | * create a new group |
||
69 | * |
||
70 | * @return XoopsGroup XoopsGroup reference to the new group |
||
71 | */ |
||
72 | public function &createGroup() |
||
73 | { |
||
74 | $inst = $this->groupHandler->create(); |
||
75 | |||
76 | return $inst; |
||
77 | } |
||
78 | |||
79 | /** |
||
80 | * create a new user |
||
81 | * |
||
82 | * @return XoopsUser reference to the new user |
||
83 | */ |
||
84 | public function createUser() |
||
89 | } |
||
90 | |||
91 | /** |
||
92 | * retrieve a group |
||
93 | * |
||
94 | * @param int $id ID for the group |
||
95 | * @return XoopsGroup XoopsGroup reference to the group |
||
96 | */ |
||
97 | public function getGroup($id) |
||
98 | { |
||
99 | return $this->groupHandler->get($id); |
||
100 | } |
||
101 | |||
102 | /** |
||
103 | * retrieve a user |
||
104 | * |
||
105 | * @param int $id ID for the user |
||
106 | * @return XoopsUser reference to the user |
||
107 | */ |
||
108 | public function getUser($id) |
||
109 | { |
||
110 | if (!isset($this->membersWorkingList[$id])) { |
||
111 | $this->membersWorkingList[$id] = $this->userHandler->get($id); |
||
112 | } |
||
113 | |||
114 | return $this->membersWorkingList[$id]; |
||
115 | } |
||
116 | |||
117 | /** |
||
118 | * delete a group |
||
119 | * |
||
120 | * @param XoopsGroup $group reference to the group to delete |
||
121 | * @return bool FALSE if failed |
||
122 | */ |
||
123 | public function deleteGroup(XoopsGroup $group) |
||
129 | } |
||
130 | |||
131 | /** |
||
132 | * delete a user |
||
133 | * |
||
134 | * @param XoopsUser $user reference to the user to delete |
||
135 | * @return bool FALSE if failed |
||
136 | */ |
||
137 | public function deleteUser(XoopsUser $user) |
||
138 | { |
||
139 | $s1 = $this->membershipHandler->deleteAll(new Criteria('uid', $user->getVar('uid'))); |
||
140 | $s2 = $this->userHandler->delete($user); |
||
141 | |||
142 | return ($s1 && $s2);// ? true : false; |
||
143 | } |
||
144 | |||
145 | /** |
||
146 | * insert a group into the database |
||
147 | * |
||
148 | * @param XoopsGroup $group reference to the group to insert |
||
149 | * @return bool TRUE if already in database and unchanged |
||
150 | * FALSE on failure |
||
151 | */ |
||
152 | public function insertGroup(XoopsGroup $group) |
||
153 | { |
||
154 | return $this->groupHandler->insert($group); |
||
155 | } |
||
156 | |||
157 | /** |
||
158 | * insert a user into the database |
||
159 | * |
||
160 | * @param XoopsUser $user reference to the user to insert |
||
161 | * @param bool $force |
||
162 | * |
||
163 | * @return bool TRUE if already in database and unchanged |
||
164 | * FALSE on failure |
||
165 | */ |
||
166 | public function insertUser(XoopsUser $user, $force = false) |
||
169 | } |
||
170 | |||
171 | /** |
||
172 | * retrieve groups from the database |
||
173 | * |
||
174 | * @param CriteriaElement $criteria {@link CriteriaElement} |
||
175 | * @param bool $id_as_key use the group's ID as key for the array? |
||
176 | * @return array array of {@link XoopsGroup} objects |
||
177 | */ |
||
178 | public function getGroups(CriteriaElement $criteria = null, $id_as_key = false) |
||
179 | { |
||
180 | return $this->groupHandler->getObjects($criteria, $id_as_key); |
||
181 | } |
||
182 | |||
183 | /** |
||
184 | * retrieve users from the database |
||
185 | * |
||
186 | * @param CriteriaElement $criteria {@link CriteriaElement} |
||
187 | * @param bool $id_as_key use the group's ID as key for the array? |
||
188 | * @return array array of {@link XoopsUser} objects |
||
189 | */ |
||
190 | public function getUsers(CriteriaElement $criteria = null, $id_as_key = false) |
||
191 | { |
||
192 | return $this->userHandler->getObjects($criteria, $id_as_key); |
||
193 | } |
||
194 | |||
195 | /** |
||
196 | * get a list of groupnames and their IDs |
||
197 | * |
||
198 | * @param CriteriaElement $criteria {@link CriteriaElement} object |
||
199 | * @return array associative array of group-IDs and names |
||
200 | */ |
||
201 | public function getGroupList(CriteriaElement $criteria = null) |
||
202 | { |
||
203 | $groups = $this->groupHandler->getObjects($criteria, true); |
||
204 | $ret = array(); |
||
205 | foreach (array_keys($groups) as $i) { |
||
206 | $ret[$i] = $groups[$i]->getVar('name'); |
||
207 | } |
||
208 | |||
209 | return $ret; |
||
210 | } |
||
211 | |||
212 | /** |
||
213 | * get a list of usernames and their IDs |
||
214 | * |
||
215 | * @param CriteriaElement $criteria {@link CriteriaElement} object |
||
216 | * @return array associative array of user-IDs and names |
||
217 | */ |
||
218 | public function getUserList(CriteriaElement $criteria = null) |
||
219 | { |
||
220 | $users =& $this->userHandler->getObjects($criteria, true); |
||
221 | $ret = array(); |
||
222 | foreach (array_keys($users) as $i) { |
||
223 | $ret[$i] = $users[$i]->getVar('uname'); |
||
224 | } |
||
225 | |||
226 | return $ret; |
||
227 | } |
||
228 | |||
229 | /** |
||
230 | * add a user to a group |
||
231 | * |
||
232 | * @param int $group_id ID of the group |
||
233 | * @param int $user_id ID of the user |
||
234 | * @return XoopsMembership XoopsMembership |
||
235 | */ |
||
236 | public function addUserToGroup($group_id, $user_id) |
||
243 | } |
||
244 | |||
245 | /** |
||
246 | * remove a list of users from a group |
||
247 | * |
||
248 | * @param int $group_id ID of the group |
||
249 | * @param array $user_ids array of user-IDs |
||
250 | * @return bool success? |
||
251 | */ |
||
252 | public function removeUsersFromGroup($group_id, $user_ids = array()) |
||
253 | { |
||
254 | $criteria = new CriteriaCompo(); |
||
255 | $criteria->add(new Criteria('groupid', $group_id)); |
||
256 | $criteria2 = new CriteriaCompo(); |
||
257 | foreach ($user_ids as $uid) { |
||
258 | $criteria2->add(new Criteria('uid', $uid), 'OR'); |
||
259 | } |
||
260 | $criteria->add($criteria2); |
||
261 | |||
262 | return $this->membershipHandler->deleteAll($criteria); |
||
263 | } |
||
264 | |||
265 | /** |
||
266 | * get a list of users belonging to a group |
||
267 | * |
||
268 | * @param int $group_id ID of the group |
||
269 | * @param bool $asobject return the users as objects? |
||
270 | * @param int $limit number of users to return |
||
271 | * @param int $start index of the first user to return |
||
272 | * @return array Array of {@link XoopsUser} objects (if $asobject is TRUE) |
||
273 | * or of associative arrays matching the record structure in the database. |
||
274 | */ |
||
275 | public function getUsersByGroup($group_id, $asobject = false, $limit = 0, $start = 0) |
||
276 | { |
||
277 | $user_ids = $this->membershipHandler->getUsersByGroup($group_id, $limit, $start); |
||
278 | if (!$asobject) { |
||
279 | return $user_ids; |
||
280 | } else { |
||
281 | $ret = array(); |
||
282 | foreach ($user_ids as $u_id) { |
||
283 | $user = $this->getUser($u_id); |
||
284 | if (is_object($user)) { |
||
285 | $ret[] = &$user; |
||
286 | } |
||
287 | unset($user); |
||
288 | } |
||
289 | |||
290 | return $ret; |
||
291 | } |
||
292 | } |
||
293 | |||
294 | /** |
||
295 | * get a list of groups that a user is member of |
||
296 | * |
||
297 | * @param int $user_id ID of the user |
||
298 | * @param bool $asobject return groups as {@link XoopsGroup} objects or arrays? |
||
299 | * @return array array of objects or arrays |
||
300 | */ |
||
301 | public function getGroupsByUser($user_id, $asobject = false) |
||
302 | { |
||
303 | $group_ids = $this->membershipHandler->getGroupsByUser($user_id); |
||
304 | if (!$asobject) { |
||
305 | return $group_ids; |
||
306 | } else { |
||
307 | $ret = array(); |
||
308 | foreach ($group_ids as $g_id) { |
||
309 | $ret[] = $this->getGroup($g_id); |
||
310 | } |
||
311 | |||
312 | return $ret; |
||
313 | } |
||
314 | } |
||
315 | |||
316 | /** |
||
317 | * log in a user |
||
318 | * |
||
319 | * @param string $uname username as entered in the login form |
||
320 | * @param string $pwd password entered in the login form |
||
321 | * |
||
322 | * @return XoopsUser|false logged in XoopsUser, FALSE if failed to log in |
||
323 | */ |
||
324 | public function loginUser($uname, $pwd) |
||
325 | { |
||
326 | $db = XoopsDatabaseFactory::getDatabaseConnection(); |
||
327 | $uname = $db->escape($uname); |
||
328 | $pwd = $db->escape($pwd); |
||
329 | $criteria = new Criteria('uname', $uname); |
||
330 | $user =& $this->userHandler->getObjects($criteria, false); |
||
331 | if (!$user || count($user) != 1) { |
||
332 | return false; |
||
333 | } |
||
334 | |||
335 | $hash = $user[0]->pass(); |
||
336 | $type = substr($user[0]->pass(), 0, 1); |
||
337 | // see if we have a crypt like signature, old md5 hash is just hex digits |
||
338 | if ($type==='$') { |
||
339 | if (!password_verify($pwd, $hash)) { |
||
340 | return false; |
||
341 | } |
||
342 | // check if hash uses the best algorithm (i.e. after a PHP upgrade) |
||
343 | $rehash = password_needs_rehash($hash, PASSWORD_DEFAULT); |
||
344 | } else { |
||
345 | if ($hash!=md5($pwd)) { |
||
346 | return false; |
||
347 | } |
||
348 | $rehash = true; // automatically update old style |
||
349 | } |
||
350 | // hash used an old algorithm, so make it stronger |
||
351 | if ($rehash) { |
||
352 | if ($this->getColumnCharacterLength('users', 'pass') < 255) { |
||
353 | error_log('Upgrade required on users table!'); |
||
354 | } else { |
||
355 | $user[0]->setVar('pass', password_hash($pwd, PASSWORD_DEFAULT)); |
||
356 | $this->userHandler->insert($user[0]); |
||
357 | } |
||
358 | } |
||
359 | return $user[0]; |
||
360 | } |
||
361 | |||
362 | /** |
||
363 | * Get maximum character length for a table column |
||
364 | * |
||
365 | * @param string $table database table |
||
366 | * @param string $column table column |
||
367 | * |
||
368 | * @return int|null max length or null on error |
||
369 | */ |
||
370 | public function getColumnCharacterLength($table, $column) |
||
371 | { |
||
372 | /** @var XoopsMySQLDatabase $db */ |
||
373 | $db = XoopsDatabaseFactory::getDatabaseConnection(); |
||
374 | |||
375 | $dbname = constant('XOOPS_DB_NAME'); |
||
376 | $table = $db->prefix($table); |
||
377 | |||
378 | $sql = sprintf( |
||
379 | 'SELECT `CHARACTER_MAXIMUM_LENGTH` FROM `information_schema`.`COLUMNS` ' |
||
380 | . "WHERE TABLE_SCHEMA = '%s'AND TABLE_NAME = '%s' AND COLUMN_NAME = '%s'", |
||
381 | $db->escape($dbname), |
||
382 | $db->escape($table), |
||
383 | $db->escape($column) |
||
384 | ); |
||
385 | |||
386 | /** @var mysqli_result $result */ |
||
387 | $result = $db->query($sql); |
||
388 | if ($result) { |
||
389 | $row = $db->fetchRow($result); |
||
390 | if ($row) { |
||
391 | $columnLength = $row[0]; |
||
392 | return (int) $columnLength; |
||
393 | } |
||
394 | } |
||
395 | return null; |
||
396 | } |
||
397 | |||
398 | /** |
||
399 | * count users matching certain conditions |
||
400 | * |
||
401 | * @param CriteriaElement $criteria {@link CriteriaElement} object |
||
402 | * @return int |
||
403 | */ |
||
404 | public function getUserCount(CriteriaElement $criteria = null) |
||
405 | { |
||
406 | return $this->userHandler->getCount($criteria); |
||
407 | } |
||
408 | |||
409 | /** |
||
410 | * count users belonging to a group |
||
411 | * |
||
412 | * @param int $group_id ID of the group |
||
413 | * @return int |
||
414 | */ |
||
415 | public function getUserCountByGroup($group_id) |
||
416 | { |
||
417 | return $this->membershipHandler->getCount(new Criteria('groupid', $group_id)); |
||
418 | } |
||
419 | |||
420 | /** |
||
421 | * updates a single field in a users record |
||
422 | * |
||
423 | * @param XoopsUser $user reference to the {@link XoopsUser} object |
||
424 | * @param string $fieldName name of the field to update |
||
425 | * @param string $fieldValue updated value for the field |
||
426 | * @return bool TRUE if success or unchanged, FALSE on failure |
||
427 | */ |
||
428 | public function updateUserByField(XoopsUser $user, $fieldName, $fieldValue) |
||
429 | { |
||
430 | $user->setVar($fieldName, $fieldValue); |
||
431 | |||
432 | return $this->insertUser($user); |
||
433 | } |
||
434 | |||
435 | /** |
||
436 | * updates a single field in a users record |
||
437 | * |
||
438 | * @param string $fieldName name of the field to update |
||
439 | * @param string $fieldValue updated value for the field |
||
440 | * @param CriteriaElement $criteria {@link CriteriaElement} object |
||
441 | * @return bool TRUE if success or unchanged, FALSE on failure |
||
442 | */ |
||
443 | public function updateUsersByField($fieldName, $fieldValue, CriteriaElement $criteria = null) |
||
444 | { |
||
445 | return $this->userHandler->updateAll($fieldName, $fieldValue, $criteria); |
||
446 | } |
||
447 | |||
448 | /** |
||
449 | * activate a user |
||
450 | * |
||
451 | * @param XoopsUser $user reference to the {@link XoopsUser} object |
||
452 | * @return mixed successful? false on failure |
||
453 | */ |
||
454 | public function activateUser(XoopsUser $user) |
||
464 | } |
||
465 | |||
466 | /** |
||
467 | * Get a list of users belonging to certain groups and matching criteria |
||
468 | * Temporary solution |
||
469 | * |
||
470 | * @param array $groups IDs of groups |
||
471 | * @param CriteriaElement $criteria {@link CriteriaElement} object |
||
472 | * @param bool $asobject return the users as objects? |
||
473 | * @param bool $id_as_key use the UID as key for the array if $asobject is TRUE |
||
474 | * @return array Array of {@link XoopsUser} objects (if $asobject is TRUE) |
||
475 | * or of associative arrays matching the record structure in the database. |
||
476 | */ |
||
477 | public function getUsersByGroupLink($groups, CriteriaElement $criteria = null, $asobject = false, $id_as_key = false) |
||
478 | { |
||
479 | $ret = array(); |
||
525 | } |
||
526 | |||
527 | /** |
||
528 | * Get count of users belonging to certain groups and matching criteria |
||
529 | * Temporary solution |
||
530 | * |
||
531 | * @param array $groups IDs of groups |
||
532 | * @param CriteriaElement $criteria |
||
533 | * @return int count of users |
||
534 | */ |
||
535 | public function getUserCountByGroupLink(array $groups, CriteriaElement $criteria = null) |
||
563 |