| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- <?php
- declare(strict_types=1);
- namespace App\ApiResources\Core\File;
- use ApiPlatform\Metadata\ApiProperty;
- use ApiPlatform\Metadata\ApiResource;
- use ApiPlatform\Metadata\Post;
- use ApiPlatform\Metadata\Put;
- use App\Enum\Core\FileTypeEnum;
- use App\State\Processor\Core\UploadRequestProcessor;
- use App\State\Provider\Core\DownloadRequestProvider;
- use Ramsey\Uuid\Uuid;
- use Symfony\Component\Validator\Constraints as Assert;
- /**
- * A request to upload the given content to a File
- */
- #[ApiResource(
- operations: [
- new Post(
- uriTemplate: '/upload',
- requirements: ['id' => '\\d+'],
- security: 'is_granted("ROLE_FILE")',
- processor: UploadRequestProcessor::class
- )
- ]
- )]
- class UploadRequest
- {
- /**
- * @var int | null
- */
- #[ApiProperty(identifier: true)]
- private ?int $fileId = null;
- /**
- * Le nom du fichier
- * @var string
- */
- private string $filename;
- /**
- * Le contenu du fichier uploadé encodé au format Base64
- * @var string
- */
- private string $content;
- /**
- * Si vrai, le propriétaire du fichier ne sera pas l'utilisateur en cours, mais l'organisation à laquelle il
- * appartient.
- * @var bool
- */
- private bool $organizationOwned = false;
- /**
- * Le type de fichier uploadé, si connu
- * @var string
- */
- #[Assert\Choice(callback: [FileTypeEnum::class, 'toArray'])]
- private string $type = "NONE";
- /**
- * Visibilité du fichier
- * @var string
- */
- private string $visibility = 'NOBODY';
- /**
- * Type mime (il sera déduit automatiquement du nom du fichier s'il n'est pas fourni ici)
- * @var string|null
- */
- private ?string $mimeType = null;
- /**
- * Configuration du fichier (par exemple le cropping d'une image)
- * @var string
- */
- private ?string $config = null;
- public function __construct()
- {
- $this->type = FileTypeEnum::NONE()->getValue();
- }
- /**
- * @return int
- */
- public function getFileId() : int
- {
- return $this->fileId;
- }
- /**
- * @param int $id
- * @return self
- */
- public function setFileId(int $id) : self
- {
- $this->fileId = $id;
- return $this;
- }
- /**
- * @return string
- */
- public function getContent(): string
- {
- return $this->content;
- }
- /**
- * @param string $content
- * @return void
- */
- public function setContent(string $content): void
- {
- $this->content = $content;
- }
- /**
- * @return bool
- */
- public function isOrganizationOwned(): bool
- {
- return $this->organizationOwned;
- }
- /**
- * @param bool $organizationOwned
- * @return self
- */
- public function setOrganizationOwned(bool $organizationOwned): self
- {
- $this->organizationOwned = $organizationOwned;
- return $this;
- }
- /**
- * @return string
- */
- public function getFilename(): string
- {
- return $this->filename;
- }
- /**
- * @param string $filename
- * @return self
- */
- public function setFilename(string $filename): self
- {
- $this->filename = $filename;
- return $this;
- }
- /**
- * @return string
- */
- public function getType(): string
- {
- return $this->type;
- }
- /**
- * @param string $type
- * @return self
- */
- public function setType(string $type): self
- {
- $this->type = $type;
- return $this;
- }
- /**
- * @return string
- */
- public function getVisibility(): string
- {
- return $this->visibility;
- }
- /**
- * @param string $visibility
- * @return self
- */
- public function setVisibility(string $visibility): self
- {
- $this->visibility = $visibility;
- return $this;
- }
- /**
- * @return string|null
- */
- public function getMimeType(): ?string
- {
- return $this->mimeType;
- }
- /**
- * @param string|null $mimeType
- * @return self
- */
- public function setMimeType(?string $mimeType): self
- {
- $this->mimeType = $mimeType;
- return $this;
- }
- /**
- * @return string|null
- */
- public function getConfig(): ?string
- {
- return $this->config;
- }
- /**
- * @param string|null $config
- * @return self
- */
- public function setConfig(?string $config): self
- {
- $this->config = $config;
- return $this;
- }
- }
|