-
-
Notifications
You must be signed in to change notification settings - Fork 898
/
Copy pathdeclare-a-resource.php
57 lines (51 loc) · 1.93 KB
/
declare-a-resource.php
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
// ---
// slug: declare-a-resource
// name: Declare a Resource
// position: 1
// executable: true
// tags: design
// ---
// This class represents an API resource
namespace App\ApiResource {
// The `#[ApiResource]` attribute registers this class as an HTTP resource.
use ApiPlatform\Metadata\ApiResource;
// These are the list of HTTP operations we use to declare a "CRUD" (Create, Read, Update, Delete).
use ApiPlatform\Metadata\Delete;
use ApiPlatform\Metadata\Get;
use ApiPlatform\Metadata\GetCollection;
use ApiPlatform\Metadata\Patch;
use ApiPlatform\Metadata\Post;
use ApiPlatform\Validator\Exception\ValidationException;
// Each resource has its set of Operations.
// Note that the uriTemplate may use the `id` variable which is our unique
// identifier on this `Book`.
#[ApiResource(
operations: [
new Get(uriTemplate: '/books/{id}'),
// The GetCollection operation returns a list of Books.
new GetCollection(uriTemplate: '/books'),
new Post(uriTemplate: '/books'),
new Patch(uriTemplate: '/books/{id}'),
new Delete(uriTemplate: '/books/{id}'),
],
// This is a configuration that is shared accross every operations. More details are available at [ApiResource::exceptionToStatus](/reference/Metadata/ApiResource#exceptionToStatus).
exceptionToStatus: [
ValidationException::class => 422,
]
)]
// If a property named `id` is found it is the property used in your URI template
// we recommend to use public properties to declare API resources.
class Book
{
public string $id;
}
}
// Check our next guide to [provide the resource state](/playground/provide-the-resource-state).
namespace App\Playground {
use Symfony\Component\HttpFoundation\Request;
function request(): Request
{
return Request::create('/docs', 'GET');
}
}