summaryrefslogtreecommitdiffstats
path: root/web/html/rpc.php
blob: 64c95622aa2ffa0b9fb5f63d315f90dc4b1ceb97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');
include_once("aurjson.class.php");

if ( $_SERVER['REQUEST_METHOD'] != 'GET' ) {
	header('HTTP/1.1 405 Method Not Allowed');
	exit();
}

if ( isset($_GET['type']) ) {
	$rpc_o = new AurJSON();
	echo $rpc_o->handle($_GET);
}
else {
	echo file_get_contents('../../doc/rpc.html');
}
?>