123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 |
- <?php
- use dokuwiki\Remote\AccessDeniedException;
- /**
- * Class remote_plugin_acl
- */
- class remote_plugin_acl extends DokuWiki_Remote_Plugin
- {
- /**
- * Returns details about the remote plugin methods
- *
- * @return array Information about all provided methods. {@see dokuwiki\Remote\RemoteAPI}
- */
- public function _getMethods()
- {
- return array(
- 'listAcls' => array(
- 'args' => array(),
- 'return' => 'Array of ACLs {scope, user, permission}',
- 'name' => 'listAcls',
- 'doc' => 'Get the list of all ACLs',
- ),'addAcl' => array(
- 'args' => array('string','string','int'),
- 'return' => 'int',
- 'name' => 'addAcl',
- 'doc' => 'Adds a new ACL rule.'
- ), 'delAcl' => array(
- 'args' => array('string','string'),
- 'return' => 'int',
- 'name' => 'delAcl',
- 'doc' => 'Delete an existing ACL rule.'
- ),
- );
- }
- /**
- * List all ACL config entries
- *
- * @throws AccessDeniedException
- * @return dictionary {Scope: ACL}, where ACL = dictionnary {user/group: permissions_int}
- */
- public function listAcls()
- {
- if (!auth_isadmin()) {
- throw new AccessDeniedException(
- 'You are not allowed to access ACLs, superuser permission is required',
- 114
- );
- }
- /** @var admin_plugin_acl $apa */
- $apa = plugin_load('admin', 'acl');
- $apa->initAclConfig();
- return $apa->acl;
- }
- /**
- * Add a new entry to ACL config
- *
- * @param string $scope
- * @param string $user
- * @param int $level see also inc/auth.php
- * @throws AccessDeniedException
- * @return bool
- */
- public function addAcl($scope, $user, $level)
- {
- if (!auth_isadmin()) {
- throw new AccessDeniedException(
- 'You are not allowed to access ACLs, superuser permission is required',
- 114
- );
- }
- /** @var admin_plugin_acl $apa */
- $apa = plugin_load('admin', 'acl');
- return $apa->addOrUpdateACL($scope, $user, $level);
- }
- /**
- * Remove an entry from ACL config
- *
- * @param string $scope
- * @param string $user
- * @throws AccessDeniedException
- * @return bool
- */
- public function delAcl($scope, $user)
- {
- if (!auth_isadmin()) {
- throw new AccessDeniedException(
- 'You are not allowed to access ACLs, superuser permission is required',
- 114
- );
- }
- /** @var admin_plugin_acl $apa */
- $apa = plugin_load('admin', 'acl');
- return $apa->deleteACL($scope, $user);
- }
- }
|