209 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			209 lines
		
	
	
		
			6.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Api {
 | |
| 
 | |
|   abstract class PermissionAPI extends Request {
 | |
|     protected function checkStaticPermission() {
 | |
|       if (!$this->user->isLoggedIn() || !$this->user->hasGroup(USER_GROUP_ADMIN)) {
 | |
|         return $this->createError("Permission denied.");
 | |
|       }
 | |
| 
 | |
|       return true;
 | |
|     }
 | |
|   }
 | |
| }
 | |
| 
 | |
| namespace Api\Permission {
 | |
| 
 | |
|   use Api\Parameter\Parameter;
 | |
|   use Api\Parameter\StringType;
 | |
|   use Api\PermissionAPI;
 | |
|   use Driver\SQL\Column\Column;
 | |
|   use Driver\SQL\Condition\Compare;
 | |
|   use Driver\SQL\Condition\CondIn;
 | |
|   use Driver\SQL\Condition\CondNot;
 | |
|   use Driver\SQL\Strategy\UpdateStrategy;
 | |
|   use Objects\User;
 | |
| 
 | |
|   class Check extends PermissionAPI {
 | |
| 
 | |
|     public function __construct(User $user, bool $externalCall = false) {
 | |
|       parent::__construct($user, $externalCall, array(
 | |
|         'method' => new StringType('method', 323)
 | |
|       ));
 | |
| 
 | |
|       $this->isPublic = false;
 | |
|     }
 | |
| 
 | |
|     public function execute($values = array()): bool {
 | |
|       if (!parent::execute($values)) {
 | |
|         return false;
 | |
|       }
 | |
| 
 | |
|       $method = $this->getParam("method");
 | |
|       $sql = $this->user->getSQL();
 | |
|       $res = $sql->select("groups")
 | |
|         ->from("ApiPermission")
 | |
|         ->where(new Compare("method", $method))
 | |
|         ->execute();
 | |
| 
 | |
|       $this->success = ($res !== FALSE);
 | |
|       $this->lastError = $sql->getLastError();
 | |
| 
 | |
|       if ($this->success) {
 | |
|         if (empty($res)) {
 | |
|           return true;
 | |
|         }
 | |
| 
 | |
|         $groups = json_decode($res[0]["groups"]);
 | |
|         if (empty($groups)) {
 | |
|           return true;
 | |
|         }
 | |
| 
 | |
|         if (!$this->user->isLoggedIn() || empty(array_intersect($groups, array_keys($this->user->getGroups())))) {
 | |
|           header('HTTP 1.1 401 Unauthorized');
 | |
|           return $this->createError("Permission denied.");
 | |
|         }
 | |
|       }
 | |
| 
 | |
|       return $this->success;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   class Fetch extends PermissionAPI {
 | |
| 
 | |
|     private array $groups;
 | |
| 
 | |
|     public function __construct(User $user, bool $externalCall = false) {
 | |
|       parent::__construct($user, $externalCall, array());
 | |
|     }
 | |
| 
 | |
|     private function fetchGroups() {
 | |
|       $sql = $this->user->getSQL();
 | |
|       $res = $sql->select("uid", "name", "color")
 | |
|         ->from("Group")
 | |
|         ->orderBy("uid")
 | |
|         ->ascending()
 | |
|         ->execute();
 | |
| 
 | |
|       $this->success = ($res !== FALSE);
 | |
|       $this->lastError = $sql->getLastError();
 | |
| 
 | |
|       if ($this->success) {
 | |
|         $this->groups = array();
 | |
|         foreach($res as $row) {
 | |
|           $groupId = $row["uid"];
 | |
|           $groupName = $row["name"];
 | |
|           $groupColor = $row["color"];
 | |
|           $this->groups[$groupId] = array("name" => $groupName, "color" => $groupColor);
 | |
|         }
 | |
|       }
 | |
| 
 | |
|       return $this->success;
 | |
|     }
 | |
| 
 | |
|     public function execute($values = array()): bool {
 | |
|       if (!parent::execute($values)) {
 | |
|         return false;
 | |
|       }
 | |
| 
 | |
|       if (!$this->fetchGroups()) {
 | |
|         return false;
 | |
|       }
 | |
| 
 | |
|       $sql = $this->user->getSQL();
 | |
|       $res = $sql->select("method", "groups", "description")
 | |
|         ->from("ApiPermission")
 | |
|         ->execute();
 | |
| 
 | |
|       $this->success = ($res !== FALSE);
 | |
|       $this->lastError = $sql->getLastError();
 | |
| 
 | |
|       if ($this->success) {
 | |
|         $permissions = array();
 | |
|         foreach ($res as $row) {
 | |
|           $method = $row["method"];
 | |
|           $description = $row["description"];
 | |
|           $groups = json_decode($row["groups"]);
 | |
|           $permissions[] = array(
 | |
|             "method" => $method,
 | |
|             "groups" => $groups,
 | |
|             "description" => $description
 | |
|           );
 | |
|         }
 | |
|         $this->result["permissions"] = $permissions;
 | |
|         $this->result["groups"] = $this->groups;
 | |
|       }
 | |
| 
 | |
|       return $this->success;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   class Save extends PermissionAPI {
 | |
| 
 | |
|     public function __construct(User $user, bool $externalCall = false) {
 | |
|       parent::__construct($user, $externalCall, array(
 | |
|         'permissions' => new Parameter('permissions', Parameter::TYPE_ARRAY)
 | |
|       ));
 | |
|     }
 | |
| 
 | |
|     public function execute($values = array()): bool {
 | |
|       if (!parent::execute($values)) {
 | |
|         return false;
 | |
|       }
 | |
| 
 | |
|       if (!$this->checkStaticPermission()) {
 | |
|         return false;
 | |
|       }
 | |
| 
 | |
|       $permissions = $this->getParam("permissions");
 | |
|       $sql = $this->user->getSQL();
 | |
|       $methodParam = new StringType('method', 32);
 | |
|       $groupsParam = new Parameter('groups', Parameter::TYPE_ARRAY);
 | |
| 
 | |
|       $updateQuery = $sql->insert("ApiPermission", array("method", "groups"))
 | |
|         ->onDuplicateKeyStrategy(new UpdateStrategy(array("method"), array( "groups" => new Column("groups") )));
 | |
| 
 | |
|       $insertedMethods = array();
 | |
| 
 | |
|       foreach($permissions as $permission) {
 | |
|         if (!is_array($permission)) {
 | |
|           return $this->createError("Invalid data type found in parameter: permissions, expected: object");
 | |
|         } else if(!isset($permission["method"]) || !array_key_exists("groups", $permission)) {
 | |
|           return $this->createError("Invalid object found in parameter: permissions, expected keys 'method' and 'groups'");
 | |
|         } else if (!$methodParam->parseParam($permission["method"])) {
 | |
|           $expectedType = $methodParam->getTypeName();
 | |
|           return $this->createError("Invalid data type found for attribute 'method', expected: $expectedType");
 | |
|         } else if(!$groupsParam->parseParam($permission["groups"])) {
 | |
|           $expectedType = $groupsParam->getTypeName();
 | |
|           return $this->createError("Invalid data type found for attribute 'groups', expected: $expectedType");
 | |
|         } else if(empty(trim($methodParam->value))) {
 | |
|           return $this->createError("Method cannot be empty.");
 | |
|         } else {
 | |
|           $method = $methodParam->value;
 | |
|           $groups = $groupsParam->value;
 | |
|           $updateQuery->addRow($method, $groups);
 | |
|           $insertedMethods[] = $method;
 | |
|         }
 | |
|       }
 | |
| 
 | |
|       if (!empty($permissions)) {
 | |
|         $res = $updateQuery->execute();
 | |
|         $this->success = ($res !== FALSE);
 | |
|         $this->lastError = $sql->getLastError();
 | |
|       }
 | |
| 
 | |
|       if ($this->success) {
 | |
|         $res = $sql->delete("ApiPermission")
 | |
|           ->where(new Compare("description", "")) // only delete non default permissions
 | |
|           ->where(new CondNot(new CondIn("method", $insertedMethods)))
 | |
|           ->execute();
 | |
| 
 | |
|         $this->success = ($res !== FALSE);
 | |
|         $this->lastError = $sql->getLastError();
 | |
|       }
 | |
| 
 | |
|       return $this->success;
 | |
|     }
 | |
|   }
 | |
| } |