summaryrefslogtreecommitdiff
path: root/api/data.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/data.php')
-rw-r--r--api/data.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/api/data.php b/api/data.php
new file mode 100644
index 0000000..7ede925
--- /dev/null
+++ b/api/data.php
@@ -0,0 +1,12 @@
+<?php
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.php"; global $isLoggedIn;
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/bitset.php";
+if (!$isLoggedIn) header("Location: /login") and die();
+
+if (!isset($_GET['f']) || !file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $_GET['f'])) {
+ die();
+} else {
+ header("Content-Type: " . mime_content_type($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $_GET['f']));
+ die(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $_GET['f']));
+} \ No newline at end of file