Complex classes like Player 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. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
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 Player, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
17 | class Player extends AvatarModel implements NamedModel, DuplexUrlInterface, EloInterface |
||
18 | { |
||
19 | /** |
||
20 | * These are built-in roles that cannot be deleted via the web interface so we will be storing these values as |
||
21 | * constant variables. Hopefully, a user won't be silly enough to delete them manually from the database. |
||
22 | * |
||
23 | * @TODO Deprecate these and use the Role constants |
||
24 | */ |
||
25 | const DEVELOPER = Role::DEVELOPER; |
||
26 | const ADMIN = Role::ADMINISTRATOR; |
||
27 | const COP = Role::COP; |
||
28 | const REFEREE = Role::REFEREE; |
||
29 | const S_ADMIN = Role::SYSADMIN; |
||
30 | const PLAYER = Role::PLAYER; |
||
31 | const PLAYER_NO_PM = Role::PLAYER_NO_PM; |
||
32 | |||
33 | /** |
||
34 | * The bzid of the player |
||
35 | * @var int |
||
36 | */ |
||
37 | protected $bzid; |
||
38 | |||
39 | /** |
||
40 | * The id of the player's team |
||
41 | * @var int |
||
42 | */ |
||
43 | protected $team; |
||
44 | |||
45 | /** |
||
46 | * The player's status |
||
47 | * @var string |
||
48 | */ |
||
49 | protected $status; |
||
50 | |||
51 | /** |
||
52 | * The player's e-mail address |
||
53 | * @var string |
||
54 | */ |
||
55 | protected $email; |
||
56 | |||
57 | /** |
||
58 | * Whether the player has verified their e-mail address |
||
59 | * @var bool |
||
60 | */ |
||
61 | protected $verified; |
||
62 | |||
63 | /** |
||
64 | * What kind of events the player should be e-mailed about |
||
65 | * @var string |
||
66 | */ |
||
67 | protected $receives; |
||
68 | |||
69 | /** |
||
70 | * A confirmation code for the player's e-mail address verification |
||
71 | * @var string |
||
72 | */ |
||
73 | protected $confirmCode; |
||
74 | |||
75 | /** |
||
76 | * Whether the callsign of the player is outdated |
||
77 | * @var bool |
||
78 | */ |
||
79 | protected $outdated; |
||
80 | |||
81 | /** |
||
82 | * The player's profile description |
||
83 | * @var string |
||
84 | */ |
||
85 | protected $description; |
||
86 | |||
87 | /** |
||
88 | * The id of the player's country |
||
89 | * @var int |
||
90 | */ |
||
91 | protected $country; |
||
92 | |||
93 | /** |
||
94 | * The player's timezone PHP identifier, e.g. "Europe/Paris" |
||
95 | * @var string |
||
96 | */ |
||
97 | protected $timezone; |
||
98 | |||
99 | /** |
||
100 | * The date the player joined the site |
||
101 | * @var TimeDate |
||
102 | */ |
||
103 | protected $joined; |
||
104 | |||
105 | /** |
||
106 | * The date of the player's last login |
||
107 | * @var TimeDate |
||
108 | */ |
||
109 | protected $last_login; |
||
110 | |||
111 | /** |
||
112 | * The date of the player's last match |
||
113 | * @var Match |
||
114 | */ |
||
115 | protected $last_match; |
||
116 | |||
117 | /** |
||
118 | * The roles a player belongs to |
||
119 | * @var Role[] |
||
120 | */ |
||
121 | protected $roles; |
||
122 | |||
123 | /** |
||
124 | * The permissions a player has |
||
125 | * @var Permission[] |
||
126 | */ |
||
127 | protected $permissions; |
||
128 | |||
129 | /** |
||
130 | * A section for admins to write notes about players |
||
131 | * @var string |
||
132 | */ |
||
133 | protected $admin_notes; |
||
134 | |||
135 | /** |
||
136 | * The ban of the player, or null if the player is not banned |
||
137 | * @var Ban|null |
||
138 | */ |
||
139 | protected $ban; |
||
140 | |||
141 | /** |
||
142 | * Cached results for match summaries |
||
143 | * |
||
144 | * @var array |
||
145 | */ |
||
146 | private $cachedMatchSummary; |
||
147 | |||
148 | /** |
||
149 | * The cached match count for a player |
||
150 | * |
||
151 | * @var int |
||
152 | */ |
||
153 | private $cachedMatchCount = null; |
||
154 | |||
155 | private $eloSeason; |
||
156 | private $eloSeasonHistory; |
||
157 | |||
158 | private $matchActivity; |
||
159 | |||
160 | /** |
||
161 | * The name of the database table used for queries |
||
162 | */ |
||
163 | const TABLE = "players"; |
||
164 | |||
165 | /** |
||
166 | * The location where avatars will be stored |
||
167 | */ |
||
168 | const AVATAR_LOCATION = "/web/assets/imgs/avatars/players/"; |
||
169 | |||
170 | const EDIT_PERMISSION = Permission::EDIT_USER; |
||
171 | const SOFT_DELETE_PERMISSION = Permission::SOFT_DELETE_USER; |
||
172 | const HARD_DELETE_PERMISSION = Permission::HARD_DELETE_USER; |
||
173 | |||
174 | /** |
||
175 | * {@inheritdoc} |
||
176 | */ |
||
177 | 72 | protected function assignResult($player) |
|
178 | { |
||
179 | 72 | $this->bzid = $player['bzid']; |
|
180 | 72 | $this->name = $player['username']; |
|
181 | 72 | $this->alias = $player['alias']; |
|
182 | 72 | $this->team = $player['team']; |
|
183 | 72 | $this->status = $player['status']; |
|
184 | 72 | $this->avatar = $player['avatar']; |
|
185 | 72 | $this->country = $player['country']; |
|
186 | |||
187 | 72 | if (key_exists('activity', $player)) { |
|
188 | $this->matchActivity = ($player['activity'] != null) ? $player['activity'] : 0.0; |
||
189 | } |
||
190 | 72 | } |
|
191 | |||
192 | /** |
||
193 | * {@inheritdoc} |
||
194 | */ |
||
195 | 72 | protected function assignLazyResult($player) |
|
214 | |||
215 | /** |
||
216 | * Add a player a new role |
||
217 | * |
||
218 | * @param Role|int $role_id The role ID to add a player to |
||
219 | * |
||
220 | * @return bool Whether the operation was successful or not |
||
221 | */ |
||
222 | 72 | public function addRole($role_id) |
|
223 | { |
||
224 | 72 | if ($role_id instanceof Role) { |
|
225 | 1 | $role_id = $role_id->getId(); |
|
226 | } |
||
227 | |||
228 | 72 | $this->lazyLoad(); |
|
229 | |||
230 | // Make sure the player doesn't already have the role |
||
231 | 72 | foreach ($this->roles as $playerRole) { |
|
232 | 14 | if ($playerRole->getId() == $role_id) { |
|
233 | 14 | return false; |
|
234 | } |
||
235 | } |
||
236 | |||
237 | 72 | $status = $this->modifyRole($role_id, "add"); |
|
238 | 72 | $this->refresh(); |
|
239 | |||
240 | 72 | return $status; |
|
241 | } |
||
242 | |||
243 | /** |
||
244 | * Get the notes admins have left about a player |
||
245 | * @return string The notes |
||
246 | */ |
||
247 | public function getAdminNotes() |
||
253 | |||
254 | /** |
||
255 | * Get the player's BZID |
||
256 | * @return int The BZID |
||
257 | */ |
||
258 | 22 | public function getBZID() |
|
262 | |||
263 | /** |
||
264 | * Get the country a player belongs to |
||
265 | * |
||
266 | * @return Country The country belongs to |
||
267 | */ |
||
268 | 1 | public function getCountry() |
|
272 | |||
273 | /** |
||
274 | * Get the e-mail address of the player |
||
275 | * |
||
276 | * @return string The address |
||
277 | */ |
||
278 | public function getEmailAddress() |
||
284 | |||
285 | /** |
||
286 | * Build a key that we'll use for caching season Elo data in this model |
||
287 | * |
||
288 | * @param string|null $season The season to get |
||
289 | * @param int|null $year The year of the season to get |
||
290 | * |
||
291 | * @return string |
||
292 | */ |
||
293 | 29 | private function buildSeasonCacheKey(&$season, &$year) |
|
305 | |||
306 | /** |
||
307 | * Get the Elo changes for a player for a given season |
||
308 | * |
||
309 | * @param string|null $season The season to get |
||
310 | * @param int|null $year The year of the season to get |
||
311 | * |
||
312 | * @return array |
||
313 | */ |
||
314 | 29 | public function getEloSeasonHistory($season = null, $year = null) |
|
315 | { |
||
316 | 29 | $seasonKey = $this->buildSeasonCacheKey($season, $year); |
|
317 | |||
318 | // This season's already been cached |
||
319 | 29 | if ($this->eloSeasonHistory !== null && array_key_exists($seasonKey, $this->eloSeasonHistory)) { |
|
320 | 29 | return $this->eloSeasonHistory[$seasonKey]; |
|
321 | } |
||
322 | |||
323 | 29 | $results = $this->db->query(' |
|
324 | SELECT |
||
325 | elo_new AS elo, |
||
326 | MONTH(matches.timestamp) AS `month`, |
||
327 | YEAR(matches.timestamp) AS `year`, |
||
328 | DAY(matches.timestamp) AS `day` |
||
329 | FROM |
||
330 | player_elo |
||
331 | LEFT JOIN matches ON player_elo.match_id = matches.id |
||
332 | WHERE |
||
333 | user_id = ? AND season_period = ? AND season_year = ? |
||
334 | ORDER BY |
||
335 | match_id ASC |
||
336 | 29 | ', [ $this->getId(), $season, $year ]); |
|
337 | |||
338 | 29 | $this->eloSeasonHistory[$seasonKey] = $results; |
|
339 | 29 | $season = &$this->eloSeasonHistory[$seasonKey]; |
|
340 | |||
341 | 29 | if (!empty($season)) { |
|
342 | $elo = end($season); |
||
343 | $this->eloSeason[$seasonKey] = ($elo !== false) ? $elo['elo'] : 1200; |
||
344 | } else { |
||
345 | 29 | $this->eloSeason[$seasonKey] = 1200; |
|
346 | } |
||
347 | |||
348 | 29 | return $this->eloSeasonHistory[$seasonKey]; |
|
349 | } |
||
350 | |||
351 | /** |
||
352 | * Get the player's Elo for a season. |
||
353 | * |
||
354 | * With the default arguments, it will fetch the Elo for the current season. |
||
355 | * |
||
356 | * @param string|null $season The season we're looking for: winter, spring, summer, or fall |
||
357 | * @param int|null $year The year of the season we're looking for |
||
358 | * |
||
359 | * @return int The player's Elo |
||
360 | */ |
||
361 | 29 | public function getElo($season = null, $year = null) |
|
362 | { |
||
363 | 29 | $this->getEloSeasonHistory($season, $year); |
|
364 | 29 | $seasonKey = $this->buildSeasonCacheKey($season, $year); |
|
365 | |||
366 | 29 | return $this->eloSeason[$seasonKey]; |
|
367 | } |
||
368 | |||
369 | /** |
||
370 | * Adjust the Elo of a player for the current season based on a Match |
||
371 | * |
||
372 | * **Warning:** If $match is null, the Elo for the player will be modified but the value will not be persisted to |
||
373 | * the database. |
||
374 | * |
||
375 | * @param int $adjust The value to be added to the current ELO (negative to subtract) |
||
376 | * @param Match|null $match The match where this Elo change took place |
||
377 | */ |
||
378 | 29 | public function adjustElo($adjust, Match $match = null) |
|
395 | |||
396 | /** |
||
397 | * Returns whether the player has verified their e-mail address |
||
398 | * |
||
399 | * @return bool `true` for verified players |
||
400 | */ |
||
401 | public function isVerified() |
||
402 | { |
||
403 | $this->lazyLoad(); |
||
404 | |||
405 | return $this->verified; |
||
406 | } |
||
407 | |||
408 | /** |
||
409 | * Returns the confirmation code for the player's e-mail address verification |
||
410 | * |
||
411 | * @return string The player's confirmation code |
||
412 | */ |
||
413 | public function getConfirmCode() |
||
414 | { |
||
415 | $this->lazyLoad(); |
||
416 | |||
417 | return $this->confirmCode; |
||
418 | } |
||
419 | |||
420 | /** |
||
421 | * Returns what kind of events the player should be e-mailed about |
||
422 | * |
||
423 | * @return string The type of notifications |
||
424 | */ |
||
425 | public function getReceives() |
||
426 | { |
||
427 | $this->lazyLoad(); |
||
428 | |||
429 | return $this->receives; |
||
430 | } |
||
431 | |||
432 | /** |
||
433 | * Finds out whether the specified player wants and can receive an e-mail |
||
434 | * message |
||
435 | * |
||
436 | * @param string $type |
||
437 | * @return bool `true` if the player should be sent an e-mail |
||
438 | */ |
||
439 | 1 | public function canReceive($type) |
|
440 | { |
||
441 | 1 | $this->lazyLoad(); |
|
442 | |||
443 | 1 | if (!$this->email || !$this->isVerified()) { |
|
444 | // Unverified e-mail means the user will receive nothing |
||
445 | 1 | return false; |
|
446 | } |
||
447 | |||
448 | if ($this->receives == 'everything') { |
||
449 | return true; |
||
450 | } |
||
451 | |||
452 | return $this->receives == $type; |
||
453 | } |
||
454 | |||
455 | /** |
||
456 | * Find out whether the specified confirmation code is correct |
||
457 | * |
||
458 | * This method protects against timing attacks |
||
459 | * |
||
460 | * @param string $code The confirmation code to check |
||
461 | * @return bool `true` for a correct e-mail verification code |
||
462 | */ |
||
463 | public function isCorrectConfirmCode($code) |
||
464 | { |
||
465 | $this->lazyLoad(); |
||
466 | |||
467 | if ($this->confirmCode === null) { |
||
468 | return false; |
||
469 | } |
||
470 | |||
471 | return StringUtils::equals($code, $this->confirmCode); |
||
472 | } |
||
473 | |||
474 | /** |
||
475 | * Get the player's sanitized description |
||
476 | * @return string The description |
||
477 | */ |
||
478 | public function getDescription() |
||
479 | { |
||
480 | $this->lazyLoad(); |
||
481 | |||
482 | return $this->description; |
||
483 | } |
||
484 | |||
485 | /** |
||
486 | * Get the joined date of the player |
||
487 | * @return TimeDate The joined date of the player |
||
488 | */ |
||
489 | public function getJoinedDate() |
||
490 | { |
||
491 | $this->lazyLoad(); |
||
492 | |||
493 | return $this->joined->copy(); |
||
494 | } |
||
495 | |||
496 | /** |
||
497 | * Get all of the known IPs used by the player |
||
498 | * |
||
499 | * @return string[][] An array containing IPs and hosts |
||
500 | */ |
||
501 | public function getKnownIPs() |
||
508 | |||
509 | /** |
||
510 | * Get the last login for a player |
||
511 | * @return TimeDate The date of the last login |
||
512 | */ |
||
513 | public function getLastLogin() |
||
514 | { |
||
515 | $this->lazyLoad(); |
||
516 | |||
517 | return $this->last_login->copy(); |
||
518 | } |
||
519 | |||
520 | /** |
||
521 | * Get the last match |
||
522 | * @return Match |
||
523 | */ |
||
524 | public function getLastMatch() |
||
525 | { |
||
526 | $this->lazyLoad(); |
||
527 | |||
528 | return $this->last_match; |
||
529 | } |
||
530 | |||
531 | /** |
||
532 | * Get all of the callsigns a player has used to log in to the website |
||
533 | * @return string[] An array containing all of the past callsigns recorded for a player |
||
534 | */ |
||
535 | public function getPastCallsigns() |
||
536 | { |
||
537 | return self::fetchIds("WHERE player = ?", array($this->id), "past_callsigns", "username"); |
||
538 | } |
||
539 | |||
540 | /** |
||
541 | * Get the player's team |
||
542 | * @return Team The object representing the team |
||
543 | */ |
||
544 | 23 | public function getTeam() |
|
545 | { |
||
546 | 23 | return Team::get($this->team); |
|
547 | } |
||
548 | |||
549 | /** |
||
550 | * Get the player's timezone PHP identifier (example: "Europe/Paris") |
||
551 | * @return string The timezone |
||
552 | */ |
||
553 | 1 | public function getTimezone() |
|
554 | { |
||
555 | 1 | $this->lazyLoad(); |
|
556 | |||
557 | 1 | return ($this->timezone) ?: date_default_timezone_get(); |
|
558 | } |
||
559 | |||
560 | /** |
||
561 | * Get the roles of the player |
||
562 | * @return Role[] |
||
563 | */ |
||
564 | public function getRoles() |
||
565 | { |
||
566 | $this->lazyLoad(); |
||
567 | |||
568 | return $this->roles; |
||
569 | } |
||
570 | |||
571 | /** |
||
572 | * Rebuild the list of permissions a user has been granted |
||
573 | */ |
||
574 | 72 | private function updateUserPermissions() |
|
583 | |||
584 | /** |
||
585 | * Check if a player has a specific permission |
||
586 | * |
||
587 | * @param string|null $permission The permission to check for |
||
588 | * |
||
589 | * @return bool Whether or not the player has the permission |
||
590 | */ |
||
591 | 2 | public function hasPermission($permission) |
|
592 | { |
||
593 | 2 | if ($permission === null) { |
|
594 | 1 | return false; |
|
595 | } |
||
596 | |||
597 | 2 | $this->lazyLoad(); |
|
598 | |||
599 | 2 | return isset($this->permissions[$permission]); |
|
600 | } |
||
601 | |||
602 | /** |
||
603 | * Check whether or not a player been in a match or has logged on in the specified amount of time to be considered |
||
604 | * active |
||
605 | * |
||
606 | * @return bool True if the player has been active |
||
607 | */ |
||
608 | public function hasBeenActive() |
||
624 | |||
625 | /** |
||
626 | * Check whether the callsign of the player is outdated |
||
627 | * |
||
628 | * Returns true if this player has probably changed their callsign, making |
||
629 | * the current username stored in the database obsolete |
||
630 | * |
||
631 | * @return bool Whether or not the player is disabled |
||
632 | */ |
||
633 | public function isOutdated() |
||
634 | { |
||
635 | $this->lazyLoad(); |
||
636 | |||
637 | return $this->outdated; |
||
638 | } |
||
639 | |||
640 | /** |
||
641 | * Check if a player's account has been disabled |
||
642 | * |
||
643 | * @return bool Whether or not the player is disabled |
||
644 | */ |
||
645 | public function isDisabled() |
||
646 | { |
||
647 | return $this->status == "disabled"; |
||
648 | } |
||
649 | |||
650 | /** |
||
651 | * Check if everyone can log in as this user on a test environment |
||
652 | * |
||
653 | * @return bool |
||
654 | */ |
||
655 | 1 | public function isTestUser() |
|
656 | { |
||
657 | 1 | return $this->status == "test"; |
|
658 | } |
||
659 | |||
660 | /** |
||
661 | * Check if a player is teamless |
||
662 | * |
||
663 | * @return bool True if the player is teamless |
||
664 | */ |
||
665 | 51 | public function isTeamless() |
|
666 | { |
||
667 | 51 | return empty($this->team); |
|
668 | } |
||
669 | |||
670 | /** |
||
671 | * Mark a player's account as banned |
||
672 | */ |
||
673 | 1 | public function markAsBanned() |
|
674 | { |
||
675 | 1 | if ($this->status != 'active') { |
|
676 | return $this; |
||
677 | } |
||
678 | |||
679 | 1 | return $this->updateProperty($this->status, "status", "banned"); |
|
680 | } |
||
681 | |||
682 | /** |
||
683 | * Mark a player's account as unbanned |
||
684 | */ |
||
685 | public function markAsUnbanned() |
||
686 | { |
||
687 | if ($this->status != 'banned') { |
||
688 | return $this; |
||
689 | } |
||
690 | |||
691 | return $this->updateProperty($this->status, "status", "active"); |
||
692 | } |
||
693 | |||
694 | /** |
||
695 | * Find out if a player is banned |
||
696 | * |
||
697 | * @return bool |
||
698 | */ |
||
699 | 2 | public function isBanned() |
|
700 | { |
||
701 | 2 | return Ban::getBan($this->id) !== null; |
|
702 | } |
||
703 | |||
704 | /** |
||
705 | * Get the ban of the player |
||
706 | * |
||
707 | * This method performs a load of all the lazy parameters of the Player |
||
708 | * |
||
709 | * @return Ban|null The current ban of the player, or null if the player is |
||
710 | * is not banned |
||
711 | */ |
||
712 | public function getBan() |
||
713 | { |
||
714 | $this->lazyLoad(); |
||
715 | |||
716 | return $this->ban; |
||
717 | } |
||
718 | |||
719 | /** |
||
720 | * Remove a player from a role |
||
721 | * |
||
722 | * @param int $role_id The role ID to add or remove |
||
723 | * |
||
724 | * @return bool Whether the operation was successful or not |
||
725 | */ |
||
726 | public function removeRole($role_id) |
||
727 | { |
||
728 | $status = $this->modifyRole($role_id, "remove"); |
||
729 | $this->refresh(); |
||
730 | |||
731 | return $status; |
||
732 | } |
||
733 | |||
734 | /** |
||
735 | * Set the player's email address and reset their verification status |
||
736 | * @param string $email The address |
||
737 | */ |
||
738 | public function setEmailAddress($email) |
||
739 | { |
||
740 | $this->lazyLoad(); |
||
741 | |||
742 | if ($this->email == $email) { |
||
743 | // The e-mail hasn't changed, don't do anything |
||
744 | return; |
||
745 | } |
||
746 | |||
747 | $this->setVerified(false); |
||
748 | $this->generateNewConfirmCode(); |
||
749 | |||
750 | $this->updateProperty($this->email, 'email', $email); |
||
751 | } |
||
752 | |||
753 | /** |
||
754 | * Set whether the player has verified their e-mail address |
||
755 | * |
||
756 | * @param bool $verified Whether the player is verified or not |
||
757 | * @return self |
||
758 | */ |
||
759 | public function setVerified($verified) |
||
769 | |||
770 | /** |
||
771 | * Generate a new random confirmation token for e-mail address verification |
||
772 | * |
||
773 | * @return self |
||
774 | */ |
||
775 | public function generateNewConfirmCode() |
||
776 | { |
||
777 | $generator = new SecureRandom(); |
||
778 | $random = $generator->nextBytes(16); |
||
779 | |||
780 | return $this->setConfirmCode(bin2hex($random)); |
||
781 | } |
||
782 | |||
783 | /** |
||
784 | * Set the confirmation token for e-mail address verification |
||
785 | * |
||
786 | * @param string $code The confirmation code |
||
787 | * @return self |
||
788 | */ |
||
789 | private function setConfirmCode($code) |
||
790 | { |
||
791 | $this->lazyLoad(); |
||
792 | |||
793 | return $this->updateProperty($this->confirmCode, 'confirm_code', $code); |
||
794 | } |
||
795 | |||
796 | /** |
||
797 | * Set what kind of events the player should be e-mailed about |
||
798 | * |
||
799 | * @param string $receives The type of notification |
||
800 | * @return self |
||
801 | */ |
||
802 | public function setReceives($receives) |
||
803 | { |
||
804 | $this->lazyLoad(); |
||
805 | |||
806 | return $this->updateProperty($this->receives, 'receives', $receives); |
||
807 | } |
||
808 | |||
809 | /** |
||
810 | * Set whether the callsign of the player is outdated |
||
811 | * |
||
812 | * @param bool $outdated Whether the callsign is outdated |
||
813 | * @return self |
||
814 | */ |
||
815 | 72 | public function setOutdated($outdated) |
|
816 | { |
||
817 | 72 | $this->lazyLoad(); |
|
818 | |||
819 | 72 | return $this->updateProperty($this->outdated, 'outdated', $outdated); |
|
820 | } |
||
821 | |||
822 | /** |
||
823 | * Set the player's description |
||
824 | * @param string $description The description |
||
825 | */ |
||
826 | public function setDescription($description) |
||
827 | { |
||
828 | $this->updateProperty($this->description, "description", $description); |
||
829 | } |
||
830 | |||
831 | /** |
||
832 | * Set the player's timezone |
||
833 | * @param string $timezone The timezone |
||
834 | */ |
||
835 | public function setTimezone($timezone) |
||
836 | { |
||
837 | $this->updateProperty($this->timezone, "timezone", $timezone); |
||
838 | } |
||
839 | |||
840 | /** |
||
841 | * Set the player's team |
||
842 | * @param int $team The team's ID |
||
843 | */ |
||
844 | 51 | public function setTeam($team) |
|
845 | { |
||
846 | 51 | $this->updateProperty($this->team, "team", $team); |
|
847 | 51 | } |
|
848 | |||
849 | /** |
||
850 | * Set the match the player last participated in |
||
851 | * |
||
852 | * @param int $match The match's ID |
||
853 | */ |
||
854 | 40 | public function setLastMatch($match) |
|
855 | { |
||
856 | 40 | $this->updateProperty($this->last_match, 'last_match', $match); |
|
857 | 40 | } |
|
858 | |||
859 | /** |
||
860 | * Set the player's status |
||
861 | * @param string $status The new status |
||
862 | */ |
||
863 | public function setStatus($status) |
||
864 | { |
||
865 | $this->updateProperty($this->status, 'status', $status); |
||
866 | } |
||
867 | |||
868 | /** |
||
869 | * Set the player's admin notes |
||
870 | * @param string $admin_notes The new admin notes |
||
871 | * @return self |
||
872 | */ |
||
873 | public function setAdminNotes($admin_notes) |
||
874 | { |
||
875 | return $this->updateProperty($this->admin_notes, 'admin_notes', $admin_notes); |
||
876 | } |
||
877 | |||
878 | /** |
||
879 | * Set the player's country |
||
880 | * @param int $country The ID of the new country |
||
881 | * @return self |
||
882 | */ |
||
883 | public function setCountry($country) |
||
884 | { |
||
885 | return $this->updateProperty($this->country, 'country', $country); |
||
886 | } |
||
887 | |||
888 | /** |
||
889 | * Updates this player's last login |
||
890 | */ |
||
891 | public function updateLastLogin() |
||
892 | { |
||
893 | $this->update("last_login", TimeDate::now()->toMysql()); |
||
894 | } |
||
895 | |||
896 | /** |
||
897 | * Get the player's username |
||
898 | * @return string The username |
||
899 | */ |
||
900 | 1 | public function getUsername() |
|
901 | { |
||
902 | 1 | return $this->name; |
|
903 | } |
||
904 | |||
905 | /** |
||
906 | * Get the player's username, safe for use in your HTML |
||
907 | * @return string The username |
||
908 | */ |
||
909 | 1 | public function getEscapedUsername() |
|
910 | { |
||
911 | 1 | return $this->getEscapedName(); |
|
912 | } |
||
913 | |||
914 | /** |
||
915 | * Alias for Player::setUsername() |
||
916 | * |
||
917 | * @param string $username The new username |
||
918 | * @return self |
||
919 | */ |
||
920 | public function setName($username) |
||
921 | { |
||
922 | return $this->setUsername($username); |
||
923 | } |
||
924 | |||
925 | /** |
||
926 | * Mark all the unread messages of a player as read |
||
927 | * |
||
928 | * @return void |
||
929 | */ |
||
930 | public function markMessagesAsRead() |
||
937 | |||
938 | /** |
||
939 | * Set the roles of a user |
||
940 | * |
||
941 | * @todo Is it worth making this faster? |
||
942 | * @param Role[] $roles The new roles of the user |
||
943 | * @return self |
||
944 | */ |
||
945 | public function setRoles($roles) |
||
946 | { |
||
947 | $this->lazyLoad(); |
||
948 | |||
949 | $oldRoles = Role::mapToIds($this->roles); |
||
950 | $this->roles = $roles; |
||
951 | $roleIds = Role::mapToIds($roles); |
||
952 | |||
953 | $newRoles = array_diff($roleIds, $oldRoles); |
||
954 | $removedRoles = array_diff($oldRoles, $roleIds); |
||
955 | |||
956 | foreach ($newRoles as $role) { |
||
957 | $this->modifyRole($role, 'add'); |
||
958 | } |
||
959 | |||
960 | foreach ($removedRoles as $role) { |
||
961 | $this->modifyRole($role, 'remove'); |
||
962 | } |
||
963 | |||
964 | $this->refresh(); |
||
965 | |||
966 | return $this; |
||
967 | } |
||
968 | |||
969 | /** |
||
970 | * Give or remove a role to/form a player |
||
971 | * |
||
972 | * @param int $role_id The role ID to add or remove |
||
973 | * @param string $action Whether to "add" or "remove" a role for a player |
||
974 | * |
||
975 | * @return bool Whether the operation was successful or not |
||
976 | */ |
||
977 | 72 | private function modifyRole($role_id, $action) |
|
995 | |||
996 | /** |
||
997 | * Given a player's BZID, get a player object |
||
998 | * |
||
999 | * @param int $bzid The player's BZID |
||
1000 | * @return Player |
||
1001 | */ |
||
1002 | 23 | public static function getFromBZID($bzid) |
|
1003 | { |
||
1004 | 23 | return self::get(self::fetchIdFrom($bzid, "bzid")); |
|
1005 | } |
||
1006 | |||
1007 | /** |
||
1008 | * Get a single player by their username |
||
1009 | * |
||
1010 | * @param string $username The username to look for |
||
1011 | * @return Player |
||
1012 | */ |
||
1013 | 1 | public static function getFromUsername($username) |
|
1014 | { |
||
1015 | 1 | $player = static::get(self::fetchIdFrom($username, 'username')); |
|
1016 | |||
1017 | 1 | return $player->inject('name', $username); |
|
1018 | } |
||
1019 | |||
1020 | /** |
||
1021 | * Get all the players in the database that have an active status |
||
1022 | * @return Player[] An array of player BZIDs |
||
1023 | */ |
||
1024 | public static function getPlayers() |
||
1030 | |||
1031 | /** |
||
1032 | * Show the number of notifications the user hasn't read yet |
||
1033 | * @return int |
||
1034 | */ |
||
1035 | 1 | public function countUnreadNotifications() |
|
1036 | { |
||
1037 | 1 | return Notification::countUnreadNotifications($this->id); |
|
1038 | } |
||
1039 | |||
1040 | /** |
||
1041 | * Count the number of matches a player has participated in |
||
1042 | * @return int |
||
1043 | */ |
||
1044 | public function getMatchCount() |
||
1055 | |||
1056 | /** |
||
1057 | * Get the (victory/total matches) ratio of the player |
||
1058 | * @return float |
||
1059 | */ |
||
1060 | public function getMatchWinRatio() |
||
1061 | { |
||
1062 | $count = $this->getMatchCount(); |
||
1063 | |||
1064 | if ($count == 0) { |
||
1065 | return 0; |
||
1066 | } |
||
1067 | |||
1068 | $wins = Match::getQueryBuilder() |
||
1069 | ->active() |
||
1070 | ->with($this, 'win') |
||
1071 | ->count(); |
||
1072 | |||
1073 | return $wins / $count; |
||
1074 | } |
||
1075 | |||
1076 | /** |
||
1077 | * Get the (total caps made by team/total matches) ratio of the player |
||
1078 | * @return float |
||
1079 | */ |
||
1080 | public function getMatchAverageCaps() |
||
1104 | |||
1105 | /** |
||
1106 | * Get the match activity in matches per day for a player |
||
1107 | * |
||
1108 | * @return float |
||
1109 | */ |
||
1110 | public function getMatchActivity() |
||
1130 | |||
1131 | /** |
||
1132 | * Return an array of matches this player participated in per month. |
||
1133 | * |
||
1134 | * ``` |
||
1135 | * ['yyyy-mm'] = <number of matches> |
||
1136 | * ``` |
||
1137 | * |
||
1138 | * @param TimeDate|string $timePeriod |
||
1139 | * |
||
1140 | * @return int[] |
||
1141 | */ |
||
1142 | public function getMatchSummary($timePeriod = '1 year ago') |
||
1157 | |||
1158 | /** |
||
1159 | * Show the number of messages the user hasn't read yet |
||
1160 | * @return int |
||
1161 | */ |
||
1162 | 1 | public function countUnreadMessages() |
|
1168 | |||
1169 | /** |
||
1170 | * Get all of the members belonging to a team |
||
1171 | * @param int $teamID The ID of the team to fetch the members of |
||
1172 | * @return Player[] An array of Player objects of the team members |
||
1173 | */ |
||
1174 | public static function getTeamMembers($teamID) |
||
1175 | { |
||
1176 | return self::arrayIdToModel( |
||
1177 | 40 | self::fetchIds("WHERE team = ?", array($teamID)) |
|
1178 | ); |
||
1179 | 40 | } |
|
1180 | |||
1181 | 40 | /** |
|
1182 | 28 | * {@inheritdoc} |
|
1183 | */ |
||
1184 | 40 | public static function getActiveStatuses() |
|
1185 | { |
||
1186 | return array('active', 'reported', 'test'); |
||
1187 | } |
||
1188 | |||
1189 | /** |
||
1190 | * {@inheritdoc} |
||
1191 | 2 | */ |
|
1192 | public static function getEagerColumns($prefix = null) |
||
1193 | 2 | { |
|
1194 | 2 | $columns = [ |
|
1195 | 'id', |
||
1196 | 'bzid', |
||
1197 | 'team', |
||
1198 | 'username', |
||
1199 | 'alias', |
||
1200 | 'status', |
||
1201 | 1 | 'avatar', |
|
1202 | 'country', |
||
1203 | 1 | ]; |
|
1204 | |||
1205 | return self::formatColumns($prefix, $columns); |
||
1206 | } |
||
1207 | |||
1208 | /** |
||
1209 | 72 | * {@inheritdoc} |
|
1210 | */ |
||
1211 | public static function getLazyColumns($prefix = null) |
||
1212 | 72 | { |
|
1213 | $columns = [ |
||
1214 | 'email', |
||
1215 | 'verified', |
||
1216 | 'receives', |
||
1217 | 'confirm_code', |
||
1229 | |||
1230 | /** |
||
1231 | 72 | * Get a query builder for players |
|
1232 | * @return PlayerQueryBuilder |
||
1233 | */ |
||
1234 | public static function getQueryBuilder() |
||
1246 | |||
1247 | /** |
||
1248 | * Enter a new player to the database |
||
1249 | * @param int $bzid The player's bzid |
||
1250 | * @param string $username The player's username |
||
1251 | * @param int $team The player's team |
||
1252 | * @param string $status The player's status |
||
1253 | * @param int $role_id The player's role when they are first created |
||
1254 | * @param string $avatar The player's profile avatar |
||
1255 | * @param string $description The player's profile description |
||
1256 | * @param int $country The player's country |
||
1257 | * @param string $timezone The player's timezone |
||
1258 | * @param string|\TimeDate $joined The date the player joined |
||
1259 | * @param string|\TimeDate $last_login The timestamp of the player's last login |
||
1260 | * @return Player An object representing the player that was just entered |
||
1261 | */ |
||
1262 | public static function newPlayer($bzid, $username, $team = null, $status = "active", $role_id = self::PLAYER, $avatar = "", $description = "", $country = 1, $timezone = null, $joined = "now", $last_login = "now") |
||
1288 | 72 | ||
1289 | 72 | /** |
|
1290 | 72 | * Determine if a player exists in the database |
|
1291 | 72 | * @param int $bzid The player's bzid |
|
1292 | 72 | * @return bool Whether the player exists in the database |
|
1293 | 72 | */ |
|
1294 | 72 | public static function playerBZIDExists($bzid) |
|
1298 | |||
1299 | 72 | /** |
|
1300 | 72 | * Change a player's callsign and add it to the database if it does not |
|
1301 | 72 | * exist as a past callsign |
|
1302 | * |
||
1303 | 72 | * @param string $username The new username of the player |
|
1304 | * @return self |
||
1305 | */ |
||
1306 | public function setUsername($username) |
||
1337 | |||
1338 | /** |
||
1339 | * Alphabetical order function for use in usort (case-insensitive) |
||
1340 | * @return Closure The sort function |
||
1341 | */ |
||
1342 | public static function getAlphabeticalSort() |
||
1348 | |||
1349 | /** |
||
1350 | * {@inheritdoc} |
||
1351 | * @todo Add a constraint that does this automatically |
||
1352 | */ |
||
1353 | public function wipe() |
||
1359 | |||
1360 | /** |
||
1361 | 1 | * Find whether the player can delete a model |
|
1362 | 1 | * |
|
1363 | 1 | * @param PermissionModel $model The model that will be seen |
|
1364 | * @param bool $showDeleted Whether to show deleted models to admins |
||
1365 | * @return bool |
||
1366 | */ |
||
1367 | public function canSee($model, $showDeleted = false) |
||
1371 | |||
1372 | 72 | /** |
|
1373 | * Find whether the player can delete a model |
||
1374 | 72 | * |
|
1375 | 72 | * @param PermissionModel $model The model that will be deleted |
|
1376 | * @param bool $hard Whether to check for hard-delete perms, as opposed |
||
1377 | * to soft-delete ones |
||
1378 | * @return bool |
||
1379 | */ |
||
1380 | public function canDelete($model, $hard = false) |
||
1388 | |||
1389 | /** |
||
1390 | * Find whether the player can create a model |
||
1391 | * |
||
1392 | * @param string $modelName The PHP class identifier of the model type |
||
1393 | * @return bool |
||
1394 | */ |
||
1395 | public function canCreate($modelName) |
||
1399 | 1 | ||
1400 | /** |
||
1401 | * Find whether the player can edit a model |
||
1402 | 1 | * |
|
1403 | * @param PermissionModel $model The model which will be edited |
||
1404 | * @return bool |
||
1405 | */ |
||
1406 | public function canEdit($model) |
||
1410 | } |
||
1411 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..