summaryrefslogtreecommitdiff
path: root/api/docs.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/docs.php')
-rw-r--r--api/docs.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/api/docs.php b/api/docs.php
deleted file mode 100644
index 89e9216..0000000
--- a/api/docs.php
+++ /dev/null
@@ -1,29 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/session.inc"; global $isLoggedIn; global $_PROFILE;
-if (!$isLoggedIn) header("Location: /-/login") and die();
-
-$request_raw = file_get_contents('php://input');
-$json_object = json_decode($request_raw, true);
-
-$select = $_GET['id'] ?? null;
-
-if (isset($select)) {
- if (ctype_alnum($select) && file_exists($_SERVER['DOCUMENT_ROOT'] . "/includes/data/docs/" . $select . ".json")) {
- $id = $select;
- $data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/docs/" . $select . ".json"), true);
- } else {
- die("Not found");
- }
-} else {
- die("Not set");
-}
-
-if ($json_object["content"]) $data["contents"] = $json_object["content"];
-if ($json_object["name"]) $data["name"] = $json_object["name"];
-if ($json_object["category"]) $data["category"] = trim($json_object["category"]) !== "" && trim($json_object["category"]) !== "Unsorted" && trim($json_object["category"]) !== "unsorted" && trim($json_object["category"]) !== "/no" && trim($json_object["category"]) !== "Unsort" && trim($json_object["category"]) !== "unsort" ? $json_object["category"] : null;
-
-$data["last"]["date"] = time();
-$data["last"]["author"] = $_PROFILE['login'];
-
-file_put_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/docs/" . $select . ".json", utf8_encode(json_encode($data))); \ No newline at end of file