2023-09-04 02:41:44 +00:00
|
|
|
<?php
|
|
|
|
|
2023-11-07 13:04:56 +00:00
|
|
|
chdir("../../");
|
2023-09-04 02:41:44 +00:00
|
|
|
header("Content-Type: application/json");
|
|
|
|
|
2023-11-07 13:04:56 +00:00
|
|
|
include "data/config.php";
|
|
|
|
if(config::API_ENABLED === false){
|
|
|
|
|
|
|
|
echo json_encode(["status" => "The server administrator disabled the API!"]);
|
|
|
|
return;
|
|
|
|
}
|
2023-09-04 02:41:44 +00:00
|
|
|
|
|
|
|
include "lib/frontend.php";
|
|
|
|
$frontend = new frontend();
|
|
|
|
|
2023-10-16 06:30:43 +00:00
|
|
|
/*
|
|
|
|
Captcha
|
|
|
|
*/
|
2024-03-20 15:19:27 +00:00
|
|
|
include "lib/bot_protection.php";
|
2023-10-16 23:45:11 +00:00
|
|
|
$null = null;
|
2024-03-20 15:19:27 +00:00
|
|
|
new bot_protection($null, $null, $null, "music", false);
|
2023-10-16 06:30:43 +00:00
|
|
|
|
2023-09-04 02:41:44 +00:00
|
|
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
|
|
|
"music",
|
|
|
|
isset($_GET["scraper"]) ? $_GET["scraper"] : null
|
|
|
|
);
|
|
|
|
|
|
|
|
$get = $frontend->parsegetfilters($_GET, $filters);
|
|
|
|
|
|
|
|
try{
|
|
|
|
echo json_encode(
|
|
|
|
$scraper->music($get),
|
2024-05-16 21:22:49 +00:00
|
|
|
JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_INVALID_UTF8_IGNORE
|
2023-09-04 02:41:44 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
}catch(Exception $e){
|
|
|
|
|
|
|
|
echo json_encode(["status" => $e->getMessage()]);
|
|
|
|
}
|