summaryrefslogtreecommitdiff
path: root/api/v1
diff options
context:
space:
mode:
authorlolcat <will@lolcat.ca>2023-09-03 22:41:44 -0400
committerlolcat <will@lolcat.ca>2023-09-03 22:41:44 -0400
commitc8ab934b108c83a391583ea8ae7f717c9753926e (patch)
tree35f23c328249b3259de5e2a60c23a314c84f62f4 /api/v1
parentcfd44438aea9740e0a2c34487424c87126862cc9 (diff)
soundcloud lolllllll
Diffstat (limited to 'api/v1')
-rw-r--r--api/v1/music.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/api/v1/music.php b/api/v1/music.php
new file mode 100644
index 0000000..faf2d96
--- /dev/null
+++ b/api/v1/music.php
@@ -0,0 +1,26 @@
+<?php
+
+header("Content-Type: application/json");
+
+chdir("../../");
+
+include "lib/frontend.php";
+$frontend = new frontend();
+
+[$scraper, $filters] = $frontend->getscraperfilters(
+ "music",
+ isset($_GET["scraper"]) ? $_GET["scraper"] : null
+);
+
+$get = $frontend->parsegetfilters($_GET, $filters);
+
+try{
+ echo json_encode(
+ $scraper->music($get),
+ JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES
+ );
+
+}catch(Exception $e){
+
+ echo json_encode(["status" => $e->getMessage()]);
+}