Complex classes like Circle 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 Circle, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 75 | class Circle extends ManagedModel implements IMemberships, IDeserializable, INC22QueryRow, JsonSerializable { |
||
| 76 | |||
| 77 | |||
| 78 | use TArrayTools; |
||
| 79 | use TNC22Deserialize; |
||
| 80 | |||
| 81 | |||
| 82 | const FLAGS_SHORT = 1; |
||
| 83 | const FLAGS_LONG = 2; |
||
| 84 | |||
| 85 | |||
| 86 | // specific value |
||
| 87 | const CFG_CIRCLE = 0; // only for code readability. Circle is locked by default. |
||
| 88 | const CFG_SINGLE = 1; // Circle with only one single member. |
||
| 89 | const CFG_PERSONAL = 2; // Personal circle, only the owner can see it. |
||
| 90 | |||
| 91 | // bitwise |
||
| 92 | const CFG_SYSTEM = 4; // System Circle (not managed by the official front-end). Meaning some config are limited |
||
| 93 | const CFG_VISIBLE = 8; // Visible to everyone, if not visible, people have to know its name to be able to find it |
||
| 94 | const CFG_OPEN = 16; // Circle is open, people can join |
||
| 95 | const CFG_INVITE = 32; // Adding a member generate an invitation that needs to be accepted |
||
| 96 | const CFG_REQUEST = 64; // Request to join Circles needs to be confirmed by a moderator |
||
| 97 | const CFG_FRIEND = 128; // Members of the circle can invite their friends |
||
| 98 | const CFG_PROTECTED = 256; // Password protected to join/request |
||
| 99 | const CFG_NO_OWNER = 512; // no owner, only members |
||
| 100 | const CFG_HIDDEN = 1024; // hidden from listing, but available as a share entity |
||
| 101 | const CFG_BACKEND = 2048; // Fully hidden, only backend Circles |
||
| 102 | const CFG_LOCAL = 4096; // Local even on GlobalScale |
||
| 103 | const CFG_ROOT = 8192; // Circle cannot be inside another Circle |
||
| 104 | const CFG_CIRCLE_INVITE = 16384; // Circle must confirm when invited in another circle |
||
| 105 | const CFG_FEDERATED = 32768; // Federated |
||
| 106 | const CFG_MOUNTPOINT = 65536; // Generate a Files folder for this Circle |
||
| 107 | |||
| 108 | public static $DEF_CFG_MAX = 131071; |
||
| 109 | |||
| 110 | |||
| 111 | /** |
||
| 112 | * Note: When editing those values, update lib/Application/Capabilities.php |
||
| 113 | * |
||
| 114 | * @see Capabilities::getCapabilitiesCircleConstants() |
||
| 115 | * @var array |
||
| 116 | */ |
||
| 117 | public static $DEF_CFG = [ |
||
| 118 | 1 => 'S|Single', |
||
| 119 | 2 => 'P|Personal', |
||
| 120 | 4 => 'Y|System', |
||
| 121 | 8 => 'V|Visible', |
||
| 122 | 16 => 'O|Open', |
||
| 123 | 32 => 'I|Invite', |
||
| 124 | 64 => 'JR|Join Request', |
||
| 125 | 128 => 'F|Friends', |
||
| 126 | 256 => 'PP|Password Protected', |
||
| 127 | 512 => 'NO|No Owner', |
||
| 128 | 1024 => 'H|Hidden', |
||
| 129 | 2048 => 'T|Backend', |
||
| 130 | 4096 => 'L|Local', |
||
| 131 | 8192 => 'T|Root', |
||
| 132 | 16384 => 'CI|Circle Invite', |
||
| 133 | 32768 => 'F|Federated', |
||
| 134 | 65536 => 'M|Nountpoint' |
||
| 135 | ]; |
||
| 136 | |||
| 137 | |||
| 138 | /** |
||
| 139 | * Note: When editing those values, update lib/Application/Capabilities.php |
||
| 140 | * |
||
| 141 | * @see Capabilities::getCapabilitiesCircleConstants() |
||
| 142 | * @var array |
||
| 143 | */ |
||
| 144 | public static $DEF_SOURCE = [ |
||
| 145 | 1 => 'Nextcloud User', |
||
| 146 | 2 => 'Nextcloud Group', |
||
| 147 | 4 => 'Email Address', |
||
| 148 | 8 => 'Contact', |
||
| 149 | 16 => 'Circle', |
||
| 150 | 10001 => 'Circles App', |
||
| 151 | 10002 => 'occ Command Line' |
||
| 152 | ]; |
||
| 153 | |||
| 154 | |||
| 155 | public static $DEF_CFG_CORE_FILTER = [ |
||
| 156 | 1, |
||
| 157 | 2, |
||
| 158 | 4 |
||
| 159 | ]; |
||
| 160 | |||
| 161 | public static $DEF_CFG_SYSTEM_FILTER = [ |
||
| 162 | 512, |
||
| 163 | 1024, |
||
| 164 | 2048 |
||
| 165 | ]; |
||
| 166 | |||
| 167 | |||
| 168 | /** @var string */ |
||
| 169 | private $singleId = ''; |
||
| 170 | |||
| 171 | /** @var int */ |
||
| 172 | private $config = 0; |
||
| 173 | |||
| 174 | /** @var string */ |
||
| 175 | private $name = ''; |
||
| 176 | |||
| 177 | /** @var string */ |
||
| 178 | private $displayName = ''; |
||
| 179 | |||
| 180 | /** @var string */ |
||
| 181 | private $sanitizedName = ''; |
||
| 182 | |||
| 183 | /** @var int */ |
||
| 184 | private $source = 0; |
||
| 185 | |||
| 186 | /** @var Member */ |
||
| 187 | private $owner; |
||
| 188 | |||
| 189 | /** @var Member */ |
||
| 190 | private $initiator; |
||
| 191 | |||
| 192 | /** @var array */ |
||
| 193 | private $settings = []; |
||
| 194 | |||
| 195 | /** @var string */ |
||
| 196 | private $description = ''; |
||
| 197 | |||
| 198 | /** @var int */ |
||
| 199 | private $contactAddressBook = 0; |
||
| 200 | |||
| 201 | /** @var string */ |
||
| 202 | private $contactGroupName = ''; |
||
| 203 | |||
| 204 | /** @var string */ |
||
| 205 | private $instance = ''; |
||
| 206 | |||
| 207 | // /** @var bool */ |
||
| 208 | // private $hidden = false; |
||
| 209 | |||
| 210 | /** @var int */ |
||
| 211 | private $creation = 0; |
||
| 212 | |||
| 213 | |||
| 214 | /** @var Member[] */ |
||
| 215 | private $members = null; |
||
| 216 | |||
| 217 | /** @var Member[] */ |
||
| 218 | private $inheritedMembers = null; |
||
| 219 | |||
| 220 | /** @var bool */ |
||
| 221 | private $detailedInheritedMember = false; |
||
| 222 | |||
| 223 | /** @var Membership[] */ |
||
| 224 | private $memberships = null; |
||
| 225 | |||
| 226 | |||
| 227 | /** |
||
| 228 | * Circle constructor. |
||
| 229 | */ |
||
| 230 | public function __construct() { |
||
| 231 | } |
||
| 232 | |||
| 233 | /** |
||
| 234 | * @param string $singleId |
||
| 235 | * |
||
| 236 | * @return self |
||
| 237 | */ |
||
| 238 | public function setSingleId(string $singleId): self { |
||
| 239 | $this->singleId = $singleId; |
||
| 240 | |||
| 241 | return $this; |
||
| 242 | } |
||
| 243 | |||
| 244 | /** |
||
| 245 | * @return string |
||
| 246 | */ |
||
| 247 | public function getSingleId(): string { |
||
| 248 | return $this->singleId; |
||
| 249 | } |
||
| 250 | |||
| 251 | /** |
||
| 252 | * @return string |
||
| 253 | * @deprecated - removed in NC23 |
||
| 254 | */ |
||
| 255 | public function getUniqueId(): string { |
||
| 256 | return $this->getSingleId(); |
||
| 257 | } |
||
| 258 | |||
| 259 | |||
| 260 | /** |
||
| 261 | * @param int $config |
||
| 262 | * |
||
| 263 | * @return self |
||
| 264 | */ |
||
| 265 | public function setConfig(int $config): self { |
||
| 266 | $this->config = $config; |
||
| 267 | |||
| 268 | return $this; |
||
| 269 | } |
||
| 270 | |||
| 271 | /** |
||
| 272 | * @return int |
||
| 273 | */ |
||
| 274 | public function getConfig(): int { |
||
| 275 | return $this->config; |
||
| 276 | } |
||
| 277 | |||
| 278 | /** |
||
| 279 | * @param int $flag |
||
| 280 | * @param int $test |
||
| 281 | * |
||
| 282 | * @return bool |
||
| 283 | */ |
||
| 284 | public function isConfig(int $flag, int $test = 0): bool { |
||
| 285 | if ($test === 0) { |
||
| 286 | $test = $this->getConfig(); |
||
| 287 | } |
||
| 288 | |||
| 289 | return (($test & $flag) !== 0); |
||
| 290 | } |
||
| 291 | |||
| 292 | /** |
||
| 293 | * @param int $flag |
||
| 294 | */ |
||
| 295 | public function addConfig(int $flag): void { |
||
| 296 | if (!$this->isConfig($flag)) { |
||
| 297 | $this->config += $flag; |
||
| 298 | } |
||
| 299 | } |
||
| 300 | |||
| 301 | /** |
||
| 302 | * @param int $flag |
||
| 303 | */ |
||
| 304 | public function remConfig(int $flag): void { |
||
| 305 | if ($this->isConfig($flag)) { |
||
| 306 | $this->config -= $flag; |
||
| 307 | } |
||
| 308 | } |
||
| 309 | |||
| 310 | |||
| 311 | /** |
||
| 312 | * @param string $name |
||
| 313 | * |
||
| 314 | * @return self |
||
| 315 | */ |
||
| 316 | public function setName(string $name): self { |
||
| 317 | $this->name = $name; |
||
| 318 | |||
| 319 | return $this; |
||
| 320 | } |
||
| 321 | |||
| 322 | /** |
||
| 323 | * @return string |
||
| 324 | */ |
||
| 325 | public function getName(): string { |
||
| 328 | |||
| 329 | |||
| 330 | /** |
||
| 331 | * @param string $displayName |
||
| 332 | * |
||
| 333 | * @return self |
||
| 334 | */ |
||
| 335 | public function setDisplayName(string $displayName): self { |
||
| 336 | // if ($displayName !== '') { |
||
| 337 | $this->displayName = $displayName; |
||
| 338 | |||
| 343 | |||
| 344 | /** |
||
| 345 | * @return string |
||
| 346 | */ |
||
| 347 | public function getDisplayName(): string { |
||
| 350 | |||
| 351 | |||
| 352 | /** |
||
| 353 | * @param string $sanitizedName |
||
| 354 | * |
||
| 355 | * @return Circle |
||
| 356 | */ |
||
| 357 | public function setSanitizedName(string $sanitizedName): self { |
||
| 362 | |||
| 363 | /** |
||
| 364 | * @return string |
||
| 365 | */ |
||
| 366 | public function getSanitizedName(): string { |
||
| 369 | |||
| 370 | |||
| 371 | /** |
||
| 372 | * @param int $source |
||
| 373 | * |
||
| 374 | * @return Circle |
||
| 375 | */ |
||
| 376 | public function setSource(int $source): self { |
||
| 381 | |||
| 382 | /** |
||
| 383 | * @return int |
||
| 384 | */ |
||
| 385 | public function getSource(): int { |
||
| 388 | |||
| 389 | |||
| 390 | /** |
||
| 391 | * @param ?Member $owner |
||
|
|
|||
| 392 | * |
||
| 393 | * @return self |
||
| 394 | */ |
||
| 395 | public function setOwner(?Member $owner): self { |
||
| 400 | |||
| 401 | /** |
||
| 402 | * @return Member |
||
| 403 | */ |
||
| 404 | public function getOwner(): Member { |
||
| 407 | |||
| 408 | /** |
||
| 409 | * @return bool |
||
| 410 | */ |
||
| 411 | public function hasOwner(): bool { |
||
| 414 | |||
| 415 | |||
| 416 | /** |
||
| 417 | * @return bool |
||
| 418 | */ |
||
| 419 | public function hasMembers(): bool { |
||
| 422 | |||
| 423 | /** |
||
| 424 | * @param array $members |
||
| 425 | * |
||
| 426 | * @return self |
||
| 427 | */ |
||
| 428 | public function setMembers(array $members): IMemberships { |
||
| 433 | |||
| 434 | /** |
||
| 435 | * @return array |
||
| 436 | */ |
||
| 437 | public function getMembers(): array { |
||
| 444 | |||
| 445 | |||
| 446 | /** |
||
| 447 | * @param array $members |
||
| 448 | * @param bool $detailed |
||
| 449 | * |
||
| 450 | * @return self |
||
| 451 | */ |
||
| 452 | public function setInheritedMembers(array $members, bool $detailed): IMemberships { |
||
| 458 | |||
| 459 | /** |
||
| 460 | * @param bool $detailed |
||
| 461 | * |
||
| 462 | * @return Member[] |
||
| 463 | */ |
||
| 464 | public function getInheritedMembers(bool $detailed = false): array { |
||
| 472 | |||
| 473 | |||
| 474 | /** |
||
| 475 | * @return bool |
||
| 476 | */ |
||
| 477 | public function hasMemberships(): bool { |
||
| 480 | |||
| 481 | /** |
||
| 482 | * @param array $memberships |
||
| 483 | * |
||
| 484 | * @return self |
||
| 485 | */ |
||
| 486 | public function setMemberships(array $memberships): IMemberships { |
||
| 491 | |||
| 492 | /** |
||
| 493 | * @return Membership[] |
||
| 494 | */ |
||
| 495 | public function getMemberships(): array { |
||
| 502 | |||
| 503 | |||
| 504 | /** |
||
| 505 | * @param Member|null $initiator |
||
| 506 | * |
||
| 507 | * @return Circle |
||
| 508 | */ |
||
| 509 | public function setInitiator(?Member $initiator): self { |
||
| 514 | |||
| 515 | /** |
||
| 516 | * @return Member |
||
| 517 | */ |
||
| 518 | public function getInitiator(): Member { |
||
| 521 | |||
| 522 | /** |
||
| 523 | * @return bool |
||
| 524 | */ |
||
| 525 | public function hasInitiator(): bool { |
||
| 528 | |||
| 529 | /** |
||
| 530 | * @param string $instance |
||
| 531 | * |
||
| 532 | * @return Circle |
||
| 533 | */ |
||
| 534 | public function setInstance(string $instance): self { |
||
| 541 | |||
| 542 | /** |
||
| 543 | * @return string |
||
| 544 | * @throws OwnerNotFoundException |
||
| 545 | */ |
||
| 546 | public function getInstance(): string { |
||
| 553 | |||
| 554 | |||
| 555 | /** |
||
| 556 | * @param array $settings |
||
| 557 | * |
||
| 558 | * @return self |
||
| 559 | */ |
||
| 560 | public function setSettings(array $settings): self { |
||
| 565 | |||
| 566 | /** |
||
| 567 | * @return array |
||
| 568 | */ |
||
| 569 | public function getSettings(): array { |
||
| 572 | |||
| 573 | |||
| 574 | /** |
||
| 575 | * @param string $description |
||
| 576 | * |
||
| 577 | * @return self |
||
| 578 | */ |
||
| 579 | public function setDescription(string $description): self { |
||
| 584 | |||
| 585 | /** |
||
| 586 | * @return string |
||
| 587 | */ |
||
| 588 | public function getDescription(): string { |
||
| 591 | |||
| 592 | |||
| 593 | /** |
||
| 594 | * @return string |
||
| 595 | */ |
||
| 596 | public function getUrl(): string { |
||
| 599 | |||
| 600 | |||
| 601 | /** |
||
| 602 | * @param int $contactAddressBook |
||
| 603 | * |
||
| 604 | * @return self |
||
| 605 | */ |
||
| 606 | public function setContactAddressBook(int $contactAddressBook): self { |
||
| 611 | |||
| 612 | /** |
||
| 613 | * @return int |
||
| 614 | */ |
||
| 615 | public function getContactAddressBook(): int { |
||
| 618 | |||
| 619 | |||
| 620 | /** |
||
| 621 | * @param string $contactGroupName |
||
| 622 | * |
||
| 623 | * @return self |
||
| 624 | */ |
||
| 625 | public function setContactGroupName(string $contactGroupName): self { |
||
| 630 | |||
| 631 | /** |
||
| 632 | * @return string |
||
| 633 | */ |
||
| 634 | public function getContactGroupName(): string { |
||
| 637 | |||
| 638 | |||
| 639 | /** |
||
| 640 | * @param int $creation |
||
| 641 | * |
||
| 642 | * @return self |
||
| 643 | */ |
||
| 644 | public function setCreation(int $creation): self { |
||
| 649 | |||
| 650 | /** |
||
| 651 | * @return int |
||
| 652 | */ |
||
| 653 | public function getCreation(): int { |
||
| 656 | |||
| 657 | |||
| 658 | /** |
||
| 659 | * @param array $data |
||
| 660 | * |
||
| 661 | * @return $this |
||
| 662 | * @throws InvalidItemException |
||
| 663 | */ |
||
| 664 | public function import(array $data): IDeserializable { |
||
| 697 | |||
| 698 | |||
| 699 | /** |
||
| 700 | * @return array |
||
| 701 | */ |
||
| 702 | public function jsonSerialize(): array { |
||
| 735 | |||
| 736 | |||
| 737 | /** |
||
| 738 | * @param array $data |
||
| 739 | * @param string $prefix |
||
| 740 | * |
||
| 741 | * @return INC22QueryRow |
||
| 742 | * @throws CircleNotFoundException |
||
| 743 | */ |
||
| 744 | public function importFromDatabase(array $data, string $prefix = ''): INC22QueryRow { |
||
| 768 | |||
| 769 | |||
| 770 | /** |
||
| 771 | * @param Circle $circle |
||
| 772 | * |
||
| 773 | * @return bool |
||
| 774 | * @throws OwnerNotFoundException |
||
| 775 | */ |
||
| 776 | public function compareWith(Circle $circle): bool { |
||
| 797 | |||
| 798 | |||
| 799 | /** |
||
| 800 | * @param Circle $circle |
||
| 801 | * @param int $display |
||
| 802 | * |
||
| 803 | * @return array |
||
| 804 | */ |
||
| 805 | public static function getCircleFlags(Circle $circle, int $display = self::FLAGS_LONG): array { |
||
| 825 | |||
| 826 | } |
||
| 827 | |||
| 828 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.