summaryrefslogtreecommitdiff
path: root/api/desktop-app.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/desktop-app.php')
-rw-r--r--api/desktop-app.php76
1 files changed, 76 insertions, 0 deletions
diff --git a/api/desktop-app.php b/api/desktop-app.php
new file mode 100644
index 0000000..20b1da9
--- /dev/null
+++ b/api/desktop-app.php
@@ -0,0 +1,76 @@
+<?php
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/bitset.inc";
+
+if (!isset($_GET["id"])) die();
+
+if (isset($_GET["config"])) {
+ $data = [];
+
+ $keys = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/permitted.json"), true);
+ $proceed = false;
+
+ if (in_array($_GET["id"], array_keys($keys))) {
+ $proceed = true;
+ $fronters = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $keys[$_GET["id"]]["system"] . "/fronters.json"), true)["members"];
+
+ if (count($fronters) > 0) {
+ $fronter = $fronters[0];
+ $info = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/metadata/" . $fronter["id"] . ".json"), true);
+ $info = parseMetadata($info);
+
+ if (isset($info["birth"]["age"]) && $info["birth"]["age"] < 16 && $info["birth"]["age"] > 0) {
+ $proceed = false;
+ } else if (isset($info["birth"]["year"]) && $info["birth"]["year"] > 1900) {
+ if (!isset($info["birth"]["date"])) $info["birth"]["date"] = "01-01";
+
+ $age = (int)date('Y') - $info["birth"]["year"] + (strtotime(date('Y') . "-" . $info["birth"]["date"]) <= time() ? 0 : -1);
+
+ if ($age < 16) {
+ $proceed = false;
+ }
+ }
+ }
+ }
+
+ if ($proceed) {
+ $data = $keys[$_GET["id"]]["config"] ?? [];
+ }
+} else {
+ $data = [
+ "success" => true,
+ "valid" => false,
+ "underage" => false,
+ "normal" => false
+ ];
+
+ $keys = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/permitted.json"), true);
+
+ if (in_array($_GET["id"], array_keys($keys))) {
+ $data["valid"] = true;
+
+ $fronters = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/" . $keys[$_GET["id"]]["system"] . "/fronters.json"), true)["members"];
+
+ if (count($fronters) > 0) {
+ $fronter = $fronters[0];
+ $info = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/metadata/" . $fronter["id"] . ".json"), true);
+ $info = parseMetadata($info);
+
+ $data["normal"] = $info["sexually_active"];
+
+ if (isset($info["birth"]["age"]) && $info["birth"]["age"] < 16 && $info["birth"]["age"] > 0) {
+ $data["underage"] = true;
+ } else if (isset($info["birth"]["year"]) && $info["birth"]["year"] > 1900) {
+ if (!isset($info["birth"]["date"])) $info["birth"]["date"] = "01-01";
+
+ $age = (int)date('Y') - $info["birth"]["year"] + (strtotime(date('Y') . "-" . $info["birth"]["date"]) <= time() ? 0 : -1);
+
+ if ($age < 16) {
+ $data["underage"] = true;
+ }
+ }
+ }
+ }
+}
+
+die(json_encode($data)); \ No newline at end of file