opable = $opable; if($opable instanceof Permissible){ $this->parent = $opable; } } /** * @return bool */ public function isOp() : bool{ return $this->opable->isOp(); } /** * @param bool $value */ public function setOp(bool $value){ $this->opable->setOp($value); } /** * @param Permission|string $name * * @return bool */ public function isPermissionSet($name) : bool{ return isset($this->permissions[$name instanceof Permission ? $name->getName() : $name]); } /** * @param Permission|string $name * * @return bool */ public function hasPermission($name) : bool{ if($name instanceof Permission){ $name = $name->getName(); } if($this->isPermissionSet($name)){ return $this->permissions[$name]->getValue(); } if(($perm = PermissionManager::getInstance()->getPermission($name)) !== null){ $perm = $perm->getDefault(); return $perm === Permission::DEFAULT_TRUE or ($this->isOp() and $perm === Permission::DEFAULT_OP) or (!$this->isOp() and $perm === Permission::DEFAULT_NOT_OP); }else{ return Permission::$DEFAULT_PERMISSION === Permission::DEFAULT_TRUE or ($this->isOp() and Permission::$DEFAULT_PERMISSION === Permission::DEFAULT_OP) or (!$this->isOp() and Permission::$DEFAULT_PERMISSION === Permission::DEFAULT_NOT_OP); } } /** * //TODO: tick scheduled attachments * * @param Plugin $plugin * @param string $name * @param bool $value * * @return PermissionAttachment */ public function addAttachment(Plugin $plugin, string $name = null, bool $value = null) : PermissionAttachment{ if(!$plugin->isEnabled()){ throw new PluginException("Plugin " . $plugin->getDescription()->getName() . " is disabled"); } $result = new PermissionAttachment($plugin, $this->parent ?? $this); $this->attachments[spl_object_hash($result)] = $result; if($name !== null and $value !== null){ $result->setPermission($name, $value); } $this->recalculatePermissions(); return $result; } /** * @param PermissionAttachment $attachment */ public function removeAttachment(PermissionAttachment $attachment){ if(isset($this->attachments[spl_object_hash($attachment)])){ unset($this->attachments[spl_object_hash($attachment)]); if(($ex = $attachment->getRemovalCallback()) !== null){ $ex->attachmentRemoved($attachment); } $this->recalculatePermissions(); } } public function recalculatePermissions(){ Timings::$permissibleCalculationTimer->startTiming(); $this->clearPermissions(); $permManager = PermissionManager::getInstance(); $defaults = $permManager->getDefaultPermissions($this->isOp()); $permManager->subscribeToDefaultPerms($this->isOp(), $this->parent ?? $this); foreach($defaults as $perm){ $name = $perm->getName(); $this->permissions[$name] = new PermissionAttachmentInfo($this->parent ?? $this, $name, null, true); $permManager->subscribeToPermission($name, $this->parent ?? $this); $this->calculateChildPermissions($perm->getChildren(), false, null); } foreach($this->attachments as $attachment){ $this->calculateChildPermissions($attachment->getPermissions(), false, $attachment); } Timings::$permissibleCalculationTimer->stopTiming(); } public function clearPermissions(){ $permManager = PermissionManager::getInstance(); $permManager->unsubscribeFromAllPermissions($this->parent ?? $this); $permManager->unsubscribeFromDefaultPerms(false, $this->parent ?? $this); $permManager->unsubscribeFromDefaultPerms(true, $this->parent ?? $this); $this->permissions = []; } /** * @param bool[] $children * @param bool $invert * @param PermissionAttachment|null $attachment */ private function calculateChildPermissions(array $children, bool $invert, ?PermissionAttachment $attachment){ $permManager = PermissionManager::getInstance(); foreach($children as $name => $v){ $perm = $permManager->getPermission($name); $value = ($v xor $invert); $this->permissions[$name] = new PermissionAttachmentInfo($this->parent ?? $this, $name, $attachment, $value); $permManager->subscribeToPermission($name, $this->parent ?? $this); if($perm instanceof Permission){ $this->calculateChildPermissions($perm->getChildren(), !$value, $attachment); } } } /** * @return PermissionAttachmentInfo[] */ public function getEffectivePermissions() : array{ return $this->permissions; } }