mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-22 04:38:09 +01:00
77 lines
No EOL
4.3 KiB
PHP
77 lines
No EOL
4.3 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace OCA\OrganizationFolders\OrganizationProvider;
|
|
|
|
use OCA\OrganizationFolders\Model\Organization;
|
|
use OCA\OrganizationFolders\Model\OrganizationRole;
|
|
|
|
use OCA\OrganizationFolders\Errors\OrganizationNotFound;
|
|
use OCA\OrganizationFolders\Errors\OrganizationRoleNotFound;
|
|
|
|
abstract class OrganizationProvider {
|
|
protected $id;
|
|
|
|
public function getId(): string {
|
|
return $this->id;
|
|
}
|
|
|
|
/**
|
|
* Get specific role by its id (unique within OrganizationProvider)
|
|
* @return Organization
|
|
* @throws OrganizationNotFound
|
|
*/
|
|
abstract public function getOrganization(int $id): Organization;
|
|
|
|
/**
|
|
* Return one level of the Organization Tree
|
|
*
|
|
* ┌────────────────────────────┐
|
|
* │ Root Node │
|
|
* │ (of Organization Provider) │
|
|
* └──┬──────────────────────┬──┘
|
|
* │ │
|
|
* │ │
|
|
* ┌── ── ── │── ── ── ── ── ── ── ─│─ ── ── ─┐
|
|
* │ │
|
|
* │ ▼ ▼ │
|
|
* ┌──────────────┐ ┌──────────────┐
|
|
* │ │ │ │ │ │
|
|
* │Organization 1│ │Organization 2│ ◄── ── ── getSubOrganizations();
|
|
* │ │ │ │ │ │
|
|
* └┬────────────┬┘ └┬────────────┬┘
|
|
* │ │ │ │ │ │
|
|
* │ │ │ │
|
|
* └── ├─ ── ── ── ─┤ ── ── ─┼ ── ── ── ──│── ┘
|
|
* │ │ │ │
|
|
* ▼ ▼ │ │
|
|
* ... ... ▼ ▼
|
|
* ┌── ── ── ── ── ── ── ── ── ── ─┐
|
|
* ┌────────────┐ ┌────────────┐
|
|
* │ │ │ │ │ │
|
|
* │ Suborg. 21 │ │ Suborg. 22 │ ◄── ── ── getSubOrganizations(2);
|
|
* │ │ │ │ │ │
|
|
* └────────────┘ └────────────┘
|
|
* └── ── ── ── ── ── ── ── ── ── ─┘
|
|
*
|
|
* @return Organization[]
|
|
*/
|
|
abstract public function getSubOrganizations(?int $parentOrganizationId): array;
|
|
|
|
/**
|
|
* Get a specific role by its id (must be unique within organization provider, not just within parent organization)
|
|
*
|
|
* @return OrganizationRole
|
|
* @throws OrganizationRoleNotFound
|
|
*/
|
|
abstract public function getRole(int $id): OrganizationRole;
|
|
|
|
/**
|
|
* Get all roles of a specific organization
|
|
*
|
|
* @return OrganizationRole[]
|
|
*/
|
|
abstract public function getRolesOfOrganization(int $organizationId): array;
|
|
|
|
} |