forked from lolcat/4get
1
0
Fork 0
4get/api/v1/images.php

27 lines
479 B
PHP
Raw Normal View History

2023-07-22 18:41:14 +00:00
<?php
header("Content-Type: application/json");
chdir("../../");
include "lib/frontend.php";
$frontend = new frontend();
[$scraper, $filters] = $frontend->getscraperfilters(
"images",
isset($_GET["scraper"]) ? $_GET["scraper"] : null
);
$get = $frontend->parsegetfilters($_GET, $filters);
try{
echo json_encode(
2023-08-08 07:09:47 +00:00
$scraper->image($get),
JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES
2023-07-22 18:41:14 +00:00
);
}catch(Exception $e){
echo json_encode(["status" => $e->getMessage()]);
}