0
0
Fork 0
mirror of https://github.com/verdigado/organization_folders.git synced 2024-11-22 12:40:28 +01:00
organization_folders/lib/Db/ResourceMember.php

61 lines
1.9 KiB
PHP
Raw Normal View History

2024-10-31 17:29:15 +01:00
<?php
namespace OCA\OrganizationFolders\Db;
use JsonSerializable;
use OCA\OrganizationFolders\Interface\TableSerializable;
use OCP\AppFramework\Db\Entity;
use OCA\OrganizationFolders\Enum\MemberPermissionLevel;
use OCA\OrganizationFolders\Enum\PrincipalType;
use OCA\OrganizationFolders\Model\Principal;
2024-10-31 17:29:15 +01:00
class ResourceMember extends Entity implements JsonSerializable, TableSerializable {
protected $resourceId;
protected $permissionLevel;
protected $principalType;
protected $principalId;
2024-10-31 17:29:15 +01:00
protected $createdTimestamp;
protected $lastUpdatedTimestamp;
public function __construct() {
$this->addType('resourceId','integer');
$this->addType('permissionLevel','integer');
$this->addType('principalType','integer');
2024-10-31 17:29:15 +01:00
$this->addType('createdTimestamp','integer');
$this->addType('lastUpdatedTimestamp','integer');
}
public function getPrincipal(): Principal {
return new Principal(PrincipalType::from($this->principalType), $this->principalId);
}
public function setPrincipal(Principal $principal) {
$this->setPrincipalType($principal->getType()->value);
$this->setPrincipalId($principal->getId());
}
2024-10-31 17:29:15 +01:00
public function jsonSerialize(): array {
return [
'id' => $this->id,
2024-10-31 17:29:15 +01:00
'resourceId' => $this->resourceId,
'permissionLevel' => $this->permissionLevel,
'principal' => $this->getPrincipal(),
2024-10-31 17:29:15 +01:00
'createdTimestamp' => $this->createdTimestamp,
'lastUpdatedTimestamp' => $this->lastUpdatedTimestamp,
];
}
public function tableSerialize(?array $params = null): array {
return [
'Id' => $this->id,
2024-10-31 17:29:15 +01:00
'Resource Id' => $this->resourceId,
'Permission Level' => MemberPermissionLevel::from($this->permissionLevel)->name,
'Principal Type' => PrincipalType::from($this->principalType)->name,
'Principal Id' => $this->principalId,
2024-10-31 17:29:15 +01:00
'Created' => $this->createdTimestamp,
'LastUpdated' => $this->lastUpdatedTimestamp,
];
}
}