refactor: standardize design
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
40
lib/Providers/Personal/CollectionProperties.php
Normal file
40
lib/Providers/Personal/CollectionProperties.php
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\ProviderLocalDocuments\Providers\Personal;
|
||||
|
||||
use KTXF\Resource\Documents\Collection\CollectionPropertiesMutableAbstract;
|
||||
|
||||
class CollectionProperties extends CollectionPropertiesMutableAbstract {
|
||||
|
||||
/**
|
||||
* Converts store document values into collection properties.
|
||||
*/
|
||||
public function fromStore(array|object $data): static {
|
||||
|
||||
if (is_object($data)) {
|
||||
$data = (array) $data;
|
||||
}
|
||||
|
||||
if (isset($data['label'])) {
|
||||
$this->data[self::JSON_PROPERTY_LABEL] = (string) $data['label'];
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts collection properties into store document values.
|
||||
*/
|
||||
public function toStore(): array {
|
||||
return array_filter([
|
||||
'label' => $this->getLabel(),
|
||||
], static fn($value) => $value !== null);
|
||||
}
|
||||
}
|
||||
63
lib/Providers/Personal/CollectionResource.php
Normal file
63
lib/Providers/Personal/CollectionResource.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\ProviderLocalDocuments\Providers\Personal;
|
||||
|
||||
use KTXF\Resource\Documents\Collection\CollectionMutableAbstract;
|
||||
|
||||
class CollectionResource extends CollectionMutableAbstract {
|
||||
|
||||
public function __construct(
|
||||
string $provider = 'default',
|
||||
string|int $service = 'personal',
|
||||
) {
|
||||
parent::__construct($provider, $service);
|
||||
}
|
||||
|
||||
public function fromStore(array|object $data): self
|
||||
{
|
||||
if (is_object($data)) {
|
||||
$data = (array) $data;
|
||||
}
|
||||
|
||||
$this->data[static::JSON_PROPERTY_COLLECTION] = $data['cid'] ?? null;
|
||||
$this->data[static::JSON_PROPERTY_IDENTIFIER] = $data['nid'];
|
||||
$this->data[static::JSON_PROPERTY_CREATED] = $data['created'] ?? null;
|
||||
$this->data[static::JSON_PROPERTY_MODIFIED] = $data['modified'] ?? null;
|
||||
$this->data[static::JSON_PROPERTY_SIGNATURE] = $data['signature'] ?? null;
|
||||
$this->getProperties()->fromStore($data['properties'] ?? []);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function toStore(): array
|
||||
{
|
||||
$properties = $this->getProperties();
|
||||
|
||||
$data = array_filter([
|
||||
'cid' => $this->data[static::JSON_PROPERTY_COLLECTION] ?? null,
|
||||
'nid' => $this->data[static::JSON_PROPERTY_IDENTIFIER] ?? null,
|
||||
'created' => $this->data[static::JSON_PROPERTY_CREATED] ?? null,
|
||||
'modified' => $this->data[static::JSON_PROPERTY_MODIFIED] ?? null,
|
||||
'signature' => $this->data[static::JSON_PROPERTY_SIGNATURE] ?? null,
|
||||
'properties' => $properties ? $properties->toStore() : null,
|
||||
], static fn($value) => $value !== null);
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
public function getProperties(): CollectionProperties {
|
||||
if (!isset($this->properties)) {
|
||||
$this->properties = new CollectionProperties([]);
|
||||
}
|
||||
|
||||
return $this->properties;
|
||||
}
|
||||
|
||||
}
|
||||
59
lib/Providers/Personal/EntityProperties.php
Normal file
59
lib/Providers/Personal/EntityProperties.php
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\ProviderLocalDocuments\Providers\Personal;
|
||||
|
||||
use KTXF\Resource\Documents\Entity\EntityPropertiesMutableAbstract;
|
||||
|
||||
class EntityProperties extends EntityPropertiesMutableAbstract {
|
||||
|
||||
/**
|
||||
* Converts store document values into entity properties.
|
||||
*/
|
||||
public function fromStore(array|object $data): static {
|
||||
|
||||
if (is_object($data)) {
|
||||
$data = (array) $data;
|
||||
}
|
||||
|
||||
if (isset($data['size'])) {
|
||||
$this->data[self::JSON_PROPERTY_SIZE] = (int) $data['size'];
|
||||
}
|
||||
|
||||
if (isset($data['label'])) {
|
||||
$this->data[self::JSON_PROPERTY_LABEL] = (string) $data['label'];
|
||||
}
|
||||
|
||||
if (isset($data['mime'])) {
|
||||
$this->data[self::JSON_PROPERTY_MIME] = (string) $data['mime'];
|
||||
}
|
||||
|
||||
if (isset($data['format'])) {
|
||||
$this->data[self::JSON_PROPERTY_FORMAT] = (string) $data['format'];
|
||||
}
|
||||
|
||||
if (isset($data['encoding'])) {
|
||||
$this->data[self::JSON_PROPERTY_ENCODING] = (string) $data['encoding'];
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Converts entity properties into store document values.
|
||||
*/
|
||||
public function toStore(): array {
|
||||
return array_filter([
|
||||
'label' => $this->data[self::JSON_PROPERTY_LABEL],
|
||||
'mime' => $this->data[self::JSON_PROPERTY_MIME] ?? 'application/octet-stream',
|
||||
'format' => $this->data[self::JSON_PROPERTY_FORMAT] ?? null,
|
||||
'encoding' => $this->data[self::JSON_PROPERTY_ENCODING] ?? null,
|
||||
], static fn($value) => $value !== null);
|
||||
}
|
||||
}
|
||||
63
lib/Providers/Personal/EntityResource.php
Normal file
63
lib/Providers/Personal/EntityResource.php
Normal file
@@ -0,0 +1,63 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\ProviderLocalDocuments\Providers\Personal;
|
||||
|
||||
use KTXF\Resource\Documents\Entity\EntityMutableAbstract;
|
||||
|
||||
class EntityResource extends EntityMutableAbstract {
|
||||
|
||||
public function __construct(
|
||||
string $provider = 'default',
|
||||
string|int $service = 'personal',
|
||||
) {
|
||||
parent::__construct($provider, $service);
|
||||
}
|
||||
|
||||
public function fromStore(array|object $data): self
|
||||
{
|
||||
if (is_object($data)) {
|
||||
$data = (array) $data;
|
||||
}
|
||||
|
||||
$this->data[static::JSON_PROPERTY_COLLECTION] = $data['cid'] ?? null;
|
||||
$this->data[static::JSON_PROPERTY_IDENTIFIER] = $data['nid'];
|
||||
$this->data[static::JSON_PROPERTY_CREATED] = $data['created'] ?? null;
|
||||
$this->data[static::JSON_PROPERTY_MODIFIED] = $data['modified'] ?? null;
|
||||
$this->data[static::JSON_PROPERTY_SIGNATURE] = $data['signature'] ?? null;
|
||||
$this->getProperties()->fromStore($data['properties'] ?? []);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function toStore(): array
|
||||
{
|
||||
$properties = $this->getProperties();
|
||||
|
||||
$data = array_filter([
|
||||
'cid' => $this->data[static::JSON_PROPERTY_COLLECTION] ?? null,
|
||||
'nid' => $this->data[static::JSON_PROPERTY_IDENTIFIER] ?? null,
|
||||
'created' => $this->data[static::JSON_PROPERTY_CREATED] ?? null,
|
||||
'modified' => $this->data[static::JSON_PROPERTY_MODIFIED] ?? null,
|
||||
'signature' => $this->data[static::JSON_PROPERTY_SIGNATURE] ?? null,
|
||||
'properties' => $properties ? $properties->toStore() : null,
|
||||
], static fn($value) => $value !== null);
|
||||
|
||||
return $data;
|
||||
}
|
||||
|
||||
public function getProperties(): EntityProperties {
|
||||
if (!isset($this->properties)) {
|
||||
$this->properties = new EntityProperties([]);
|
||||
}
|
||||
|
||||
return $this->properties;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,176 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\FileProviderLocal\Providers\Personal;
|
||||
|
||||
use DateTimeImmutable;
|
||||
use KTXF\Files\Node\INodeCollectionBase;
|
||||
use KTXF\Files\Node\INodeCollectionMutable;
|
||||
use KTXF\Files\Node\NodeType;
|
||||
|
||||
/**
|
||||
* NodeCollection implementation - represents a folder/collection in the file system
|
||||
*/
|
||||
class NodeCollection implements INodeCollectionBase, INodeCollectionMutable {
|
||||
|
||||
// node system properties
|
||||
private string|null $tenantId = null;
|
||||
private string|null $userId = null;
|
||||
private string|int|null $nodeIn = null;
|
||||
private string|int|null $nodeId = null;
|
||||
private string|null $nodeCreatedBy = null;
|
||||
private DateTimeImmutable|null $nodeCreatedOn = null;
|
||||
private string|null $nodeModifiedBy = null;
|
||||
private DateTimeImmutable|null $nodeModifiedOn = null;
|
||||
private string|null $nodeOwner = null;
|
||||
private string|null $nodeSignature = null;
|
||||
// node specific properties
|
||||
private string|null $nodeLabel = null;
|
||||
|
||||
public function jsonSerialize(): mixed {
|
||||
return [
|
||||
// node meta properties
|
||||
self::JSON_PROPERTY_TYPE => self::JSON_TYPE,
|
||||
self::JSON_PROPERTY_IN => $this->nodeIn,
|
||||
self::JSON_PROPERTY_ID => $this->nodeId,
|
||||
self::JSON_PROPERTY_CREATED_BY => $this->nodeCreatedBy,
|
||||
self::JSON_PROPERTY_CREATED_ON => $this->nodeCreatedOn?->format('c'),
|
||||
self::JSON_PROPERTY_MODIFIED_BY => $this->nodeModifiedBy,
|
||||
self::JSON_PROPERTY_MODIFIED_ON => $this->nodeModifiedOn?->format('c'),
|
||||
self::JSON_PROPERTY_OWNER => $this->nodeOwner,
|
||||
self::JSON_PROPERTY_SIGNATURE => $this->nodeSignature,
|
||||
// node specific properties
|
||||
self::JSON_PROPERTY_LABEL => $this->nodeLabel,
|
||||
];
|
||||
}
|
||||
|
||||
public function jsonDeserialize(array|string $data): static {
|
||||
if (is_string($data)) {
|
||||
$data = json_decode($data, true);
|
||||
}
|
||||
// node meta properties
|
||||
$this->nodeIn = $data[self::JSON_PROPERTY_IN] ?? null;
|
||||
$this->nodeId = $data[self::JSON_PROPERTY_ID] ?? null;
|
||||
$this->nodeCreatedBy = $data[self::JSON_PROPERTY_CREATED_BY] ?? null;
|
||||
$this->nodeCreatedOn = isset($data[self::JSON_PROPERTY_CREATED_ON])
|
||||
? new DateTimeImmutable($data[self::JSON_PROPERTY_CREATED_ON])
|
||||
: null;
|
||||
$this->nodeModifiedBy = $data[self::JSON_PROPERTY_MODIFIED_BY] ?? null;
|
||||
$this->nodeModifiedOn = isset($data[self::JSON_PROPERTY_MODIFIED_ON])
|
||||
? new DateTimeImmutable($data[self::JSON_PROPERTY_MODIFIED_ON])
|
||||
: null;
|
||||
$this->nodeOwner = $data[self::JSON_PROPERTY_OWNER] ?? null;
|
||||
$this->nodeSignature = $data[self::JSON_PROPERTY_SIGNATURE] ?? null;
|
||||
// node specific properties
|
||||
$this->nodeLabel = $data[self::JSON_PROPERTY_LABEL] ?? null;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function fromStore(array|object $document): self {
|
||||
if (is_object($document)) {
|
||||
$document = (array) $document;
|
||||
}
|
||||
// node system properties
|
||||
$this->tenantId = $document['tid'] ?? null;
|
||||
$this->userId = $document['uid'] ?? null;
|
||||
$this->nodeId = $document['nid'] ?? null;
|
||||
$this->nodeIn = $document['pid'] ?? null;
|
||||
$this->nodeCreatedBy = $document['createdBy'] ?? null;
|
||||
$this->nodeCreatedOn = isset($document['createdOn'])
|
||||
? new DateTimeImmutable($document['createdOn'])
|
||||
: null;
|
||||
$this->nodeModifiedBy = $document['modifiedBy'] ?? null;
|
||||
$this->nodeModifiedOn = isset($document['modifiedOn'])
|
||||
? new DateTimeImmutable($document['modifiedOn'])
|
||||
: null;
|
||||
$this->nodeOwner = $document['owner'] ?? null;
|
||||
$this->nodeSignature = $document['signature'] ?? md5(json_encode([
|
||||
$this->nodeId, NodeType::Collection->value, $document['modifiedOn'] ?? ''
|
||||
]));
|
||||
// node specific properties
|
||||
$this->nodeLabel = $document['label'] ?? null;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function toStore(): array {
|
||||
$now = date('c');
|
||||
return [
|
||||
// node system properties
|
||||
'tid' => $this->tenantId,
|
||||
'uid' => $this->userId,
|
||||
'nid' => $this->nodeId,
|
||||
'pid' => $this->nodeIn,
|
||||
'type' => NodeType::Collection->value,
|
||||
'createdBy' => $this->nodeCreatedBy,
|
||||
'createdOn' => $this->nodeCreatedOn?->format('c') ?? $now,
|
||||
'modifiedBy' => $this->nodeModifiedBy,
|
||||
'modifiedOn' => $this->nodeModifiedOn?->format('c') ?? $now,
|
||||
'owner' => $this->nodeOwner,
|
||||
'signature' => $this->nodeSignature,
|
||||
// node specific properties
|
||||
'label' => $this->nodeLabel,
|
||||
];
|
||||
}
|
||||
|
||||
// Immutable properties
|
||||
|
||||
public function in(): string|int|null {
|
||||
return $this->nodeIn;
|
||||
}
|
||||
|
||||
public function id(): string|int {
|
||||
return $this->nodeId ?? '';
|
||||
}
|
||||
|
||||
public function type(): NodeType {
|
||||
return NodeType::Collection;
|
||||
}
|
||||
|
||||
public function createdBy(): string|null {
|
||||
return $this->nodeCreatedBy;
|
||||
}
|
||||
|
||||
public function createdOn(): DateTimeImmutable|null {
|
||||
return $this->nodeCreatedOn;
|
||||
}
|
||||
|
||||
public function modifiedBy(): string|null {
|
||||
return $this->nodeModifiedBy;
|
||||
}
|
||||
|
||||
public function modifiedOn(): DateTimeImmutable|null {
|
||||
return $this->nodeModifiedOn;
|
||||
}
|
||||
|
||||
public function signature(): string|null {
|
||||
return $this->nodeSignature;
|
||||
}
|
||||
|
||||
public function isCollection(): bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
public function isEntity(): bool {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Mutable properties
|
||||
|
||||
public function getLabel(): string|null {
|
||||
return $this->nodeLabel;
|
||||
}
|
||||
|
||||
public function setLabel(string $value): static {
|
||||
$this->nodeLabel = $value;
|
||||
return $this;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,226 +0,0 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
/**
|
||||
* SPDX-FileCopyrightText: Sebastian Krupinski <krupinski01@gmail.com>
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\FileProviderLocal\Providers\Personal;
|
||||
|
||||
use DateTimeImmutable;
|
||||
use KTXF\Files\Node\INodeEntityBase;
|
||||
use KTXF\Files\Node\INodeEntityMutable;
|
||||
use KTXF\Files\Node\NodeType;
|
||||
|
||||
/**
|
||||
* NodeEntity implementation - represents a file/entity in the file system
|
||||
*/
|
||||
class NodeEntity implements INodeEntityBase, INodeEntityMutable {
|
||||
|
||||
// node system properties
|
||||
private string|null $tenantId = null;
|
||||
private string|null $userId = null;
|
||||
private string|int|null $nodeIn = null;
|
||||
private string|int|null $nodeId = null;
|
||||
private string|null $nodeCreatedBy = null;
|
||||
private DateTimeImmutable|null $nodeCreatedOn = null;
|
||||
private string|null $nodeModifiedBy = null;
|
||||
private DateTimeImmutable|null $nodeModifiedOn = null;
|
||||
private string|null $nodeOwner = null;
|
||||
private string|null $nodeSignature = null;
|
||||
// node specific properties
|
||||
private string|null $nodeLabel = null;
|
||||
private string|null $nodeMime = null;
|
||||
private string|null $nodeFormat = null;
|
||||
private string|null $nodeEncoding = null;
|
||||
private int $nodeSize = 0;
|
||||
|
||||
public function jsonSerialize(): mixed {
|
||||
return [
|
||||
// node meta properties
|
||||
self::JSON_PROPERTY_TYPE => self::JSON_TYPE,
|
||||
self::JSON_PROPERTY_IN => $this->nodeIn,
|
||||
self::JSON_PROPERTY_ID => $this->nodeId,
|
||||
self::JSON_PROPERTY_CREATED_BY => $this->nodeCreatedBy,
|
||||
self::JSON_PROPERTY_CREATED_ON => $this->nodeCreatedOn?->format('c'),
|
||||
self::JSON_PROPERTY_MODIFIED_BY => $this->nodeModifiedBy,
|
||||
self::JSON_PROPERTY_MODIFIED_ON => $this->nodeModifiedOn?->format('c'),
|
||||
self::JSON_PROPERTY_OWNER => $this->nodeOwner,
|
||||
self::JSON_PROPERTY_SIGNATURE => $this->nodeSignature,
|
||||
self::JSON_PROPERTY_SIZE => $this->nodeSize,
|
||||
// node specific properties
|
||||
self::JSON_PROPERTY_LABEL => $this->nodeLabel,
|
||||
self::JSON_PROPERTY_MIME => $this->nodeMime,
|
||||
self::JSON_PROPERTY_FORMAT => $this->nodeFormat,
|
||||
self::JSON_PROPERTY_ENCODING => $this->nodeEncoding,
|
||||
];
|
||||
}
|
||||
|
||||
public function jsonDeserialize(array|string $data): static {
|
||||
if (is_string($data)) {
|
||||
$data = json_decode($data, true);
|
||||
}
|
||||
// node meta properties
|
||||
$this->nodeIn = $data[self::JSON_PROPERTY_IN] ?? null;
|
||||
$this->nodeId = $data[self::JSON_PROPERTY_ID] ?? null;
|
||||
$this->nodeCreatedBy = $data[self::JSON_PROPERTY_CREATED_BY] ?? null;
|
||||
$this->nodeCreatedOn = isset($data[self::JSON_PROPERTY_CREATED_ON])
|
||||
? new DateTimeImmutable($data[self::JSON_PROPERTY_CREATED_ON])
|
||||
: null;
|
||||
$this->nodeModifiedBy = $data[self::JSON_PROPERTY_MODIFIED_BY] ?? null;
|
||||
$this->nodeModifiedOn = isset($data[self::JSON_PROPERTY_MODIFIED_ON])
|
||||
? new DateTimeImmutable($data[self::JSON_PROPERTY_MODIFIED_ON])
|
||||
: null;
|
||||
$this->nodeOwner = $data[self::JSON_PROPERTY_OWNER] ?? null;
|
||||
$this->nodeSignature = $data[self::JSON_PROPERTY_SIGNATURE] ?? null;
|
||||
$this->nodeSize = $data[self::JSON_PROPERTY_SIZE] ?? 0;
|
||||
// node specific properties
|
||||
$this->nodeLabel = $data[self::JSON_PROPERTY_LABEL] ?? null;
|
||||
$this->nodeMime = $data[self::JSON_PROPERTY_MIME] ?? null;
|
||||
$this->nodeFormat = $data[self::JSON_PROPERTY_FORMAT] ?? null;
|
||||
$this->nodeEncoding = $data[self::JSON_PROPERTY_ENCODING] ?? null;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function fromStore(array|object $document): self {
|
||||
if (is_object($document)) {
|
||||
$document = (array) $document;
|
||||
}
|
||||
// node system properties
|
||||
$this->tenantId = $document['tid'] ?? null;
|
||||
$this->userId = $document['uid'] ?? null;
|
||||
$this->nodeId = $document['nid'] ?? null;
|
||||
$this->nodeIn = $document['pid'] ?? null;
|
||||
$this->nodeCreatedBy = $document['createdBy'] ?? null;
|
||||
$this->nodeCreatedOn = isset($document['createdOn'])
|
||||
? new DateTimeImmutable($document['createdOn'])
|
||||
: null;
|
||||
$this->nodeModifiedBy = $document['modifiedBy'] ?? null;
|
||||
$this->nodeModifiedOn = isset($document['modifiedOn'])
|
||||
? new DateTimeImmutable($document['modifiedOn'])
|
||||
: null;
|
||||
$this->nodeOwner = $document['owner'] ?? null;
|
||||
$this->nodeSignature = $document['signature'] ?? md5(json_encode([
|
||||
$this->nodeId, NodeType::Entity->value, $document['modifiedOn'] ?? ''
|
||||
]));
|
||||
$this->nodeSize = $document['size'] ?? 0;
|
||||
// node specific properties
|
||||
$this->nodeLabel = $document['label'] ?? null;
|
||||
$this->nodeMime = $document['mime'] ?? null;
|
||||
$this->nodeFormat = $document['format'] ?? null;
|
||||
$this->nodeEncoding = $document['encoding'] ?? null;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function toStore(): array {
|
||||
$now = date('c');
|
||||
return [
|
||||
// node system properties
|
||||
'tid' => $this->tenantId,
|
||||
'uid' => $this->userId,
|
||||
'nid' => $this->nodeId,
|
||||
'pid' => $this->nodeIn,
|
||||
'type' => NodeType::Entity->value,
|
||||
'createdBy' => $this->nodeCreatedBy,
|
||||
'createdOn' => $this->nodeCreatedOn?->format('c') ?? $now,
|
||||
'modifiedBy' => $this->nodeModifiedBy,
|
||||
'modifiedOn' => $this->nodeModifiedOn?->format('c') ?? $now,
|
||||
'owner' => $this->nodeOwner,
|
||||
'signature' => $this->nodeSignature,
|
||||
'size' => $this->nodeSize,
|
||||
// node specific properties
|
||||
'label' => $this->nodeLabel,
|
||||
'mime' => $this->nodeMime,
|
||||
'format' => $this->nodeFormat,
|
||||
'encoding' => $this->nodeEncoding,
|
||||
];
|
||||
}
|
||||
|
||||
// Immutable properties
|
||||
|
||||
public function in(): string|int|null {
|
||||
return $this->nodeIn;
|
||||
}
|
||||
|
||||
public function id(): string|int {
|
||||
return $this->nodeId ?? '';
|
||||
}
|
||||
|
||||
public function type(): NodeType {
|
||||
return NodeType::Entity;
|
||||
}
|
||||
|
||||
public function createdBy(): string|null {
|
||||
return $this->nodeCreatedBy;
|
||||
}
|
||||
|
||||
public function createdOn(): DateTimeImmutable|null {
|
||||
return $this->nodeCreatedOn;
|
||||
}
|
||||
|
||||
public function modifiedBy(): string|null {
|
||||
return $this->nodeModifiedBy;
|
||||
}
|
||||
|
||||
public function modifiedOn(): DateTimeImmutable|null {
|
||||
return $this->nodeModifiedOn;
|
||||
}
|
||||
|
||||
public function signature(): string|null {
|
||||
return $this->nodeSignature;
|
||||
}
|
||||
|
||||
public function size(): int {
|
||||
return $this->nodeSize;
|
||||
}
|
||||
|
||||
public function isCollection(): bool {
|
||||
return false;
|
||||
}
|
||||
|
||||
public function isEntity(): bool {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Mutable properties
|
||||
|
||||
public function getLabel(): string|null {
|
||||
return $this->nodeLabel;
|
||||
}
|
||||
|
||||
public function setLabel(string $value): static {
|
||||
$this->nodeLabel = $value;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getMime(): string|null {
|
||||
return $this->nodeMime;
|
||||
}
|
||||
|
||||
public function setMime(string $value): static {
|
||||
$this->nodeMime = $value;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getFormat(): string|null {
|
||||
return $this->nodeFormat;
|
||||
}
|
||||
|
||||
public function setFormat(string $value): static {
|
||||
$this->nodeFormat = $value;
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getEncoding(): string|null {
|
||||
return $this->nodeEncoding;
|
||||
}
|
||||
|
||||
public function setEncoding(string $value): static {
|
||||
$this->nodeEncoding = $value;
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -7,20 +7,21 @@ declare(strict_types=1);
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\FileProviderLocal\Providers;
|
||||
namespace KTXM\ProviderLocalDocuments\Providers;
|
||||
|
||||
use DI\Attribute\Inject;
|
||||
use Psr\Container\ContainerInterface;
|
||||
use KTXF\Files\Provider\IProviderBase;
|
||||
use KTXF\Files\Service\IServiceBase;
|
||||
use KTXF\Resource\Provider\ProviderInterface;
|
||||
use KTXM\FileProviderLocal\Providers\Personal\PersonalService;
|
||||
use KTXF\Resource\Documents\Provider\ProviderBaseInterface;
|
||||
use KTXF\Resource\Documents\Service\ServiceBaseInterface;
|
||||
use KTXM\ProviderLocalDocuments\Module;
|
||||
use KTXM\ProviderLocalDocuments\Providers\Personal\PersonalService;
|
||||
|
||||
class Provider implements IProviderBase, ProviderInterface {
|
||||
class Provider implements ProviderBaseInterface {
|
||||
|
||||
protected const PROVIDER_ID = 'default';
|
||||
protected const PROVIDER_LABEL = 'Default File Provider';
|
||||
protected const PROVIDER_DESCRIPTION = 'Provides local file storage';
|
||||
public const JSON_TYPE = ProviderBaseInterface::JSON_TYPE;
|
||||
public const PROVIDER_IDENTIFIER = 'default';
|
||||
protected const PROVIDER_LABEL = Module::MODULE_LABEL;
|
||||
protected const PROVIDER_DESCRIPTION = Module::MODULE_DESCRIPTION;
|
||||
protected const PROVIDER_ICON = 'folder';
|
||||
|
||||
protected string $storeLocation = '/tmp/ktrix';
|
||||
@@ -30,8 +31,6 @@ class Provider implements IProviderBase, ProviderInterface {
|
||||
self::CAPABILITY_SERVICE_FETCH => true,
|
||||
self::CAPABILITY_SERVICE_EXTANT => true,
|
||||
];
|
||||
private ?array $servicesCache = [];
|
||||
|
||||
public function __construct(
|
||||
private readonly ContainerInterface $container,
|
||||
#[Inject('rootDir')] private readonly string $rootDir,
|
||||
@@ -39,176 +38,94 @@ class Provider implements IProviderBase, ProviderInterface {
|
||||
$this->storeLocation = $this->rootDir . '/storage/';
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function type(): string {
|
||||
return ProviderInterface::TYPE_FILES;
|
||||
}
|
||||
public function jsonSerialize(): array
|
||||
{
|
||||
return [
|
||||
self::JSON_PROPERTY_TYPE => self::JSON_TYPE,
|
||||
self::JSON_PROPERTY_IDENTIFIER => self::PROVIDER_IDENTIFIER,
|
||||
self::JSON_PROPERTY_LABEL => self::PROVIDER_LABEL,
|
||||
self::JSON_PROPERTY_CAPABILITIES => $this->providerAbilities,
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function identifier(): string {
|
||||
return self::PROVIDER_ID;
|
||||
}
|
||||
public function jsonDeserialize(array|string $data): static
|
||||
{
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function description(): string {
|
||||
return self::PROVIDER_DESCRIPTION;
|
||||
}
|
||||
public function type(): string
|
||||
{
|
||||
return self::TYPE_CHRONO;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function icon(): string {
|
||||
return self::PROVIDER_ICON;
|
||||
}
|
||||
public function identifier(): string
|
||||
{
|
||||
return self::PROVIDER_IDENTIFIER;
|
||||
}
|
||||
|
||||
public function jsonSerialize(): mixed {
|
||||
return $this->toJson();
|
||||
}
|
||||
public function label(): string
|
||||
{
|
||||
return self::PROVIDER_LABEL;
|
||||
}
|
||||
|
||||
public function toJson(): array {
|
||||
return [
|
||||
self::JSON_PROPERTY_TYPE => self::JSON_TYPE,
|
||||
self::JSON_PROPERTY_ID => self::PROVIDER_ID,
|
||||
self::JSON_PROPERTY_LABEL => self::PROVIDER_LABEL,
|
||||
self::JSON_PROPERTY_CAPABILITIES => $this->providerAbilities,
|
||||
];
|
||||
}
|
||||
public function description(): string
|
||||
{
|
||||
return self::PROVIDER_DESCRIPTION;
|
||||
}
|
||||
|
||||
/**
|
||||
* Confirms if specific capability is supported
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function capable(string $value): bool {
|
||||
if (isset($this->providerAbilities[$value])) {
|
||||
return (bool)$this->providerAbilities[$value];
|
||||
}
|
||||
return false;
|
||||
}
|
||||
public function icon(): string
|
||||
{
|
||||
return self::PROVIDER_ICON;
|
||||
}
|
||||
|
||||
/**
|
||||
* Lists all supported capabilities
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function capabilities(): array {
|
||||
return $this->providerAbilities;
|
||||
}
|
||||
public function capable(string $value): bool
|
||||
{
|
||||
return !empty($this->providerAbilities[$value]);
|
||||
}
|
||||
|
||||
/**
|
||||
* An arbitrary unique text string identifying this provider
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function id(): string {
|
||||
return self::PROVIDER_ID;
|
||||
}
|
||||
public function capabilities(): array
|
||||
{
|
||||
return $this->providerAbilities;
|
||||
}
|
||||
|
||||
/**
|
||||
* The localized human friendly name of this provider
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function label(): string {
|
||||
return self::PROVIDER_LABEL;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve collection of services for a specific user
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function serviceList(string $tenantId, string $userId, array $filter = []): array {
|
||||
// if no filter is provided, return all services
|
||||
if ($filter === []) {
|
||||
$filter = ['personal', 'shared'];
|
||||
}
|
||||
// check if services are cached
|
||||
if (in_array('personal', $filter, true) && !isset($this->servicesCache[$userId]['personal'])) {
|
||||
$this->servicesCache[$userId]['personal'] = $this->serviceInstancePersonal($tenantId, $userId);
|
||||
}
|
||||
/*
|
||||
if (in_array('shared', $filter, true) && !isset($this->servicesCache[$userId]['shared'])) {
|
||||
$this->servicesCache[$userId]['shared'] = $this->serviceInstanceShared($tenantId, $userId);
|
||||
}
|
||||
*/
|
||||
// return requested services
|
||||
return array_intersect_key($this->servicesCache[$userId],array_flip($filter));
|
||||
}
|
||||
|
||||
/**
|
||||
* construct service object instance
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @return PersonalService blank service instance
|
||||
*/
|
||||
protected function serviceInstancePersonal(string $tenantId, string $userId): PersonalService {
|
||||
$service = $this->container->get(PersonalService::class);
|
||||
$service->init($tenantId, $userId, $this->storeLocation . "$tenantId/$userId");
|
||||
$service->initialize($tenantId, $userId, $this->storeLocation . "$tenantId/$userId");
|
||||
return $service;
|
||||
}
|
||||
|
||||
/**
|
||||
* Determine if any services are configured for a specific user
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function serviceList(string $tenantId, string $userId, array $filter = []): array {
|
||||
// if no filter is provided, return all services
|
||||
if ($filter === []) {
|
||||
$filter = ['personal'];
|
||||
}
|
||||
// build services list
|
||||
$services = [];
|
||||
if (in_array('personal', $filter, true)) {
|
||||
$services['personal'] = $this->serviceInstancePersonal($tenantId, $userId);
|
||||
}
|
||||
return $services;
|
||||
}
|
||||
|
||||
public function serviceFetch(string $tenantId, string $userId, string|int $identifier): ?ServiceBaseInterface {
|
||||
|
||||
if ($identifier === 'personal') {
|
||||
return $this->serviceInstancePersonal($tenantId, $userId);
|
||||
}
|
||||
|
||||
return null;
|
||||
|
||||
}
|
||||
|
||||
public function serviceExtant(string $tenantId, string $userId, int|string ...$identifiers): array {
|
||||
$data = [];
|
||||
foreach ($identifiers as $id) {
|
||||
$data[$id] = match ($id) {
|
||||
'personal' => true,
|
||||
//'shared' => true,
|
||||
default => false,
|
||||
};
|
||||
}
|
||||
return $data;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve a service with a specific identifier
|
||||
*
|
||||
* @since 1.0.0
|
||||
*
|
||||
* @inheritdoc
|
||||
*/
|
||||
public function serviceFetch(string $tenantId, string $userId, string|int $identifier): ?IServiceBase {
|
||||
|
||||
// check if services are cached
|
||||
if (isset($this->servicesCache[$userId][$identifier])) {
|
||||
return $this->servicesCache[$userId][$identifier];
|
||||
}
|
||||
// convert to service object
|
||||
if ($identifier === 'personal') {
|
||||
$this->servicesCache[$userId][$identifier] = $this->serviceInstancePersonal($tenantId, $userId);
|
||||
}
|
||||
/*
|
||||
if ($identifier === 'shared') {
|
||||
$this->servicesCache[$userId][$identifier] = $this->serviceInstanceShared($tenantId, $userId);
|
||||
}
|
||||
*/
|
||||
|
||||
return $this->servicesCache[$userId][$identifier];
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user