Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(database): add UploadCaster class #775

Draft
wants to merge 8 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions src/Tempest/Database/src/Casters/UploadCaster.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?php

declare(strict_types=1);

namespace Tempest\Database\Casters;

use function filesize;
use Laminas\Diactoros\UploadedFile;
use Tempest\Http\Upload;
use Tempest\Mapper\Caster;
use const UPLOAD_ERR_OK;

final readonly class UploadCaster implements Caster
{
public function cast(mixed $input): Upload
{
if ($input instanceof Upload) {
return $input;
}

return new Upload(new UploadedFile($input, filesize($input), UPLOAD_ERR_OK));
}
}
8 changes: 7 additions & 1 deletion src/Tempest/Http/src/Upload.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@

use Psr\Http\Message\StreamInterface;
use Psr\Http\Message\UploadedFileInterface;
use Stringable;

final readonly class Upload
final readonly class Upload implements Stringable
{
public function __construct(
private UploadedFileInterface $uploadedFile,
Expand Down Expand Up @@ -43,4 +44,9 @@ public function getClientMediaType(): ?string
{
return $this->uploadedFile->getClientMediaType();
}

public function __toString(): string
{
return (string) $this->getClientFilename();
}
}
Loading