summaryrefslogtreecommitdiff
path: root/api/v1/images.php
diff options
context:
space:
mode:
authorlolcat <will@lolcat.ca>2023-07-22 14:41:14 -0400
committerlolcat <will@lolcat.ca>2023-07-22 14:41:14 -0400
commitbca265aea67ec62499aaa113a6490ce9ec7fe730 (patch)
tree3f05ec5ea542e41b474947e180034f42e99648e9 /api/v1/images.php
still missing things on google scraper
Diffstat (limited to 'api/v1/images.php')
-rw-r--r--api/v1/images.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/api/v1/images.php b/api/v1/images.php
new file mode 100644
index 0000000..e05ba26
--- /dev/null
+++ b/api/v1/images.php
@@ -0,0 +1,25 @@
+<?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(
+ $scraper->image($get)
+ );
+
+}catch(Exception $e){
+
+ echo json_encode(["status" => $e->getMessage()]);
+}