summaryrefslogtreecommitdiff
path: root/api/index.php
blob: 750a95721242693a6466cfd1f2d7335c44522454 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
	error_reporting(E_ERROR | E_PARSE);

	set_include_path(__DIR__ . PATH_SEPARATOR .
		dirname(__DIR__) . PATH_SEPARATOR .
		dirname(__DIR__) . "/include" . PATH_SEPARATOR .
  		get_include_path());

	chdir("..");

	define('NO_SESSION_AUTOSTART', true);

	require_once "autoload.php";
	require_once "functions.php";
	require_once "sessions.php";

	ini_set('session.use_cookies', "0");
	ini_set("session.gc_maxlifetime", "86400");

	ob_start();

	$_REQUEST = json_decode((string)file_get_contents("php://input"), true);

	if (!empty($_REQUEST["sid"])) {
		session_id($_REQUEST["sid"]);
		session_start();
	}

	startup_gettext();

	if (!init_plugins()) return;

	if (!empty($_SESSION["uid"])) {
		if (!\Sessions\validate_session()) {
			header("Content-Type: text/json");

			print json_encode([
						"seq" => -1,
						"status" => API::STATUS_ERR,
						"content" => [ "error" => API::E_NOT_LOGGED_IN ]
					]);

			return;
		}

		UserHelper::load_user_plugins($_SESSION["uid"]);
	}

	$method = strtolower($_REQUEST["op"] ?? "");

	$handler = new API($_REQUEST);

	if ($handler->before($method)) {
		if ($method && method_exists($handler, $method)) {
			$handler->$method();
		} else /* if (method_exists($handler, 'index')) */ {
			$handler->index($method);
		}
		$handler->after();
	}

	header("Api-Content-Length: " . ob_get_length());

	ob_end_flush();