2024-03-01 22:14:20 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once "lib/upload.php";
|
|
|
|
|
|
|
|
function endpoint($endpoint_data): array
|
|
|
|
{
|
|
|
|
|
|
|
|
return match ($endpoint_data["action"]) {
|
|
|
|
"getMyFiles" => listFiles(),
|
|
|
|
"getAllFiles" => listFiles(false),
|
2024-04-11 10:36:40 +02:00
|
|
|
"uploadFiles" => parseIncomingFiles(),
|
|
|
|
"addToGroup" => addToGroup($endpoint_data['group_id'], $endpoint_data['file_id']),
|
|
|
|
"myFileExists" => fileExists($endpoint_data['file_id'], ),
|
|
|
|
"FileExists" => fileExists($endpoint_data['file_id'], false),
|
2024-03-01 22:14:20 +01:00
|
|
|
default => ["Status" => "Fail", "message" => "Invalid action"],
|
|
|
|
};
|
|
|
|
}
|