2017-03-19 02:30:36 +00:00
|
|
|
<?php
|
2017-11-17 01:23:18 +00:00
|
|
|
/** @license MIT
|
|
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
|
2017-03-19 02:30:36 +00:00
|
|
|
declare(strict_types=1);
|
2017-03-28 04:12:12 +00:00
|
|
|
namespace JKingWeb\Arsse\REST\NextCloudNews;
|
2017-08-29 14:50:31 +00:00
|
|
|
|
2017-03-28 04:12:12 +00:00
|
|
|
use JKingWeb\Arsse\REST\Response;
|
2017-03-19 02:30:36 +00:00
|
|
|
|
2017-07-07 12:13:03 +00:00
|
|
|
class Versions implements \JKingWeb\Arsse\REST\Handler {
|
2017-08-29 14:50:31 +00:00
|
|
|
public function __construct() {
|
2017-04-07 01:41:21 +00:00
|
|
|
}
|
2017-03-19 02:30:36 +00:00
|
|
|
|
2017-08-29 14:50:31 +00:00
|
|
|
public function dispatch(\JKingWeb\Arsse\REST\Request $req): Response {
|
2017-11-29 20:28:33 +00:00
|
|
|
if (!preg_match("<^/?$>", $req->path)) {
|
|
|
|
// if the request path is an empty string or just a slash, the client is probably trying a version we don't support
|
|
|
|
return new Response(404);
|
|
|
|
} elseif ($req->method=="OPTIONS") {
|
|
|
|
// if the request method is OPTIONS, respond accordingly
|
|
|
|
return new Response(204, "", "", ["Allow: HEAD,GET"]);
|
|
|
|
} elseif ($req->method != "GET") {
|
|
|
|
// if a method other than GET was used, this is an error
|
|
|
|
return new Response(405, "", "", ["Allow: HEAD,GET"]);
|
|
|
|
} else {
|
|
|
|
// otherwise return the supported versions
|
2017-04-07 01:41:21 +00:00
|
|
|
$out = [
|
|
|
|
'apiLevels' => [
|
|
|
|
'v1-2',
|
|
|
|
]
|
|
|
|
];
|
|
|
|
return new Response(200, $out);
|
|
|
|
}
|
|
|
|
}
|
2017-08-29 14:50:31 +00:00
|
|
|
}
|