-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathAllowedCachedPostRequest.php
More file actions
57 lines (47 loc) · 1.32 KB
/
AllowedCachedPostRequest.php
File metadata and controls
57 lines (47 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?php
declare(strict_types=1);
namespace Saloon\CachePlugin\Tests\Fixtures\Requests;
use Saloon\Enums\Method;
use Saloon\Http\Request;
use Saloon\Http\Response;
use League\Flysystem\Filesystem;
use Saloon\Contracts\Body\HasBody;
use Saloon\Traits\Body\HasJsonBody;
use Saloon\CachePlugin\Contracts\Driver;
use Saloon\CachePlugin\Traits\HasCaching;
use Saloon\CachePlugin\Contracts\Cacheable;
use Saloon\CachePlugin\Drivers\FlysystemDriver;
use League\Flysystem\Local\LocalFilesystemAdapter;
class AllowedCachedPostRequest extends Request implements Cacheable, HasBody
{
use HasCaching;
use HasJsonBody;
protected Method $method = Method::POST;
public function resolveEndpoint(): string
{
return '/data';
}
public function defaultData(): array
{
return [
'name' => 'Sammy',
];
}
public function resolveCacheDriver(): Driver
{
return new FlysystemDriver(new Filesystem(new LocalFilesystemAdapter(cachePath())));
}
public function resolveCacheExpiry(Response $response): int
{
return 60;
}
/**
* Define the cacheable methods that can be used
*
* @return array<\Saloon\Enums\Method>
*/
protected function getCacheableMethods(): array
{
return [Method::GET, Method::OPTIONS, Method::POST];
}
}