28 lines
737 B
PHP
28 lines
737 B
PHP
<?php
|
|
|
|
// Make sure we are called from index.php
|
|
if (!defined('SECURITY')) die('Hacking attempt');
|
|
|
|
// Check if the API is activated
|
|
$api->isActive();
|
|
|
|
// Check user token
|
|
$user_id = $api->checkAccess($user->checkApiKey($_REQUEST['api_key']), @$_REQUEST['id']);
|
|
|
|
// Fetch transaction summary
|
|
$aTransactionSummary = $transaction->getTransactionSummary($user_id);
|
|
|
|
// Output JSON format
|
|
$data = array(
|
|
'username' => $user->getUsername($user_id),
|
|
'shares' => $statistics->getUserShares($user_id),
|
|
'hashrate' => $statistics->getUserHashrate($user_id),
|
|
'sharerate' => $statistics->getUserSharerate($user_id),
|
|
'transactions' => $aTransactionSummary
|
|
);
|
|
echo $api->get_json($data);
|
|
|
|
// Supress master template
|
|
$supress_master = 1;
|
|
?>
|