2024-06-27 10:07:19 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require 'flight/Flight.php';
|
|
|
|
require 'model/model.php';
|
|
|
|
|
|
|
|
MusicAPI::init();
|
|
|
|
|
|
|
|
Flight::route('GET /songs(/@id)', 'findSong');
|
|
|
|
Flight::route('GET /albums(/@id)', 'findAlbum');
|
|
|
|
Flight::route('GET /artists(/@id)', 'findArtist');
|
2024-06-27 19:40:54 +02:00
|
|
|
Flight::route('GET /playlists(/@id)', 'findPlaylist');
|
|
|
|
Flight::route('POST /playlists', 'createPlaylist');
|
|
|
|
Flight::route('DELETE /playlists/@id', 'deletePlaylist');
|
2024-06-27 10:07:19 +02:00
|
|
|
|
|
|
|
function findSong($id = null)
|
|
|
|
{
|
|
|
|
$title = Flight::request()->query->title ?? false;
|
|
|
|
|
|
|
|
if ($id === null) {
|
|
|
|
if($title) {
|
|
|
|
$res = MusicAPI::findAllSongByTitleContaining($title);
|
|
|
|
} else {
|
|
|
|
$res = MusicAPI::findAllSong();
|
|
|
|
}
|
|
|
|
Flight::json(["results" => $res]);
|
|
|
|
} else {
|
|
|
|
$res = MusicAPI::findSongById($id);
|
|
|
|
if ($res)
|
|
|
|
{
|
|
|
|
Flight::json($res);
|
|
|
|
} else {
|
|
|
|
Flight::halt(404);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function findAlbum($id = null)
|
|
|
|
{
|
|
|
|
$name = Flight::request()->query->name ?? false;
|
|
|
|
|
|
|
|
if ($id === null) {
|
|
|
|
if ($name){
|
|
|
|
$res = MusicAPI::findAlbumByNameContaining($name);
|
|
|
|
} else {
|
|
|
|
$res = MusicAPI::findAllAlbum();
|
|
|
|
}
|
|
|
|
Flight::json(["results" => $res]);
|
|
|
|
} else {
|
|
|
|
$res = MusicAPI::findAlbumById($id);
|
|
|
|
if ($res) {
|
|
|
|
Flight::json($res);
|
|
|
|
} else {
|
|
|
|
Flight::halt(404);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function findArtist($id = null)
|
|
|
|
{
|
|
|
|
$name = Flight::request()->query->name ?? false;
|
|
|
|
|
|
|
|
if ($id === null) {
|
|
|
|
if ($name){
|
|
|
|
$res = MusicAPI::findArtsistByNameContaining($name);
|
|
|
|
} else {
|
|
|
|
$res = MusicAPI::findAllArtist();
|
|
|
|
}
|
|
|
|
Flight::json(["results" => $res]);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$res = MusicAPI::findArtsistById($id);
|
|
|
|
if ($res) {
|
|
|
|
Flight::json($res);
|
|
|
|
} else {
|
|
|
|
Flight::halt(404);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-27 19:40:54 +02:00
|
|
|
function findPlaylist($id = null)
|
|
|
|
{
|
|
|
|
if ($id === null) {
|
|
|
|
$res = MusicAPI::findAllPlaylists();
|
|
|
|
Flight::json(["results" => $res]);
|
|
|
|
} else {
|
|
|
|
$res = MusicAPI::findPlaylistById($id);
|
|
|
|
if ($res) {
|
|
|
|
Flight::json($res);
|
|
|
|
} else {
|
|
|
|
Flight::halt(404);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function createPlaylist()
|
|
|
|
{
|
|
|
|
$data = Flight::request()->data;
|
|
|
|
$name = $data->name ?? null;
|
|
|
|
|
|
|
|
if ($name) {
|
|
|
|
$id = MusicAPI::createPlaylist($name);
|
|
|
|
Flight::json(["id" => $id], 201);
|
|
|
|
} else {
|
|
|
|
Flight::halt(400, "Missing name parameter");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function deletePlaylist($id)
|
|
|
|
{
|
|
|
|
$res = MusicAPI::deletePlaylist($id);
|
|
|
|
if ($res) {
|
|
|
|
Flight::json(["status" => "success"]);
|
|
|
|
} else {
|
|
|
|
Flight::halt(404);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-06-27 10:07:19 +02:00
|
|
|
Flight::start();
|
|
|
|
|
|
|
|
?>
|