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 | 76 | protected function assignResult($player) |
|
| 178 | { |
||
| 179 | 76 | $this->bzid = $player['bzid']; |
|
| 180 | 76 | $this->name = $player['username']; |
|
| 181 | 76 | $this->alias = $player['alias']; |
|
| 182 | 76 | $this->team = $player['team']; |
|
| 183 | 76 | $this->status = $player['status']; |
|
| 184 | 76 | $this->avatar = $player['avatar']; |
|
| 185 | 76 | $this->country = $player['country']; |
|
| 186 | |||
| 187 | 76 | if (key_exists('activity', $player)) { |
|
| 188 | $this->matchActivity = ($player['activity'] != null) ? $player['activity'] : 0.0; |
||
| 189 | } |
||
| 190 | 76 | } |
|
| 191 | |||
| 192 | /** |
||
| 193 | * {@inheritdoc} |
||
| 194 | */ |
||
| 195 | 76 | 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 | 76 | public function addRole($role_id) |
|
| 223 | { |
||
| 224 | 76 | if ($role_id instanceof Role) { |
|
| 225 | 1 | $role_id = $role_id->getId(); |
|
| 226 | } |
||
| 227 | |||
| 228 | 76 | $this->lazyLoad(); |
|
| 229 | |||
| 230 | // Make sure the player doesn't already have the role |
||
| 231 | 76 | foreach ($this->roles as $playerRole) { |
|
| 232 | 14 | if ($playerRole->getId() == $role_id) { |
|
| 233 | 14 | return false; |
|
| 234 | } |
||
| 235 | } |
||
| 236 | |||
| 237 | 76 | $status = $this->modifyRole($role_id, "add"); |
|
| 238 | 76 | $this->refresh(); |
|
| 239 | |||
| 240 | 76 | 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 | 30 | private function buildSeasonKey(&$season, &$year) |
|
| 305 | |||
| 306 | /** |
||
| 307 | * Build a key to use for caching season Elo data in this model from a timestamp |
||
| 308 | * |
||
| 309 | * @param DateTime $timestamp |
||
| 310 | * |
||
| 311 | * @return string |
||
| 312 | */ |
||
| 313 | 3 | private function buildSeasonKeyFromTimestamp(\DateTime $timestamp) |
|
| 319 | |||
| 320 | /** |
||
| 321 | * Remove all Elo data for this model for matches occurring after the given match (inclusive) |
||
| 322 | * |
||
| 323 | * This function will not remove the Elo data for this match from the database. Ideally, this function should only |
||
| 324 | * be called during Elo recalculation for this match. |
||
| 325 | * |
||
| 326 | * @internal |
||
| 327 | * |
||
| 328 | * @param Match $match |
||
| 329 | * |
||
| 330 | * @see Match::recalculateElo() |
||
| 331 | */ |
||
| 332 | 3 | public function invalidateMatchFromCache(Match $match) |
|
| 360 | |||
| 361 | /** |
||
| 362 | * Get the Elo changes for a player for a given season |
||
| 363 | * |
||
| 364 | * @param string|null $season The season to get |
||
| 365 | * @param int|null $year The year of the season to get |
||
| 366 | * |
||
| 367 | * @return array |
||
| 368 | */ |
||
| 369 | 30 | public function getEloSeasonHistory($season = null, $year = null) |
|
| 404 | |||
| 405 | /** |
||
| 406 | * Get the player's Elo for a season. |
||
| 407 | * |
||
| 408 | * With the default arguments, it will fetch the Elo for the current season. |
||
| 409 | * |
||
| 410 | * @param string|null $season The season we're looking for: winter, spring, summer, or fall |
||
| 411 | * @param int|null $year The year of the season we're looking for |
||
| 412 | * |
||
| 413 | * @return int The player's Elo |
||
| 414 | */ |
||
| 415 | 30 | public function getElo($season = null, $year = null) |
|
| 435 | |||
| 436 | /** |
||
| 437 | * Adjust the Elo of a player for the current season based on a Match |
||
| 438 | * |
||
| 439 | * **Warning:** If $match is null, the Elo for the player will be modified but the value will not be persisted to |
||
| 440 | * the database. |
||
| 441 | * |
||
| 442 | * @param int $adjust The value to be added to the current ELO (negative to subtract) |
||
| 443 | * @param Match|null $match The match where this Elo change took place |
||
| 444 | */ |
||
| 445 | 30 | public function adjustElo($adjust, Match $match = null) |
|
| 462 | |||
| 463 | /** |
||
| 464 | * Returns whether the player has verified their e-mail address |
||
| 465 | * |
||
| 466 | * @return bool `true` for verified players |
||
| 467 | */ |
||
| 468 | public function isVerified() |
||
| 474 | |||
| 475 | /** |
||
| 476 | * Returns the confirmation code for the player's e-mail address verification |
||
| 477 | * |
||
| 478 | * @return string The player's confirmation code |
||
| 479 | */ |
||
| 480 | public function getConfirmCode() |
||
| 486 | |||
| 487 | /** |
||
| 488 | * Returns what kind of events the player should be e-mailed about |
||
| 489 | * |
||
| 490 | * @return string The type of notifications |
||
| 491 | */ |
||
| 492 | public function getReceives() |
||
| 498 | |||
| 499 | /** |
||
| 500 | * Finds out whether the specified player wants and can receive an e-mail |
||
| 501 | * message |
||
| 502 | * |
||
| 503 | * @param string $type |
||
| 504 | * @return bool `true` if the player should be sent an e-mail |
||
| 505 | */ |
||
| 506 | 1 | public function canReceive($type) |
|
| 521 | |||
| 522 | /** |
||
| 523 | * Find out whether the specified confirmation code is correct |
||
| 524 | * |
||
| 525 | * This method protects against timing attacks |
||
| 526 | * |
||
| 527 | * @param string $code The confirmation code to check |
||
| 528 | * @return bool `true` for a correct e-mail verification code |
||
| 529 | */ |
||
| 530 | public function isCorrectConfirmCode($code) |
||
| 540 | |||
| 541 | /** |
||
| 542 | * Get the player's sanitized description |
||
| 543 | * @return string The description |
||
| 544 | */ |
||
| 545 | public function getDescription() |
||
| 551 | |||
| 552 | /** |
||
| 553 | * Get the joined date of the player |
||
| 554 | * @return TimeDate The joined date of the player |
||
| 555 | */ |
||
| 556 | public function getJoinedDate() |
||
| 562 | |||
| 563 | /** |
||
| 564 | * Get all of the known IPs used by the player |
||
| 565 | * |
||
| 566 | * @return string[][] An array containing IPs and hosts |
||
| 567 | */ |
||
| 568 | public function getKnownIPs() |
||
| 575 | |||
| 576 | /** |
||
| 577 | * Get the last login for a player |
||
| 578 | * @return TimeDate The date of the last login |
||
| 579 | */ |
||
| 580 | public function getLastLogin() |
||
| 586 | |||
| 587 | /** |
||
| 588 | * Get the last match |
||
| 589 | * @return Match |
||
| 590 | */ |
||
| 591 | public function getLastMatch() |
||
| 597 | |||
| 598 | /** |
||
| 599 | * Get all of the callsigns a player has used to log in to the website |
||
| 600 | * @return string[] An array containing all of the past callsigns recorded for a player |
||
| 601 | */ |
||
| 602 | public function getPastCallsigns() |
||
| 606 | |||
| 607 | /** |
||
| 608 | * Get the player's team |
||
| 609 | * @return Team The object representing the team |
||
| 610 | */ |
||
| 611 | 23 | public function getTeam() |
|
| 615 | |||
| 616 | /** |
||
| 617 | * Get the player's timezone PHP identifier (example: "Europe/Paris") |
||
| 618 | * @return string The timezone |
||
| 619 | */ |
||
| 620 | 1 | public function getTimezone() |
|
| 626 | |||
| 627 | /** |
||
| 628 | * Get the roles of the player |
||
| 629 | * @return Role[] |
||
| 630 | */ |
||
| 631 | public function getRoles() |
||
| 637 | |||
| 638 | /** |
||
| 639 | * Rebuild the list of permissions a user has been granted |
||
| 640 | */ |
||
| 641 | 76 | private function updateUserPermissions() |
|
| 650 | |||
| 651 | /** |
||
| 652 | * Check if a player has a specific permission |
||
| 653 | * |
||
| 654 | * @param string|null $permission The permission to check for |
||
| 655 | * |
||
| 656 | * @return bool Whether or not the player has the permission |
||
| 657 | */ |
||
| 658 | 2 | public function hasPermission($permission) |
|
| 668 | |||
| 669 | /** |
||
| 670 | * Check whether or not a player been in a match or has logged on in the specified amount of time to be considered |
||
| 671 | * active |
||
| 672 | * |
||
| 673 | * @return bool True if the player has been active |
||
| 674 | */ |
||
| 675 | public function hasBeenActive() |
||
| 691 | |||
| 692 | /** |
||
| 693 | * Check whether the callsign of the player is outdated |
||
| 694 | * |
||
| 695 | * Returns true if this player has probably changed their callsign, making |
||
| 696 | * the current username stored in the database obsolete |
||
| 697 | * |
||
| 698 | * @return bool Whether or not the player is disabled |
||
| 699 | */ |
||
| 700 | public function isOutdated() |
||
| 706 | |||
| 707 | /** |
||
| 708 | * Check if a player's account has been disabled |
||
| 709 | * |
||
| 710 | * @return bool Whether or not the player is disabled |
||
| 711 | */ |
||
| 712 | public function isDisabled() |
||
| 716 | |||
| 717 | /** |
||
| 718 | * Check if everyone can log in as this user on a test environment |
||
| 719 | * |
||
| 720 | * @return bool |
||
| 721 | */ |
||
| 722 | 1 | public function isTestUser() |
|
| 726 | |||
| 727 | /** |
||
| 728 | * Check if a player is teamless |
||
| 729 | * |
||
| 730 | * @return bool True if the player is teamless |
||
| 731 | */ |
||
| 732 | 55 | public function isTeamless() |
|
| 736 | |||
| 737 | /** |
||
| 738 | * Mark a player's account as banned |
||
| 739 | */ |
||
| 740 | 1 | public function markAsBanned() |
|
| 748 | |||
| 749 | /** |
||
| 750 | * Mark a player's account as unbanned |
||
| 751 | */ |
||
| 752 | public function markAsUnbanned() |
||
| 760 | |||
| 761 | /** |
||
| 762 | * Find out if a player is banned |
||
| 763 | * |
||
| 764 | * @return bool |
||
| 765 | */ |
||
| 766 | 2 | public function isBanned() |
|
| 770 | |||
| 771 | /** |
||
| 772 | * Get the ban of the player |
||
| 773 | * |
||
| 774 | * This method performs a load of all the lazy parameters of the Player |
||
| 775 | * |
||
| 776 | * @return Ban|null The current ban of the player, or null if the player is |
||
| 777 | * is not banned |
||
| 778 | */ |
||
| 779 | public function getBan() |
||
| 785 | |||
| 786 | /** |
||
| 787 | * Remove a player from a role |
||
| 788 | * |
||
| 789 | * @param int $role_id The role ID to add or remove |
||
| 790 | * |
||
| 791 | * @return bool Whether the operation was successful or not |
||
| 792 | */ |
||
| 793 | public function removeRole($role_id) |
||
| 800 | |||
| 801 | /** |
||
| 802 | * Set the player's email address and reset their verification status |
||
| 803 | * @param string $email The address |
||
| 804 | */ |
||
| 805 | public function setEmailAddress($email) |
||
| 819 | |||
| 820 | /** |
||
| 821 | * Set whether the player has verified their e-mail address |
||
| 822 | * |
||
| 823 | * @param bool $verified Whether the player is verified or not |
||
| 824 | * @return self |
||
| 825 | */ |
||
| 826 | public function setVerified($verified) |
||
| 836 | |||
| 837 | /** |
||
| 838 | * Generate a new random confirmation token for e-mail address verification |
||
| 839 | * |
||
| 840 | * @return self |
||
| 841 | */ |
||
| 842 | public function generateNewConfirmCode() |
||
| 849 | |||
| 850 | /** |
||
| 851 | * Set the confirmation token for e-mail address verification |
||
| 852 | * |
||
| 853 | * @param string $code The confirmation code |
||
| 854 | * @return self |
||
| 855 | */ |
||
| 856 | private function setConfirmCode($code) |
||
| 862 | |||
| 863 | /** |
||
| 864 | * Set what kind of events the player should be e-mailed about |
||
| 865 | * |
||
| 866 | * @param string $receives The type of notification |
||
| 867 | * @return self |
||
| 868 | */ |
||
| 869 | public function setReceives($receives) |
||
| 875 | |||
| 876 | /** |
||
| 877 | * Set whether the callsign of the player is outdated |
||
| 878 | * |
||
| 879 | * @param bool $outdated Whether the callsign is outdated |
||
| 880 | * @return self |
||
| 881 | */ |
||
| 882 | 76 | public function setOutdated($outdated) |
|
| 888 | |||
| 889 | /** |
||
| 890 | * Set the player's description |
||
| 891 | * @param string $description The description |
||
| 892 | */ |
||
| 893 | public function setDescription($description) |
||
| 897 | |||
| 898 | /** |
||
| 899 | * Set the player's timezone |
||
| 900 | * @param string $timezone The timezone |
||
| 901 | */ |
||
| 902 | public function setTimezone($timezone) |
||
| 906 | |||
| 907 | /** |
||
| 908 | * Set the player's team |
||
| 909 | * @param int $team The team's ID |
||
| 910 | */ |
||
| 911 | 55 | public function setTeam($team) |
|
| 915 | |||
| 916 | /** |
||
| 917 | * Set the match the player last participated in |
||
| 918 | * |
||
| 919 | * @param int $match The match's ID |
||
| 920 | */ |
||
| 921 | 29 | public function setLastMatch($match) |
|
| 925 | |||
| 926 | /** |
||
| 927 | * Set the player's status |
||
| 928 | * @param string $status The new status |
||
| 929 | */ |
||
| 930 | public function setStatus($status) |
||
| 934 | |||
| 935 | /** |
||
| 936 | * Set the player's admin notes |
||
| 937 | * @param string $admin_notes The new admin notes |
||
| 938 | * @return self |
||
| 939 | */ |
||
| 940 | public function setAdminNotes($admin_notes) |
||
| 944 | |||
| 945 | /** |
||
| 946 | * Set the player's country |
||
| 947 | * @param int $country The ID of the new country |
||
| 948 | * @return self |
||
| 949 | */ |
||
| 950 | public function setCountry($country) |
||
| 954 | |||
| 955 | /** |
||
| 956 | * Updates this player's last login |
||
| 957 | */ |
||
| 958 | public function updateLastLogin() |
||
| 962 | |||
| 963 | /** |
||
| 964 | * Get the player's username |
||
| 965 | * @return string The username |
||
| 966 | */ |
||
| 967 | 1 | public function getUsername() |
|
| 971 | |||
| 972 | /** |
||
| 973 | * Get the player's username, safe for use in your HTML |
||
| 974 | * @return string The username |
||
| 975 | */ |
||
| 976 | 1 | public function getEscapedUsername() |
|
| 980 | |||
| 981 | /** |
||
| 982 | * Alias for Player::setUsername() |
||
| 983 | * |
||
| 984 | * @param string $username The new username |
||
| 985 | * @return self |
||
| 986 | */ |
||
| 987 | public function setName($username) |
||
| 991 | |||
| 992 | /** |
||
| 993 | * Mark all the unread messages of a player as read |
||
| 994 | * |
||
| 995 | * @return void |
||
| 996 | */ |
||
| 997 | public function markMessagesAsRead() |
||
| 1004 | |||
| 1005 | /** |
||
| 1006 | * Set the roles of a user |
||
| 1007 | * |
||
| 1008 | * @todo Is it worth making this faster? |
||
| 1009 | * @param Role[] $roles The new roles of the user |
||
| 1010 | * @return self |
||
| 1011 | */ |
||
| 1012 | public function setRoles($roles) |
||
| 1035 | |||
| 1036 | /** |
||
| 1037 | * Give or remove a role to/form a player |
||
| 1038 | * |
||
| 1039 | * @param int $role_id The role ID to add or remove |
||
| 1040 | * @param string $action Whether to "add" or "remove" a role for a player |
||
| 1041 | * |
||
| 1042 | * @return bool Whether the operation was successful or not |
||
| 1043 | */ |
||
| 1044 | 76 | private function modifyRole($role_id, $action) |
|
| 1062 | |||
| 1063 | /** |
||
| 1064 | * Given a player's BZID, get a player object |
||
| 1065 | * |
||
| 1066 | * @param int $bzid The player's BZID |
||
| 1067 | * @return Player |
||
| 1068 | */ |
||
| 1069 | 23 | public static function getFromBZID($bzid) |
|
| 1073 | |||
| 1074 | /** |
||
| 1075 | * Get a single player by their username |
||
| 1076 | * |
||
| 1077 | * @param string $username The username to look for |
||
| 1078 | * @return Player |
||
| 1079 | */ |
||
| 1080 | 1 | public static function getFromUsername($username) |
|
| 1086 | |||
| 1087 | /** |
||
| 1088 | * Get all the players in the database that have an active status |
||
| 1089 | * @return Player[] An array of player BZIDs |
||
| 1090 | */ |
||
| 1091 | public static function getPlayers() |
||
| 1097 | |||
| 1098 | /** |
||
| 1099 | * Show the number of notifications the user hasn't read yet |
||
| 1100 | * @return int |
||
| 1101 | */ |
||
| 1102 | 1 | public function countUnreadNotifications() |
|
| 1106 | |||
| 1107 | /** |
||
| 1108 | * Count the number of matches a player has participated in |
||
| 1109 | * @return int |
||
| 1110 | */ |
||
| 1111 | public function getMatchCount() |
||
| 1122 | |||
| 1123 | /** |
||
| 1124 | * Get the (victory/total matches) ratio of the player |
||
| 1125 | * @return float |
||
| 1126 | */ |
||
| 1127 | public function getMatchWinRatio() |
||
| 1142 | |||
| 1143 | /** |
||
| 1144 | * Get the (total caps made by team/total matches) ratio of the player |
||
| 1145 | * @return float |
||
| 1146 | */ |
||
| 1147 | public function getMatchAverageCaps() |
||
| 1171 | |||
| 1172 | /** |
||
| 1173 | * Get the match activity in matches per day for a player |
||
| 1174 | * |
||
| 1175 | * @return float |
||
| 1176 | */ |
||
| 1177 | public function getMatchActivity() |
||
| 1197 | |||
| 1198 | /** |
||
| 1199 | * Return an array of matches this player participated in per month. |
||
| 1200 | * |
||
| 1201 | * ``` |
||
| 1202 | * ['yyyy-mm'] = <number of matches> |
||
| 1203 | * ``` |
||
| 1204 | * |
||
| 1205 | * @param TimeDate|string $timePeriod |
||
| 1206 | * |
||
| 1207 | * @return int[] |
||
| 1208 | */ |
||
| 1209 | public function getMatchSummary($timePeriod = '1 year ago') |
||
| 1224 | |||
| 1225 | /** |
||
| 1226 | * Show the number of messages the user hasn't read yet |
||
| 1227 | * @return int |
||
| 1228 | */ |
||
| 1229 | 1 | public function countUnreadMessages() |
|
| 1235 | |||
| 1236 | /** |
||
| 1237 | * Get all of the members belonging to a team |
||
| 1238 | * @param int $teamID The ID of the team to fetch the members of |
||
| 1239 | * @return Player[] An array of Player objects of the team members |
||
| 1240 | */ |
||
| 1241 | 2 | public static function getTeamMembers($teamID) |
|
| 1247 | |||
| 1248 | /** |
||
| 1249 | * {@inheritdoc} |
||
| 1250 | */ |
||
| 1251 | 1 | public static function getActiveStatuses() |
|
| 1255 | |||
| 1256 | /** |
||
| 1257 | * {@inheritdoc} |
||
| 1258 | */ |
||
| 1259 | 76 | public static function getEagerColumns($prefix = null) |
|
| 1274 | |||
| 1275 | /** |
||
| 1276 | * {@inheritdoc} |
||
| 1277 | */ |
||
| 1278 | 76 | public static function getLazyColumns($prefix = null) |
|
| 1296 | |||
| 1297 | /** |
||
| 1298 | * Get a query builder for players |
||
| 1299 | * @return PlayerQueryBuilder |
||
| 1300 | */ |
||
| 1301 | public static function getQueryBuilder() |
||
| 1313 | |||
| 1314 | /** |
||
| 1315 | * Enter a new player to the database |
||
| 1316 | * @param int $bzid The player's bzid |
||
| 1317 | * @param string $username The player's username |
||
| 1318 | * @param int $team The player's team |
||
| 1319 | * @param string $status The player's status |
||
| 1320 | * @param int $role_id The player's role when they are first created |
||
| 1321 | * @param string $avatar The player's profile avatar |
||
| 1322 | * @param string $description The player's profile description |
||
| 1323 | * @param int $country The player's country |
||
| 1324 | * @param string $timezone The player's timezone |
||
| 1325 | * @param string|\TimeDate $joined The date the player joined |
||
| 1326 | * @param string|\TimeDate $last_login The timestamp of the player's last login |
||
| 1327 | * @return Player An object representing the player that was just entered |
||
| 1328 | */ |
||
| 1329 | 76 | 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") |
|
| 1355 | |||
| 1356 | /** |
||
| 1357 | * Determine if a player exists in the database |
||
| 1358 | * @param int $bzid The player's bzid |
||
| 1359 | * @return bool Whether the player exists in the database |
||
| 1360 | */ |
||
| 1361 | public static function playerBZIDExists($bzid) |
||
| 1365 | |||
| 1366 | /** |
||
| 1367 | * Change a player's callsign and add it to the database if it does not |
||
| 1368 | * exist as a past callsign |
||
| 1369 | * |
||
| 1370 | * @param string $username The new username of the player |
||
| 1371 | * @return self |
||
| 1372 | */ |
||
| 1373 | 76 | public function setUsername($username) |
|
| 1404 | |||
| 1405 | /** |
||
| 1406 | * Alphabetical order function for use in usort (case-insensitive) |
||
| 1407 | * @return Closure The sort function |
||
| 1408 | */ |
||
| 1409 | public static function getAlphabeticalSort() |
||
| 1415 | |||
| 1416 | /** |
||
| 1417 | * {@inheritdoc} |
||
| 1418 | * @todo Add a constraint that does this automatically |
||
| 1419 | */ |
||
| 1420 | 76 | public function wipe() |
|
| 1426 | |||
| 1427 | /** |
||
| 1428 | * Find whether the player can delete a model |
||
| 1429 | * |
||
| 1430 | * @param PermissionModel $model The model that will be seen |
||
| 1431 | * @param bool $showDeleted Whether to show deleted models to admins |
||
| 1432 | * @return bool |
||
| 1433 | */ |
||
| 1434 | 1 | public function canSee($model, $showDeleted = false) |
|
| 1438 | |||
| 1439 | /** |
||
| 1440 | * Find whether the player can delete a model |
||
| 1441 | * |
||
| 1442 | * @param PermissionModel $model The model that will be deleted |
||
| 1443 | * @param bool $hard Whether to check for hard-delete perms, as opposed |
||
| 1444 | * to soft-delete ones |
||
| 1445 | * @return bool |
||
| 1446 | */ |
||
| 1447 | 1 | public function canDelete($model, $hard = false) |
|
| 1455 | |||
| 1456 | /** |
||
| 1457 | * Find whether the player can create a model |
||
| 1458 | * |
||
| 1459 | * @param string $modelName The PHP class identifier of the model type |
||
| 1460 | * @return bool |
||
| 1461 | */ |
||
| 1462 | 1 | public function canCreate($modelName) |
|
| 1466 | |||
| 1467 | /** |
||
| 1468 | * Find whether the player can edit a model |
||
| 1469 | * |
||
| 1470 | * @param PermissionModel $model The model which will be edited |
||
| 1471 | * @return bool |
||
| 1472 | */ |
||
| 1473 | 1 | public function canEdit($model) |
|
| 1477 | } |
||
| 1478 |
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..