blob: fc1b6afa2813c84a92fc98e032abd1e34ef8c1f1 [file] [log] [blame]
avm99963f0d15212017-10-08 17:03:22 +02001<?php
avm99963658fae52017-10-08 23:09:16 +02002require_once("config.php");
3
avm99963f0d15212017-10-08 17:03:22 +02004class write {
5 public static function do($json) {
6 print_r(json_encode($json));
7 exit();
8 }
9
10 public static function error($n, $msg) {
11 self::do(["error" => $n, "msg" => $msg]);
12 }
13}
14
15if (!isset($_GET["action"])) {
16 write::error(1, "No action provided");
17}
18
19switch ($_GET["action"]) {
20 case "getgraf":
Huguet57b03dfc82018-07-23 01:24:45 +020021 $graf = file_get_contents("https://grafo.dirba.io/api.php?req=getGraph");
avm99963f0d15212017-10-08 17:03:22 +020022 echo $graf;
23 break;
24
25 default:
26 write::error(2, "Unknown action");
27}
28?>