Adding admin only API call: getuserworkers <id>

* Require valid token and admin access
* Grab full worker information for a user
 * Matches the Worker List on the Account page
* See Wiki for full documentation
This commit is contained in:
Sebastian Grewe 2013-06-06 17:18:55 +02:00
parent 3094c9bb9d
commit d5866207c1

View File

@ -0,0 +1,24 @@
<?php
// Make sure we are called from index.php
if (!defined('SECURITY'))
die('Hacking attempt');
// Check user token
$id = $user->checkApiKey($_REQUEST['api_key']);
// We have to check if that user is admin too
if ( ! $user->isAdmin($id) ) {
header("HTTP/1.1 401 Unauthorized");
die("Access denied");
}
// Is it a username or a user ID
ctype_digit($_REQUEST['id']) ? $id = $_REQUEST['id'] : $id = $user->getUserId($_REQUEST['id']);
// Output JSON format
echo json_encode(array('getuserworkers' => $worker->getWorkers($id)));
// Supress master template
$supress_master = 1;
?>