1
Fork 1
mirror of https://git.lolcat.ca/lolcat/4get.git synced 2024-09-13 17:28:08 -04:00
4get/api/v1/images.php

33 lines
557 B
PHP
Raw Normal View History

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