Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
88.89% covered (warning)
88.89%
8 / 9
80.00% covered (warning)
80.00%
4 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
Base64Stream
88.89% covered (warning)
88.89%
8 / 9
80.00% covered (warning)
80.00%
4 / 5
5.03
0.00% covered (danger)
0.00%
0 / 1
 getRegularExpression
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 convert
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 createRandom
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 decode
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getSchema
100.00% covered (success)
100.00%
5 / 5
100.00% covered (success)
100.00%
1 / 1
1
1<?php
2namespace Apie\Core\ValueObjects;
3
4use Apie\Core\Attributes\CmsSingleInput;
5use Apie\Core\Attributes\FakeMethod;
6use Apie\Core\Attributes\SchemaMethod;
7use Apie\Core\Dto\CmsInputOption;
8use Apie\Core\Enums\FileStreamType;
9use Apie\Core\RegexUtils;
10use Apie\Core\ValueObjects\Interfaces\HasRegexValueObjectInterface;
11use Faker\Generator;
12
13#[SchemaMethod("getSchema")]
14#[FakeMethod('createRandom')]
15#[CmsSingleInput(['stream', 'file'], new CmsInputOption(streamType: FileStreamType::Base64String))]
16final class Base64Stream implements HasRegexValueObjectInterface
17{
18    use IsStringWithRegexValueObject;
19
20    public static function getRegularExpression(): string
21    {
22        return '#^(?:[A-Za-z0-9+/]{4})*(?:[A-Za-z0-9+/]{2}==|[A-Za-z0-9+/]{3}=)?$#';
23    }
24
25    protected function convert(string $input): string
26    {
27        return preg_replace('/\s/s', '', $input);
28    }
29
30    public static function createRandom(Generator $generator): self
31    {
32        return new self(base64_encode($generator->text()));
33    }
34
35    public function decode(): BinaryStream
36    {
37        return new BinaryStream(base64_decode($this->internal));
38    }
39
40    /**
41     * @return array<string, string>
42     */
43    public static function getSchema(): array
44    {
45        return [
46            'type' => 'string',
47            'format' => 'base64',
48            'pattern' => RegexUtils::removeDelimiters(self::getRegularExpression()),
49        ];
50    }
51}