summaryrefslogtreecommitdiff
path: root/pages/api/data.php
diff options
context:
space:
mode:
Diffstat (limited to 'pages/api/data.php')
-rw-r--r--pages/api/data.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/pages/api/data.php b/pages/api/data.php
new file mode 100644
index 0000000..0a1b01b
--- /dev/null
+++ b/pages/api/data.php
@@ -0,0 +1,12 @@
+<?php
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.inc"; global $isLoggedIn;
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/bitset.inc";
+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