mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 13:12:41 +00:00
1b80ad37bc
Code style cleanup to mostly conform to PSR-12
40 lines
1.3 KiB
PHP
40 lines
1.3 KiB
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\Arsse\REST\NextcloudNews;
|
|
|
|
use JKingWeb\Arsse\Misc\HTTP;
|
|
use Psr\Http\Message\ServerRequestInterface;
|
|
use Psr\Http\Message\ResponseInterface;
|
|
|
|
class Versions implements \JKingWeb\Arsse\REST\Handler {
|
|
public function __construct() {
|
|
}
|
|
|
|
public function dispatch(ServerRequestInterface $req): ResponseInterface {
|
|
if (!preg_match("<^/?$>D", $req->getRequestTarget())) {
|
|
// if the request path is more than an empty string or a slash, the client is probably trying a version we don't support
|
|
return HTTP::respEmpty(404);
|
|
}
|
|
switch ($req->getMethod()) {
|
|
case "OPTIONS":
|
|
// if the request method is OPTIONS, respond accordingly
|
|
return HTTP::respEmpty(204, ['Allow' => "HEAD,GET"]);
|
|
case "GET":
|
|
// otherwise return the supported versions
|
|
$out = [
|
|
'apiLevels' => [
|
|
'v1-2',
|
|
],
|
|
];
|
|
return HTTP::respJson($out);
|
|
default:
|
|
// if any other method was used, this is an error
|
|
return HTTP::respEmpty(405, ['Allow' => "HEAD,GET"]);
|
|
}
|
|
}
|
|
}
|