forked from lolcat/4get
26 lines
428 B
PHP
26 lines
428 B
PHP
|
<?php
|
||
|
|
||
|
header("Content-Type: application/json");
|
||
|
|
||
|
chdir("../../");
|
||
|
|
||
|
include "lib/frontend.php";
|
||
|
$frontend = new frontend();
|
||
|
|
||
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
||
|
"videos",
|
||
|
isset($_GET["scraper"]) ? $_GET["scraper"] : null
|
||
|
);
|
||
|
|
||
|
$get = $frontend->parsegetfilters($_GET, $filters);
|
||
|
|
||
|
try{
|
||
|
echo json_encode(
|
||
|
$scraper->video($get)
|
||
|
);
|
||
|
|
||
|
}catch(Exception $e){
|
||
|
|
||
|
echo json_encode(["status" => $e->getMessage()]);
|
||
|
}
|