appwrite/src/Appwrite/Utopia/Response/Model/File.php

103 lines
3.1 KiB
PHP
Raw Normal View History

2020-06-23 15:01:20 +00:00
<?php
namespace Appwrite\Utopia\Response\Model;
use Appwrite\Utopia\Response;
use Appwrite\Utopia\Response\Model;
class File extends Model
{
public function __construct()
{
$this
->addRule('$id', [
2020-11-07 22:14:48 +00:00
'type' => self::TYPE_STRING,
'description' => 'File ID.',
2021-01-13 15:06:36 +00:00
'default' => '',
'example' => '5e5ea5c16897e',
])
2021-10-21 09:41:05 +00:00
->addRule('bucketId', [
'type' => self::TYPE_STRING,
'description' => 'Bucket ID.',
'default' => '',
'example' => '5e5ea5c16897e',
])
->addRule('$createdAt', [
2022-07-04 09:55:11 +00:00
'type' => self::TYPE_DATETIME,
2022-09-04 21:26:16 +00:00
'description' => 'File creation date in ISO 8601 format.',
2022-07-04 09:55:11 +00:00
'default' => '',
2022-08-14 10:27:07 +00:00
'example' => self::TYPE_DATETIME_EXAMPLE,
])
->addRule('$updatedAt', [
2022-07-04 09:55:11 +00:00
'type' => self::TYPE_DATETIME,
2022-09-04 21:26:16 +00:00
'description' => 'File update date in ISO 8601 format.',
2022-07-04 09:55:11 +00:00
'default' => '',
2022-08-14 10:27:07 +00:00
'example' => self::TYPE_DATETIME_EXAMPLE,
])
->addRule('$permissions', [
2021-05-03 22:20:40 +00:00
'type' => self::TYPE_STRING,
2023-10-13 13:43:44 +00:00
'description' => 'File permissions. [Learn more about permissions](https://appwrite.io/docs/permissions).',
2021-05-03 22:20:40 +00:00
'default' => [],
2022-08-14 10:33:36 +00:00
'example' => ['read("any")'],
2021-05-03 22:20:40 +00:00
'array' => true,
])
->addRule('name', [
2020-11-07 22:14:48 +00:00
'type' => self::TYPE_STRING,
'description' => 'File name.',
2021-01-13 15:06:36 +00:00
'default' => '',
'example' => 'Pink.png',
])
->addRule('signature', [
2020-11-07 22:14:48 +00:00
'type' => self::TYPE_STRING,
'description' => 'File MD5 signature.',
2021-01-13 15:06:36 +00:00
'default' => '',
'example' => '5d529fd02b544198ae075bd57c1762bb',
])
->addRule('mimeType', [
2020-11-07 22:14:48 +00:00
'type' => self::TYPE_STRING,
'description' => 'File mime type.',
2021-01-13 15:06:36 +00:00
'default' => '',
'example' => 'image/png',
])
->addRule('sizeOriginal', [
2020-11-07 22:14:48 +00:00
'type' => self::TYPE_INTEGER,
'description' => 'File original size in bytes.',
2021-01-13 16:10:42 +00:00
'default' => 0,
'example' => 17890,
])
->addRule('chunksTotal', [
2021-07-07 10:07:11 +00:00
'type' => self::TYPE_INTEGER,
'description' => 'Total number of chunks available',
'default' => 0,
'example' => 17890,
])
->addRule('chunksUploaded', [
2021-07-07 10:07:11 +00:00
'type' => self::TYPE_INTEGER,
'description' => 'Total number of chunks uploaded',
'default' => 0,
'example' => 17890,
])
;
2020-06-23 15:01:20 +00:00
}
/**
* Get Name
*
2020-06-23 15:01:20 +00:00
* @return string
*/
2022-05-23 14:54:50 +00:00
public function getName(): string
2020-06-23 15:01:20 +00:00
{
return 'File';
}
/**
2021-12-15 10:19:29 +00:00
* Get Type
*
2020-06-23 15:01:20 +00:00
* @return string
*/
2022-05-23 14:54:50 +00:00
public function getType(): string
2020-06-23 15:01:20 +00:00
{
return Response::MODEL_FILE;
2020-06-23 15:01:20 +00:00
}
}