mirror of
https://github.com/verdigado/organization_folders.git
synced 2024-11-21 20:28:11 +01:00
Merge pull request 'Implement Organization Providers' (#6) from organizationProvider into main
Reviewed-on: #6
This commit is contained in:
commit
936f52c61f
6 changed files with 121 additions and 16 deletions
|
@ -16,6 +16,6 @@
|
|||
<database>pgsql</database>
|
||||
<database>sqlite</database>
|
||||
<database>mysql</database>
|
||||
<nextcloud min-version="29" max-version="29"/>
|
||||
<nextcloud min-version="29" max-version="30"/>
|
||||
</dependencies>
|
||||
</info>
|
19
lib/Model/Organization.php
Normal file
19
lib/Model/Organization.php
Normal file
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\OrganizationFolders\Model;
|
||||
|
||||
class Organization implements \JsonSerializable {
|
||||
public function __construct(
|
||||
private int $id,
|
||||
private string $membersGroup,
|
||||
) {
|
||||
}
|
||||
|
||||
public function getId(): int {
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getMembersGroup(): string {
|
||||
return $this->membersGroup;
|
||||
}
|
||||
}
|
29
lib/Model/OrganizationRole.php
Normal file
29
lib/Model/OrganizationRole.php
Normal file
|
@ -0,0 +1,29 @@
|
|||
<?php
|
||||
|
||||
namespace OCA\OrganizationFolders\Model;
|
||||
|
||||
class OrganizationRole implements \JsonSerializable {
|
||||
public function __construct(
|
||||
private int $id,
|
||||
private int $organizationId,
|
||||
private string $friendlyName,
|
||||
private string $membersGroup,
|
||||
) {
|
||||
}
|
||||
|
||||
public function getId(): int {
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
public function getOrganizationId(): int {
|
||||
return $this->organizationId;
|
||||
}
|
||||
|
||||
public function getFriendlyName(): string {
|
||||
return $this->friendlyName;
|
||||
}
|
||||
|
||||
public function getMembersGroup(): string {
|
||||
return $this->membersGroup;
|
||||
}
|
||||
}
|
|
@ -1,15 +0,0 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\OrganizationFolders\OrganizationProvider;
|
||||
|
||||
abstract class OrganizationProvider {
|
||||
protected $id;
|
||||
|
||||
public function getId() {
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
// TODO: functions to access organisation structure
|
||||
}
|
72
lib/OrganisationProvider/OrganizationProvider.php
Normal file
72
lib/OrganisationProvider/OrganizationProvider.php
Normal file
|
@ -0,0 +1,72 @@
|
|||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace OCA\OrganizationFolders\OrganizationProvider;
|
||||
|
||||
use OCA\OrganizationFolders\Model\Organization;
|
||||
use OCA\OrganizationFolders\Model\OrganizationRole;
|
||||
|
||||
abstract class OrganizationProvider {
|
||||
protected $id;
|
||||
|
||||
public function getId() {
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get specific role by its id (unique within OrganizationProvider)
|
||||
* @return Organization
|
||||
*/
|
||||
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 specific role by its id (unique within OrganizationProvider)
|
||||
*
|
||||
* @return OrganizationRole
|
||||
*/
|
||||
abstract public function getRole(int $id): OrganizationRole;
|
||||
|
||||
/**
|
||||
* Get all roles of a specific organization
|
||||
*
|
||||
* @return OrganizationRole[]
|
||||
*/
|
||||
abstract public function getRolesOfOrganization(int $organizationId): array;
|
||||
|
||||
}
|
Loading…
Reference in a new issue