22 lines
612 B
PHP
22 lines
612 B
PHP
<?php
|
|
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
|
|
|
|
// Check if the API is activated
|
|
$api->isActive();
|
|
|
|
// Check user token
|
|
$user_id = $api->checkAccess($user->checkApiKey($_REQUEST['api_key']), @$_REQUEST['id']);
|
|
|
|
// Fetch our last block found
|
|
$aBlocksFoundData = $statistics->getBlocksFound(1);
|
|
|
|
// Time since last block
|
|
$now = new DateTime( "now" );
|
|
! empty($aBlocksFoundData) ? $dTimeSinceLast = ($now->getTimestamp() - $aBlocksFoundData[0]['time']) : $dTimeSinceLast = 0;
|
|
|
|
// Output JSON format
|
|
echo $api->get_json($dTimeSinceLast);
|
|
|
|
// Supress master template
|
|
$supress_master = 1;
|