adlerka.top/endpoints/meme.php

14 lines
440 B
PHP
Raw Normal View History

2024-04-25 09:04:10 +02:00
<?php
require_once "lib/meme.php";
function endpoint($endpoint_data): array
{
return match ($endpoint_data["action"]) {
2024-04-25 22:08:02 +02:00
"addMeme" => addMeme($endpoint_data['meme_title'], $endpoint_data['meme_text'], $endpoint_data['meme_image_id']),
2024-04-25 09:40:21 +02:00
"renderGallery" => renderMemeGallery(),
2024-04-26 01:17:49 +02:00
"deleteMeme" => deleteMeme($endpoint_data['meme_id']),
2024-04-25 09:04:10 +02:00
default => ["Status" => "Fail", "message" => "Invalid action"],
};
}