summaryrefslogtreecommitdiff
path: root/pages/api/session.php
diff options
context:
space:
mode:
authorRaindropsSys <contact@minteck.org>2023-07-04 09:01:50 +0200
committerRaindropsSys <contact@minteck.org>2023-07-04 09:01:50 +0200
commitf4d52a3f0c35968b2007c808da6fd409d50fe8aa (patch)
tree72901c7cea443f4769f9b01cfda79c5fbf03d493 /pages/api/session.php
parent7ceb1d721e1e084be80d3ce7342bc05e2ebcbd1e (diff)
downloadpluralconnect-f4d52a3f0c35968b2007c808da6fd409d50fe8aa.tar.gz
pluralconnect-f4d52a3f0c35968b2007c808da6fd409d50fe8aa.tar.bz2
pluralconnect-f4d52a3f0c35968b2007c808da6fd409d50fe8aa.zip
Updated 5 files (automated)
Diffstat (limited to 'pages/api/session.php')
-rw-r--r--pages/api/session.php36
1 files changed, 20 insertions, 16 deletions
diff --git a/pages/api/session.php b/pages/api/session.php
index 53e1845..d410c10 100644
--- a/pages/api/session.php
+++ b/pages/api/session.php
@@ -4,22 +4,26 @@ require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/functions.inc";
require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/util/session.inc"; global $isLoggedIn; global $isLowerLoggedIn;
header("Content-Type: application/json");
+global $token;
-if (!$isLoggedIn || $isLowerLoggedIn) {
- die(json_encode([
- "name" => null,
- "created" => null,
- "last_seen" => null,
- "seen_at" => null
- ], JSON_PRETTY_PRINT));
-}
+if (isset($_GET["raw"])) {
+ die(json_encode(json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/tokens/" . str_replace("/", "", $token)), true), JSON_PRETTY_PRINT));
+} else {
+ if (!$isLoggedIn || $isLowerLoggedIn) {
+ die(json_encode([
+ "name" => null,
+ "created" => null,
+ "last_seen" => null,
+ "seen_at" => null
+ ], JSON_PRETTY_PRINT));
+ }
-global $token;
-$data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/tokens/" . str_replace("/", "", $token)), true);
+ $data = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/tokens/" . str_replace("/", "", $token)), true);
-die(json_encode([
- "name" => $data["name"],
- "created" => date('c', $data["created"]),
- "last_seen" => date('c', $data["last"]),
- "seen_at" => array_keys($data["addresses"] ?? [])
-], JSON_PRETTY_PRINT)); \ No newline at end of file
+ die(json_encode([
+ "name" => $data["name"],
+ "created" => date('c', $data["created"]),
+ "last_seen" => date('c', $data["last"]),
+ "seen_at" => array_keys($data["addresses"] ?? [])
+ ], JSON_PRETTY_PRINT));
+} \ No newline at end of file