summaryrefslogtreecommitdiffstats
path: root/web/html/rpc.php
blob: 1a9ca34bf7786e299e86041fde8f0a9fbe43c44b (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
<?php

set_include_path(get_include_path() . PATH_SEPARATOR . '../lib');

include_once("aurjson.class.php");

if ( $_SERVER['REQUEST_METHOD'] == 'GET' ) {
    if ( isset($_GET['type']) ) {
        $rpc_o = new AurJSON();
        echo $rpc_o->handle($_GET);
    }
    else {
        // dump a simple usage output for people to use.
        // this could be moved to an api doc in the future, or generated from
        // the AurJSON class directly with phpdoc. For now though, just putting it here.
        echo '<html><body>';
        echo 'The methods currently allowed are: <br />';
        echo '<ul>';
        echo '<li>search</li>';
        echo '<li>info</li>';
        echo '<li>multiinfo</li>';
        echo '<li>msearch</li>';
        echo '</ul><br />';
        echo 'Each method requires the following HTTP GET syntax:<br />';
        echo '&nbsp;&nbsp; type=<i>methodname</i>&arg=<i>data</i> <br /><br />';
        echo 'Where <i>methodname</i> is the name of an allowed method, and <i>data</i> is the argument to the call.<br />';
        echo '<br />';
        echo 'If you need jsonp type callback specification, you can provide an additional variable <i>callback</i>.<br />';
        echo 'Example URL: <br />&nbsp;&nbsp; http://aur-url/rpc.php?type=search&arg=foobar&callback=jsonp1192244621103';
        echo '</body></html>';
    }
}
else {
    echo 'POST NOT SUPPORTED';
}
?>