engelsystem/includes/controller/api.php

337 lines
8.1 KiB
PHP
Raw Normal View History

2013-12-29 15:08:33 +01:00
<?php
/************************************************************************************************
* API Documentation
************************************************************************************************
General:
--------
All API calls output JSON-encoded data. Client parameters should be passed encoded using JSON in HTTP POST data.
Every API Request must be contained the Api Key (using JSON parameter 'key') and the Command (using JSON parameter 'cmd').
Testing API calls (using curl):
-------------------------------
$ curl -d '{"cmd":"getVersion"}' '<Address>/?p=api'
$ curl -d '{"cmd":"getApiKey","user":"admin","pw":"admin"}' '<Address>/?p=api'
$ curl -d '{"key":"<key>","cmd":"getRoom"}' '<Address>/?p=api'
$ curl -d '{"key":"<key>","cmd":"sendmessage","uid":"23","text":"test message"}' '<Address>/?p=api'
2013-12-29 15:08:33 +01:00
2014-01-05 19:33:52 +01:00
Methods without key:
--------------------
2013-12-29 15:08:33 +01:00
getVersion
Description:
Returns API version.
2013-12-29 15:08:33 +01:00
Parameters:
nothing
Return Example:
2014-01-05 19:33:52 +01:00
{"status":"success","version": "1"}
getApiKey
Description:
Returns API Key version.
2014-01-05 19:33:52 +01:00
Parameters:
user (string)
pw (string)
Return Example:
{"status":"success","Key":"1234567890123456789012"}
2013-12-29 15:08:33 +01:00
2014-01-05 19:33:52 +01:00
Methods with Key:
-----------------
2013-12-29 15:08:33 +01:00
getRoom
Description:
Returns a list of all Rooms (no id set) or details of a single Room (requested id)
2013-12-29 15:08:33 +01:00
Parameters:
id (integer) - Room ID
2013-12-29 15:08:33 +01:00
Return Example:
[{"RID":"1"},{"RID":"2"},{"RID":"3"},{"RID":"4"}]
{"RID":"1","Name":"Room Name","Man":null,"FromPentabarf":"","show":"Y","Number":"0"}
getAngelType
Description:
Returns a list of all Angel Types (no id set) or details of a single Angel Type (requested id)
2013-12-29 15:08:33 +01:00
Parameters:
id (integer) - Type ID
2013-12-29 15:08:33 +01:00
Return Example:
[{"id":"8"},{"id":"9"}]
{"id":"9","name":"Angeltypes 2","restricted":"0"}
getUser
Description:
Returns a list of all Users (no id set) or details of a single User (requested id)
2013-12-29 15:08:33 +01:00
Parameters:
id (integer) - User ID
2013-12-29 15:08:33 +01:00
Return Example:
[{"UID":"1"},{"UID":"23"},{"UID":"42"}]
{"UID":"1","Nick":"admin","Name":"Gates","Vorname":"Bill","Telefon":"","DECT":"","Handy":"","email":"","ICQ":"","jabber":"","Avatar":"115"}
getShift
Description:
Returns a list of all Shifte (no id set, filter is optional) or details of a single Shift (requested id)
2013-12-29 15:08:33 +01:00
Parameters:
id (integer) - Shift ID
2013-12-29 15:08:33 +01:00
filterRoom (Array of integer) - Array of Room IDs (optional, for list request)
filterTask (Array of integer) - Array if Task (optional, for list request)
filterOccupancy (integer) - Occupancy state: (optional, for list request)
1 occupied
2 free
3 occupied and free
Return Example:
[{"SID":"1"},{"SID":"2"},{"SID":"3"}]
2014-01-05 19:33:52 +01:00
{"SID":"10","start":"1388264400","end":"1388271600","RID":"1","name":"Shift 1","URL":null,"PSID":null,\
"ShiftEntry":[{"TID":"8","UID":"4","freeloaded":"0"}],
"NeedAngels":[{"TID":"8","count":"1","restricted":"0","taken":1},{"TID":"9","count":"2","restricted":"0","taken":0}]}
2013-12-29 15:08:33 +01:00
getMessage
Description:
Returns a list of all Messages (no id set) or details of a single Message (requested id)
2013-12-29 15:08:33 +01:00
Parameters:
id (integer) - Message ID
2013-12-29 15:08:33 +01:00
Return Example:
[{"id":"1"},{"id":"2"},{"id":"3"}]
{"id":"3","Datum":"1388247583","SUID":"23","RUID":"42","isRead":"N","Text":"message text"}
sendMessage
Description:
send a Message to an other angel
Parameters:
uid (integer) - User ID of the reciever
text (string) - Message Text
Return Example:
{"status":"success"}
2013-12-29 15:08:33 +01:00
************************************************************************************************/
/**
* General API Controller
*/
function api_controller() {
global $user, $DataJson, $_REQUEST;
2014-01-05 19:33:52 +01:00
header("Content-Type: application/json; charset=utf-8");
2013-12-29 15:08:33 +01:00
// decode JSON request
$input = file_get_contents("php://input");
$input = json_decode($input, true);
$_REQUEST = $input;
2014-01-05 19:33:52 +01:00
// get command
$cmd='';
if (isset($_REQUEST['cmd']) )
$cmd = strtolower( $_REQUEST['cmd']);
// decode commands, without key
switch( $cmd) {
case 'getversion':
getVersion();
die( json_encode($DataJson));
break;
case 'getapikey':
getApiKey();
die( json_encode($DataJson));
break;
}
2013-12-29 15:08:33 +01:00
// get API KEY
if (isset($_REQUEST['key']) && preg_match("/^[0-9a-f]{32}$/", $_REQUEST['key']))
$key = $_REQUEST['key'];
else
2014-01-05 19:33:52 +01:00
die( json_encode( array (
'status' => 'failed',
'error' => 'Missing parameter "key".' )));
2013-12-29 15:08:33 +01:00
// check API key
$user = User_by_api_key($key);
if ($user === false)
2014-01-05 19:33:52 +01:00
die( json_encode( array (
'status' => 'failed',
'error' => 'Unable to find user' )));
2013-12-29 15:08:33 +01:00
if ($user == null)
2014-01-05 19:33:52 +01:00
die( json_encode( array (
'status' => 'failed',
'error' => 'Key invalid.' )));
2013-12-29 15:08:33 +01:00
// decode command
switch( $cmd) {
case 'getroom':
getRoom();
break;
case 'getangeltype':
getAngelType();
break;
case 'getuser':
getUser();
break;
case 'getshift':
getShift();
break;
case 'getmessage':
getMessage();
break;
case 'sendmessage':
sendMessage();
break;
2013-12-29 15:08:33 +01:00
default:
2014-01-05 19:33:52 +01:00
$DataJson = array (
'status' => 'failed',
'error' => 'Unknown Command "'. $cmd. '"' );
}
// check
2014-01-05 19:33:52 +01:00
if( $DataJson === false) {
$DataJson = array (
'status' => 'failed',
'error' => 'DataJson === false' );
2013-12-29 15:08:33 +01:00
}
2013-12-29 15:08:33 +01:00
echo json_encode($DataJson);
die();
}
/**
* Get Version of API
*/
function getVersion(){
global $DataJson;
$DataJson = array(
2014-01-05 19:33:52 +01:00
'status' => 'success',
'Version' => 1);
2013-12-29 15:08:33 +01:00
}
2014-01-05 19:33:52 +01:00
/**
* Get API Key
*/
function getApiKey(){
global $DataJson, $_REQUEST;
if (!isset($_REQUEST['user']) ) {
2014-01-05 19:33:52 +01:00
$DataJson = array (
'status' => 'failed',
'error' => 'Missing parameter "user".' );
}
elseif (!isset($_REQUEST['pw']) ) {
$DataJson = array (
'status' => 'failed',
'error' => 'Missing parameter "pw".' );
} else {
$Erg = sql_select( "SELECT `UID`, `Passwort`, `api_key` FROM `User` WHERE `Nick`='" . sql_escape($_REQUEST['user']) . "'");
2014-01-05 19:33:52 +01:00
if (count($Erg) == 1) {
$Erg = $Erg[0];
if (verify_password( $_REQUEST['pw'], $Erg["Passwort"], $Erg["UID"])) {
$key = $Erg["api_key"];
$DataJson = array(
2014-01-05 19:33:52 +01:00
'status' => 'success',
'Key' => $key);
} else {
$DataJson = array (
'status' => 'failed',
'error' => 'PW wrong' );
}
} else {
$DataJson = array (
'status' => 'failed',
'error' => 'User not found.' );
}
}
2014-01-05 19:33:52 +01:00
sleep(1);
}
2013-12-29 15:08:33 +01:00
/**
* Get Room
2013-12-29 15:08:33 +01:00
*/
function getRoom(){
global $DataJson, $_REQUEST;
2013-12-29 15:08:33 +01:00
if (isset($_REQUEST['id']) ) {
$DataJson = mRoom( $_REQUEST['id']);
} else {
$DataJson = mRoomList();
}
}
/**
* Get AngelType
*/
function getAngelType(){
global $DataJson, $_REQUEST;
if (isset($_REQUEST['id']) ) {
$DataJson = mAngelType( $_REQUEST['id']);
} else {
$DataJson = mAngelTypeList();
}
}
/**
* Get User
*/
function getUser(){
global $DataJson, $_REQUEST;
2013-12-29 15:08:33 +01:00
if (isset($_REQUEST['id']) ) {
$DataJson = mUser_Limit( $_REQUEST['id']);
} else {
$DataJson = mUserList();
}
}
/**
* Get Shift
*/
function getShift(){
global $DataJson, $_REQUEST;
if (isset($_REQUEST['id']) ) {
$DataJson = mShift( $_REQUEST['id']);
} else {
$DataJson = mShiftList();
}
}
/**
* Get Message
*/
function getMessage(){
global $DataJson, $_REQUEST;
if (isset($_REQUEST['id']) ) {
$DataJson = mMessage( $_REQUEST['id']);
} else {
$DataJson = mMessageList();
}
}
/**
* Send Message
*/
function sendMessage(){
global $DataJson, $_REQUEST;
if (!isset($_REQUEST['uid']) ) {
$DataJson = array (
'status' => 'failed',
'error' => 'Missing parameter "uid".' );
}
elseif (!isset($_REQUEST['text']) ) {
$DataJson = array (
'status' => 'failed',
'error' => 'Missing parameter "text".' );
} else {
if( mMessage_Send( $_REQUEST['uid'], $_REQUEST['text']) === true) {
$DataJson = array( 'status' => 'success');
} else {
$DataJson = array(
'status' => 'failed',
'error' => 'Transmitting was terminated with an Error.');
}
}
}
2014-01-05 19:33:52 +01:00
?>