createdBy = new NullAccount(); $this->createdAt = new \DateTimeImmutable(); } /** * @return int * * @since 1.0.0 */ public function getId() : int { return $this->id; } /** * Encrypt the media file * * @param string $password Password to encrypt the file with * @param null|string $outputPath Output path of the encryption (null = replace file) * * @return string * * @since 1.0.0 */ public function encrypt(string $password, string $outputPath = null) : string { return ''; } /** * Decrypt the media file * * @param string $password Password to encrypt the file with * @param null|string $outputPath Output path of the encryption (null = replace file) * * @return string * * @since 1.0.0 */ public function decrypt(string $password, string $outputPath = null) : string { return ''; } /** * Set encryption nonce * * @param null|string $nonce Nonce from encryption password * * @return void * * @since 1.0.0 */ public function setNonce(?string $nonce) : void { $this->nonce = $nonce; } /** * Is media file encrypted? * * @return bool * * @since 1.0.0 */ public function isEncrypted() : bool { return $this->nonce !== null; } /** * Set encryption password * * @param null|string $password Password * * @return void * * @since 1.0.0 */ public function setPassword(?string $password) : void { $temp = $password === null ? null : \password_hash($password, \PASSWORD_BCRYPT); $this->password = $temp === false ? null : $temp; } /** * Compare user password with password of the media file * * @param string $password User password * * @return bool * * @since 1.0.0 */ public function comparePassword(string $password) : bool { return \password_verify($password, $this->password ?? ''); } /** * Compare nonce with encryption nonce of the media file * * @param string $nonce User nonce * * @return bool * * @since 1.0.0 */ public function compareNonce(string $nonce) : bool { return $this->nonce === null ? false : \hash_equals($this->nonce, $nonce); } /** * Get the media path * * @return string * * @since 1.0.0 */ public function getPath() : string { return $this->isAbsolute ? $this->path : \ltrim($this->path, '\\/'); } /** * Get the absolute media path * * @return string * * @since 1.0.0 */ public function getAbsolutePath() : string { return $this->isAbsolute ? $this->path : __DIR__ . '/../../../' . \ltrim($this->path, '\\/'); } /** * @return string * * @since 1.0.0 */ public function getVirtualPath() : string { return $this->virtualPath; } /** * @param string $path $filepath * * @return void * * @since 1.0.0 */ public function setPath(string $path) : void { $this->path = \str_replace('\\', '/', $path); } /** * @param string $path $filepath * * @return void * * @since 1.0.0 */ public function setVirtualPath(string $path) : void { $this->virtualPath = \str_replace('\\', '/', $path); } /** * Adding new tag. * * @param Tag $tag Tag * * @return int * * @since 1.0.0 */ public function addTag(Tag $tag) : int { $this->tags[] = $tag; \end($this->tags); $key = (int) \key($this->tags); \reset($this->tags); return $key; } /** * Remove Tag from list. * * @param int $id Tag * * @return bool * * @since 1.0.0 */ public function removeTag($id) : bool { if (isset($this->tags[$id])) { unset($this->tags[$id]); return true; } return false; } /** * Get task elements. * * @return Tag[] * * @since 1.0.0 */ public function getTags() : array { return $this->tags; } /** * Get task elements. * * @param int $id Element id * * @return Tag * * @since 1.0.0 */ public function getTag(int $id) : Tag { return $this->tags[$id] ?? new NullTag(); } /** * {@inheritdoc} */ public function toArray() : array { return [ 'id' => $this->id, 'name' => $this->name, 'description' => $this->description, 'descriptionRaw' => $this->descriptionRaw, 'extension' => $this->extension, 'virtualpath' => $this->virtualPath, 'size' => $this->size, 'status' => $this->status, 'path' => $this->path, 'absolute' => $this->isAbsolute, 'createdBy' => $this->createdBy, 'createdAt' => $this->createdAt, ]; } /** * {@inheritdoc} */ public function jsonSerialize() : mixed { return $this->toArray(); } }