summaryrefslogtreecommitdiff
path: root/api/v1/news.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/v1/news.php')
-rw-r--r--api/v1/news.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/api/v1/news.php b/api/v1/news.php
new file mode 100644
index 0000000..7e24247
--- /dev/null
+++ b/api/v1/news.php
@@ -0,0 +1,25 @@
+<?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()]);
+}