diff options
Diffstat (limited to 'api/v1/videos.php')
-rw-r--r-- | api/v1/videos.php | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/api/v1/videos.php b/api/v1/videos.php new file mode 100644 index 0000000..1d23780 --- /dev/null +++ b/api/v1/videos.php @@ -0,0 +1,39 @@ +<?php + +chdir("../../"); +header("Content-Type: application/json"); + +include "data/config.php"; +if(config::API_ENABLED === false){ + + echo json_encode(["status" => "The server administrator disabled the API!"]); + return; +} + +include "lib/frontend.php"; +$frontend = new frontend(); + +/* + Captcha +*/ +include "lib/bot_protection.php"; +$null = null; +new bot_protection($null, $null, $null, "videos", false); + +[$scraper, $filters] = $frontend->getscraperfilters( + "videos", + isset($_GET["scraper"]) ? $_GET["scraper"] : null +); + +$get = $frontend->parsegetfilters($_GET, $filters); + +try{ + echo json_encode( + $scraper->video($get), + JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES | JSON_INVALID_UTF8_IGNORE + ); + +}catch(Exception $e){ + + echo json_encode(["status" => $e->getMessage()]); +} |