1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace CSlant\Blog\Api\Http\Actions\Post; |
4
|
|
|
|
5
|
|
|
use Botble\Base\Http\Responses\BaseHttpResponse; |
|
|
|
|
6
|
|
|
use CSlant\Blog\Api\Http\Resources\Post\ViewCountResource; |
7
|
|
|
use CSlant\Blog\Api\OpenApi\Schemas\Resources\Post\ViewCountResourceSchema; |
8
|
|
|
use CSlant\Blog\Api\Services\VisitorLogsService; |
9
|
|
|
use CSlant\Blog\Core\Http\Actions\Action; |
10
|
|
|
use Illuminate\Http\JsonResponse; |
11
|
|
|
use Illuminate\Http\RedirectResponse; |
12
|
|
|
use Illuminate\Http\Request; |
13
|
|
|
use Illuminate\Http\Resources\Json\JsonResource; |
14
|
|
|
use Illuminate\Support\Facades\DB; |
15
|
|
|
use OpenApi\Attributes\JsonContent; |
16
|
|
|
use OpenApi\Attributes\Parameter; |
17
|
|
|
use OpenApi\Attributes\Post; |
18
|
|
|
use OpenApi\Attributes\Property; |
19
|
|
|
use OpenApi\Attributes\Response; |
20
|
|
|
use OpenApi\Attributes\Schema; |
21
|
|
|
|
22
|
|
|
class PostStoreViewCountAction extends Action |
23
|
|
|
{ |
24
|
|
|
protected VisitorLogsService $visitorLogsService; |
25
|
|
|
|
26
|
|
|
public function __construct(VisitorLogsService $visitorLogsService) |
27
|
|
|
{ |
28
|
|
|
$this->visitorLogsService = $visitorLogsService; |
29
|
|
|
} |
30
|
|
|
|
31
|
|
|
#[ |
32
|
|
|
Post( |
33
|
|
|
path: "/posts/{id}/increment-views", |
34
|
|
|
operationId: "incrementViewCountPostById", |
35
|
|
|
description: "Increment views count of the post by ID. Only adds 1 view per IP in 1 hour.", |
36
|
|
|
summary: "Increment views count of the post by ID", |
37
|
|
|
tags: ["Post"], |
38
|
|
|
parameters: [ |
39
|
|
|
new Parameter( |
40
|
|
|
name: 'id', |
41
|
|
|
description: 'Post Id', |
42
|
|
|
in: 'path', |
43
|
|
|
required: true, |
44
|
|
|
schema: new Schema(type: 'integer', example: 1) |
45
|
|
|
), |
46
|
|
|
], |
47
|
|
|
responses: [ |
48
|
|
|
new Response( |
49
|
|
|
response: 200, |
50
|
|
|
description: "Success", |
51
|
|
|
content: new JsonContent( |
52
|
|
|
properties: [ |
53
|
|
|
new Property( |
54
|
|
|
property: 'error', |
55
|
|
|
description: 'Error status', |
56
|
|
|
type: 'boolean', |
57
|
|
|
default: false |
58
|
|
|
), |
59
|
|
|
new Property( |
60
|
|
|
property: "data", |
61
|
|
|
ref: ViewCountResourceSchema::class, |
62
|
|
|
description: "Updated view count data", |
63
|
|
|
type: "object", |
64
|
|
|
), |
65
|
|
|
] |
66
|
|
|
) |
67
|
|
|
), |
68
|
|
|
new Response( |
69
|
|
|
ref: \CSlant\Blog\Api\OpenApi\Responses\Errors\BadRequestResponseSchema::class, |
70
|
|
|
response: 400, |
71
|
|
|
), |
72
|
|
|
new Response( |
73
|
|
|
ref: \CSlant\Blog\Api\OpenApi\Responses\Errors\ErrorNotFoundResponseSchema::class, |
74
|
|
|
response: 404, |
75
|
|
|
), |
76
|
|
|
new Response( |
77
|
|
|
ref: \CSlant\Blog\Api\OpenApi\Responses\Errors\InternalServerResponseSchema::class, |
78
|
|
|
response: 500, |
79
|
|
|
), |
80
|
|
|
] |
81
|
|
|
) |
82
|
|
|
] |
83
|
|
|
public function __invoke(Request $request, int $id): BaseHttpResponse|JsonResponse|JsonResource|RedirectResponse |
84
|
|
|
{ |
85
|
|
|
$ipAddress = $request->header('X-Forwarded-For') ?? $request->ip(); |
86
|
|
|
$userAgent = $request->userAgent(); |
87
|
|
|
|
88
|
|
|
DB::beginTransaction(); |
89
|
|
|
|
90
|
|
|
try { |
91
|
|
|
$post = $this->visitorLogsService->trackPostView($id, $ipAddress, $userAgent); |
|
|
|
|
92
|
|
|
|
93
|
|
|
DB::commit(); |
94
|
|
|
|
95
|
|
|
return $this |
96
|
|
|
->httpResponse() |
97
|
|
|
->setData(new ViewCountResource($post)) |
98
|
|
|
->toApiResponse(); |
99
|
|
|
} catch (\Exception $e) { |
100
|
|
|
DB::rollBack(); |
101
|
|
|
|
102
|
|
|
return $this |
103
|
|
|
->httpResponse() |
104
|
|
|
->setStatusCode(500) |
105
|
|
|
->setData(['error' => true]) |
106
|
|
|
->toApiResponse(); |
107
|
|
|
} |
108
|
|
|
} |
109
|
|
|
} |
110
|
|
|
|
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths