mirror of
https://git.lolcat.ca/lolcat/4get.git
synced 2024-11-08 17:43:07 -05:00
26 lines
425 B
PHP
26 lines
425 B
PHP
|
<?php
|
||
|
|
||
|
header("Content-Type: application/json");
|
||
|
|
||
|
chdir("../../");
|
||
|
|
||
|
include "lib/frontend.php";
|
||
|
$frontend = new frontend();
|
||
|
|
||
|
[$scraper, $filters] = $frontend->getscraperfilters(
|
||
|
"news",
|
||
|
isset($_GET["scraper"]) ? $_GET["scraper"] : null
|
||
|
);
|
||
|
|
||
|
$get = $frontend->parsegetfilters($_GET, $filters);
|
||
|
|
||
|
try{
|
||
|
echo json_encode(
|
||
|
$scraper->news($get)
|
||
|
);
|
||
|
|
||
|
}catch(Exception $e){
|
||
|
|
||
|
echo json_encode(["status" => $e->getMessage()]);
|
||
|
}
|