Files
speedtest-tracker/app/OpenApi/Annotations/V1/SpeedtestAnnotations.php
T
Alex Justesen 4abbfe40fe API requires accept json header (#2333)
Co-authored-by: Alex Justesen <1144087+alexjustesen@users.noreply.github.com>
Co-authored-by: GitHub Action <actions@github.com>
2025-09-14 10:51:24 -04:00

98 lines
3.5 KiB
PHP

<?php
namespace App\OpenApi\Annotations\V1;
use Illuminate\Http\Response;
use OpenApi\Attributes as OA;
#[OA\Tag(
name: 'Speedtests',
description: 'Endpoints for running speedtests and listing servers.'
)]
class SpeedtestAnnotations
{
#[OA\Post(
path: '/api/v1/speedtests/run',
summary: 'Run a new Ookla speedtest',
operationId: 'runSpeedtest',
tags: ['Speedtests'],
parameters: [
new OA\Parameter(ref: '#/components/parameters/AcceptHeader'),
new OA\Parameter(
name: 'server_id',
in: 'query',
description: 'Optional Ookla speedtest server ID',
required: false,
schema: new OA\Schema(type: 'integer')
),
],
responses: [
new OA\Response(
response: Response::HTTP_CREATED,
description: 'Created',
content: new OA\JsonContent(ref: '#/components/schemas/SpeedtestRun')
),
new OA\Response(
response: Response::HTTP_UNAUTHORIZED,
description: 'Unauthenticated',
content: new OA\JsonContent(ref: '#/components/schemas/UnauthenticatedError')
),
new OA\Response(
response: Response::HTTP_FORBIDDEN,
description: 'Forbidden',
content: new OA\JsonContent(ref: '#/components/schemas/ForbiddenError')
),
new OA\Response(
response: Response::HTTP_NOT_ACCEPTABLE,
description: 'Not Acceptable - Missing or invalid Accept header',
content: new OA\JsonContent(ref: '#/components/schemas/NotAcceptableError')
),
new OA\Response(
response: Response::HTTP_UNPROCESSABLE_ENTITY,
description: 'Validation error',
content: new OA\JsonContent(ref: '#/components/schemas/ValidationError')
),
]
)]
public function run(): void
{
// Annotation placeholder for runSpeedtest
}
#[OA\Get(
path: '/api/v1/speedtests/list-servers',
summary: 'List available Ookla speedtest servers',
operationId: 'listSpeedtestServers',
tags: ['Speedtests'],
parameters: [
new OA\Parameter(ref: '#/components/parameters/AcceptHeader'),
],
responses: [
new OA\Response(
response: Response::HTTP_OK,
description: 'OK',
content: new OA\JsonContent(ref: '#/components/schemas/ServersCollection')
),
new OA\Response(
response: Response::HTTP_UNAUTHORIZED,
description: 'Unauthenticated',
content: new OA\JsonContent(ref: '#/components/schemas/UnauthenticatedError')
),
new OA\Response(
response: Response::HTTP_FORBIDDEN,
description: 'Forbidden',
content: new OA\JsonContent(
ref: '#/components/schemas/ForbiddenError',
example: ['message' => 'You do not have permission to view speedtest servers.']
)
),
new OA\Response(
response: Response::HTTP_NOT_ACCEPTABLE,
description: 'Not Acceptable - Missing or invalid Accept header',
content: new OA\JsonContent(ref: '#/components/schemas/NotAcceptableError')
),
]
)]
public function listServers(): void {}
}