| Total Complexity | 87 |
| Total Lines | 685 |
| Duplicated Lines | 0 % |
| Changes | 2 | ||
| 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 = []; |
||
| 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() |
||
| 85 | { |
||
| 86 | $inst = $this->userHandler->create(); |
||
| 87 | |||
| 88 | return $inst; |
||
| 89 | } |
||
| 90 | |||
| 91 | /** |
||
| 92 | * retrieve a group |
||
| 93 | * |
||
| 94 | * @param int $id ID for the group |
||
| 95 | * @return XoopsGroup|false 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) |
||
| 124 | { |
||
| 125 | $s1 = $this->membershipHandler->deleteAll(new Criteria('groupid', $group->getVar('groupid'))); |
||
|
|
|||
| 126 | $s2 = $this->groupHandler->delete($group); |
||
| 127 | |||
| 128 | return ($s1 && $s2);// ? true : false; |
||
| 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 = []; |
||
| 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 = []; |
||
| 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) |
||
| 237 | { |
||
| 238 | $mship = $this->membershipHandler->create(); |
||
| 239 | $mship->setVar('groupid', $group_id); |
||
| 240 | $mship->setVar('uid', $user_id); |
||
| 241 | |||
| 242 | return $this->membershipHandler->insert($mship); |
||
| 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 = []) |
||
| 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 = []; |
||
| 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 = []; |
||
| 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 ($db->isResultSet($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) |
||
| 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) |
||
| 455 | { |
||
| 464 | } |
||
| 465 | |||
| 466 | protected function allowedSortMap() |
||
| 467 | { |
||
| 468 | return [ |
||
| 469 | 'uid' => 'u.uid', |
||
| 470 | 'uname' => 'u.uname', |
||
| 471 | 'email' => 'u.email', |
||
| 472 | 'user_regdate' => 'u.user_regdate', |
||
| 473 | 'last_login' => 'u.last_login', |
||
| 474 | 'user_avatar' => 'u.user_avatar', |
||
| 475 | 'name' => 'u.name', |
||
| 476 | 'u.uid' => 'u.uid', |
||
| 483 | ]; |
||
| 484 | } |
||
| 485 | |||
| 486 | |||
| 487 | /** |
||
| 488 | * Get a list of users belonging to certain groups and matching criteria |
||
| 489 | * Temporary solution |
||
| 490 | * |
||
| 491 | * @param array $groups IDs of groups |
||
| 492 | * @param CriteriaElement $criteria {@link CriteriaElement} object |
||
| 493 | * @param bool $asobject return the users as objects? |
||
| 494 | * @param bool $id_as_key use the UID as key for the array if $asobject is TRUE |
||
| 495 | * @return array Array of {@link XoopsUser} objects (if $asobject is TRUE) |
||
| 496 | * or of associative arrays matching the record structure in the database. |
||
| 497 | */ |
||
| 498 | |||
| 499 | public function getUsersByGroupLink( |
||
| 500 | $groups, |
||
| 501 | $criteria = null, |
||
| 502 | $asobject = false, |
||
| 503 | $id_as_key = false |
||
| 504 | ) { |
||
| 505 | // Type coercion for backwards compatibility |
||
| 506 | $groups = is_array($groups) ? $groups : [$groups]; |
||
| 507 | $asobject = (bool)$asobject; |
||
| 508 | $id_as_key = (bool)$id_as_key; |
||
| 509 | |||
| 510 | // Debug configuration using only current XOOPS debug system |
||
| 511 | // Check XOOPS debug mode - we only want PHP debugging (1=inline, 2=popup) |
||
| 512 | $xoopsDebugMode = isset($GLOBALS['xoopsConfig']['debug_mode']) ? (int)$GLOBALS['xoopsConfig']['debug_mode'] : 0; |
||
| 513 | $xoopsPhpDebugEnabled = ($xoopsDebugMode === 1 || $xoopsDebugMode === 2); |
||
| 514 | |||
| 515 | // Check if debug is allowed for current user based on debugLevel |
||
| 516 | $xoopsDebugAllowed = $xoopsPhpDebugEnabled; |
||
| 517 | if ($xoopsPhpDebugEnabled && isset($GLOBALS['xoopsConfig']['debugLevel'])) { |
||
| 518 | $debugLevel = (int)$GLOBALS['xoopsConfig']['debugLevel']; |
||
| 519 | $xoopsUser = $GLOBALS['xoopsUser'] ?? null; |
||
| 520 | $xoopsUserIsAdmin = isset($GLOBALS['xoopsUserIsAdmin']) ? $GLOBALS['xoopsUserIsAdmin'] : false; |
||
| 521 | |||
| 522 | // Apply XOOPS debug level restrictions |
||
| 523 | switch ($debugLevel) { |
||
| 524 | case 2: // Admins only |
||
| 525 | $xoopsDebugAllowed = $xoopsUserIsAdmin; |
||
| 526 | break; |
||
| 527 | case 1: // Members only |
||
| 528 | $xoopsDebugAllowed = ($xoopsUser !== null); |
||
| 529 | break; |
||
| 530 | case 0: // All users |
||
| 531 | default: |
||
| 532 | $xoopsDebugAllowed = true; |
||
| 533 | break; |
||
| 534 | } |
||
| 535 | } |
||
| 536 | |||
| 537 | // Production safety check using hostname detection |
||
| 538 | $isProd = isset($_SERVER['SERVER_NAME']) |
||
| 539 | && !in_array($_SERVER['SERVER_NAME'], ['localhost','127.0.0.1','::1','dev.local'], true); |
||
| 540 | |||
| 541 | |||
| 542 | // Enable SQL logging only if XOOPS PHP debug is allowed and not in production |
||
| 543 | $isDebug = $xoopsDebugAllowed && !$isProd; |
||
| 544 | |||
| 545 | /** |
||
| 546 | * Redact sensitive SQL literals in debug logs while preserving query structure |
||
| 547 | * @param string $sql The SQL query to redact |
||
| 548 | * @return string Redacted SQL query |
||
| 549 | */ |
||
| 550 | $redactSql = static function (string $sql): string { |
||
| 551 | // Replace quoted strings with placeholders |
||
| 552 | $sql = preg_replace("/'[^']*'/", "'?'", $sql); |
||
| 553 | $sql = preg_replace('/"[^"]*"/', '"?"', $sql); |
||
| 554 | // Replace hex literals |
||
| 555 | $sql = preg_replace("/x'[0-9A-Fa-f]+'/", "x'?'", $sql); |
||
| 556 | // Replace large numbers (potential IDs) but keep small ones |
||
| 557 | $sql = preg_replace('/\b\d{6,}\b/', '[ID]', $sql); |
||
| 558 | return $sql; |
||
| 559 | }; |
||
| 560 | |||
| 561 | $ret = []; |
||
| 562 | $criteriaCompo = new CriteriaCompo(); |
||
| 563 | $select = $asobject ? 'u.*' : 'u.uid'; |
||
| 564 | $sql = "SELECT {$select} FROM " . $this->userHandler->db->prefix('users') . ' u'; |
||
| 565 | $whereParts = []; |
||
| 566 | $limit = 0; |
||
| 567 | $start = 0; |
||
| 568 | |||
| 569 | // Sanitize and validate groups with enhanced security |
||
| 570 | $validGroups = []; |
||
| 571 | foreach ($groups as $groupId) { |
||
| 572 | // Extra validation to ensure we have clean integers |
||
| 573 | if (is_numeric($groupId)) { |
||
| 574 | $groupId = (int)$groupId; |
||
| 575 | if ($groupId > 0) { |
||
| 576 | $validGroups[] = $groupId; |
||
| 577 | } |
||
| 578 | } |
||
| 579 | } |
||
| 580 | |||
| 581 | // Build group filtering with EXISTS subquery for better performance |
||
| 582 | if (!empty($validGroups)) { |
||
| 583 | // Additional safety: ensure all values are actually integers |
||
| 584 | $validGroups = array_values(array_unique(array_filter( |
||
| 585 | array_map('intval', (array)$groups), |
||
| 586 | static fn($id) => $id > 0 |
||
| 587 | ))); |
||
| 588 | |||
| 589 | if (!empty($validGroups)) { |
||
| 590 | $group_in = '(' . implode(', ', $validGroups) . ')'; |
||
| 591 | $whereParts[] = 'EXISTS (SELECT 1 FROM ' . $this->membershipHandler->db->prefix('groups_users_link') |
||
| 592 | . " m WHERE m.uid = u.uid AND m.groupid IN {$group_in})"; |
||
| 593 | } |
||
| 594 | } |
||
| 595 | |||
| 596 | // Handle criteria - compatible with CriteriaElement and subclasses |
||
| 597 | if ($criteria instanceof \CriteriaElement) { |
||
| 598 | $criteriaCompo->add($criteria, 'AND'); |
||
| 599 | $sqlCriteria = trim($criteriaCompo->render()); |
||
| 600 | |||
| 601 | // Remove WHERE keyword if present |
||
| 602 | $sqlCriteria = preg_replace('/^\s*WHERE\s+/i', '', $sqlCriteria ?? ''); |
||
| 603 | |||
| 604 | if ('' !== $sqlCriteria) { |
||
| 605 | $whereParts[] = $sqlCriteria; |
||
| 606 | } |
||
| 607 | |||
| 608 | $limit = (int)$criteria->getLimit(); |
||
| 609 | $start = (int)$criteria->getStart(); |
||
| 610 | } |
||
| 611 | |||
| 612 | // Build WHERE clause |
||
| 613 | if (!empty($whereParts)) { |
||
| 614 | $sql .= ' WHERE ' . implode(' AND ', $whereParts); |
||
| 615 | } |
||
| 616 | |||
| 617 | // Handle ORDER BY with enhanced security whitelist |
||
| 618 | if ($criteria instanceof \CriteriaElement) { |
||
| 619 | $sort = trim($criteria->getSort()); |
||
| 620 | $order = trim($criteria->getOrder()); |
||
| 621 | if ('' !== $sort) { |
||
| 622 | // Comprehensive whitelist for safe sorting columns |
||
| 623 | $allowedSorts = $this->allowedSortMap(); |
||
| 624 | |||
| 625 | if (isset($allowedSorts[$sort])) { |
||
| 626 | $orderDirection = ('DESC' === strtoupper($order)) ? ' DESC' : ' ASC'; |
||
| 627 | $sql .= ' ORDER BY ' . $allowedSorts[$sort] . $orderDirection; |
||
| 628 | } |
||
| 629 | } |
||
| 630 | } |
||
| 631 | |||
| 632 | // Execute query with comprehensive error handling |
||
| 633 | $result = $this->userHandler->db->query($sql, $limit, $start); |
||
| 634 | |||
| 635 | if (!$this->userHandler->db->isResultSet($result)) { |
||
| 636 | // Enhanced error logging with security considerations |
||
| 637 | $logger = class_exists('XoopsLogger') ? \XoopsLogger::getInstance() : null; |
||
| 638 | $error = $this->userHandler->db->error(); |
||
| 639 | |||
| 640 | $msg = "Database query failed in " . __METHOD__ . ": {$error}"; |
||
| 641 | |||
| 642 | if ($isDebug) { |
||
| 643 | // Add correlation context for easier debugging |
||
| 644 | $context = [ |
||
| 645 | 'user_id' => isset($GLOBALS['xoopsUser']) && $GLOBALS['xoopsUser'] |
||
| 646 | ? $GLOBALS['xoopsUser']->getVar('uid') : 'anonymous', |
||
| 647 | 'uri' => $_SERVER['REQUEST_URI'] ?? 'cli', |
||
| 648 | 'method' => $_SERVER['REQUEST_METHOD'] ?? 'CLI', |
||
| 649 | 'groups_count' => count($validGroups) |
||
| 650 | ]; |
||
| 651 | $msg .= ' Context: ' . json_encode($context, JSON_UNESCAPED_SLASHES); |
||
| 652 | $msg .= ' SQL: ' . $redactSql($sql); |
||
| 653 | } |
||
| 654 | |||
| 655 | if ($logger) { |
||
| 656 | $logger->handleError(E_USER_WARNING, $msg, __FILE__, __LINE__); |
||
| 657 | } else { |
||
| 658 | // Enhanced fallback logging with file/line info |
||
| 659 | error_log($msg . " in " . __FILE__ . " on line " . __LINE__); |
||
| 660 | } |
||
| 661 | |||
| 662 | return $ret; |
||
| 663 | } |
||
| 664 | |||
| 665 | // Process results with enhanced type safety |
||
| 666 | while (false !== ($myrow = $this->userHandler->db->fetchArray($result))) { |
||
| 667 | if ($asobject) { |
||
| 668 | $user = new XoopsUser(); |
||
| 669 | $user->assignVars($myrow); |
||
| 670 | if ($id_as_key) { |
||
| 671 | $ret[(int)$myrow['uid']] = $user; |
||
| 672 | } else { |
||
| 673 | $ret[] = $user; |
||
| 674 | } |
||
| 675 | } else { |
||
| 676 | // Ensure consistent integer return for UIDs |
||
| 677 | $ret[] = (int)$myrow['uid']; |
||
| 678 | } |
||
| 679 | } |
||
| 680 | |||
| 681 | return $ret; |
||
| 682 | } |
||
| 683 | |||
| 684 | /** |
||
| 685 | * Get count of users belonging to certain groups and matching criteria |
||
| 686 | * Temporary solution |
||
| 687 | * |
||
| 688 | * @param array $groups IDs of groups |
||
| 689 | * @param CriteriaElement $criteria |
||
| 690 | * @return int count of users |
||
| 691 | */ |
||
| 692 | public function getUserCountByGroupLink(array $groups, ?CriteriaElement $criteria = null) |
||
| 718 | } |
||
| 719 | } |
||
| 720 |