mirror of
https://codeberg.org/vlw/vlw.se.git
synced 2025-09-13 21:13:40 +02:00

* wip: 2024-02-13T12:59:17+0100 (1707825557) * wip: 2024-02-21T03:16:48+0100 (1708481808) * wip: 2024-02-21T20:50:20+0100 (1708545020) * wip: 2024-02-21T20:50:20+0100 (1708545020) * wip: 2024-03-01T13:17:58+0100 (1709295478) * wip: 2024-03-06T12:06:58+0100 (1709723218) * wip: 2024-03-07T15:07:57+0100 (1709820477) * wip: 2024-03-09T01:36:44+0100 (1709944604) * wip: 2024-03-14T23:24:12+0100 (1710455052) * wip: 2024-03-28T18:27:40+0100 (1711646860) * wip: 2024-03-28T18:27:40+0100 (1711646860) * feat: create README * wip: 2024-04-01T12:21:45+0200 (1711966905)
55 lines
No EOL
1.6 KiB
PHP
Executable file
55 lines
No EOL
1.6 KiB
PHP
Executable file
<?php
|
|
|
|
use Reflect\Path;
|
|
use Reflect\Response;
|
|
|
|
use Reflect\Method;
|
|
use function Reflect\Call;
|
|
|
|
use VLW\API\Databases\VLWdb\VLWdb;
|
|
use VLW\API\Databases\VLWdb\Models\MediaSrcset\MediaSrcsetModel;
|
|
|
|
require_once Path::root("src/databases/VLWdb.php");
|
|
require_once Path::root("src/databases/models/Media.php");
|
|
require_once Path::root("src/databases/models/MediaSrcset.php");
|
|
|
|
class POST_MediaSrcset extends VLWdb {
|
|
public function __construct() {
|
|
parent::__construct();
|
|
}
|
|
|
|
// # Responses
|
|
|
|
// Return a 503 Service Unavailable error if something went wrong with the database call
|
|
private function resp_database_error(): Response {
|
|
return new Response("Failed to get work data, please try again later", 503);
|
|
}
|
|
|
|
public function main(): Response {
|
|
// Generate a random UUID for this srcset
|
|
$id = parent::gen_uuid4();
|
|
|
|
// Ensure an srcset with the generated id doesn't exist, although it shouldn't realistically ever happen
|
|
$srcset_existing = Call("media/srcset?id={$id}", Method::GET);
|
|
if ($srcset_existing->code !== 404) {
|
|
// Wow a UUID4 collision... buy a lottery ticket
|
|
if ($srcset_existing->code === 200) {
|
|
return $this->main();
|
|
}
|
|
|
|
// Failed to get srcset
|
|
return new Response("Something went wrong when checking if the srcset exists", 500);
|
|
}
|
|
|
|
// Create new srcset entity
|
|
$insert = $this->db->for(MediaSrcsetModel::TABLE)
|
|
->insert([
|
|
MediaSrcsetModel::ID->value => $id
|
|
]);
|
|
|
|
// Return created srcset id if successful
|
|
return $insert
|
|
? new Response($id, 201)
|
|
: $this->resp_database_error();
|
|
}
|
|
} |