1
0
Fork 0
mirror of synced 2024-06-03 11:24:48 +12:00
appwrite/src/Appwrite/Utopia/Response/Model.php
2021-11-25 11:08:39 +01:00

139 lines
2.3 KiB
PHP

<?php
namespace Appwrite\Utopia\Response;
use Utopia\Database\Document;
abstract class Model
{
const TYPE_STRING = 'string';
const TYPE_INTEGER = 'integer';
const TYPE_FLOAT = 'double';
const TYPE_BOOLEAN = 'boolean';
const TYPE_JSON = 'json';
/**
* @var bool
*/
protected $none = false;
/**
* @var bool
*/
protected $any = false;
/**
* @var bool
*/
protected $public = true;
/**
* @var array
*/
protected $rules = [];
/**
* Filter Document Structure
*
* @return Document
*/
public function filter(Document $document): Document
{
return $document;
}
/**
* Get Name
*
* @return string
*/
abstract public function getName(): string;
/**
* Get Collection
*
* @return string
*/
abstract public function getType(): string;
/**
* Get Rules
*
* @return array
*/
public function getRules(): array
{
return $this->rules;
}
/**
* Add a New Rule
* If rule is an array of documents with varying models
*
* @param string $key
* @param array $options
*/
protected function addRule(string $key, array $options): self
{
$this->rules[$key] = array_merge([
'require' => true,
'type' => '',
'description' => '',
'default' => null,
'example' => '',
'array' => false
], $options);
return $this;
}
public function getRequired()
{
$list = [];
foreach ($this->rules as $key => $rule) {
if ($rule['require'] ?? false) {
$list[] = $key;
}
}
return $list;
}
/**
* Is None
*
* Use to check if response is empty
*
* @return bool
*/
public function isNone(): bool
{
return $this->none;
}
/**
* Is Any
*
* Use to check if response is a wildcard
*
* @return bool
*/
public function isAny(): bool
{
return $this->any;
}
/**
* Is Public
*
* Should this model be publicly available in docs and spec files?
*
* @return bool
*/
public function isPublic(): bool
{
return $this->public;
}
}