forked from craigwatson/bitcoind-status
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.php
65 lines (54 loc) · 1.7 KB
/
stats.php
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<?php
/**
* Bitcoin Status Page - Stats
*
* @category File
* @package BitcoinStatus
* @author Craig Watson <[email protected]>
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License, Version 2.0
* @link https://github.com/craigwatson/bitcoind-status
*/
require_once './php/config.php';
// Die if we're not in the whitelist
if (!in_array($_SERVER['REMOTE_ADDR'], $config['stats_whitelist'])) {
die($_SERVER['REMOTE_ADDR'] . " is not in the whitelist");
}
// Clear data if variable present
if (isset($_GET['clear']) & is_file($config['stats_file'])) {
unlink($config['stats_file']);
}
// Check for existing data
if (is_file($config['stats_file'])) {
$data = json_decode(file_get_contents($config['stats_file']), true);
} else {
$data = array();
}
// If viewing is enabled, just output and die
if (isset($_GET['view'])) {
print_r($data);
die();
}
// Include EasyBitcoin library and set up connection
require_once './php/easybitcoin.php';
$bitcoin = new Bitcoin($config['rpc_user'], $config['rpc_pass'], $config['rpc_host'], $config['rpc_port']);
// Setup SSL if configured
if ($config['rpc_ssl'] === true) {
$bitcoin->setSSL($config['rpc_ssl_ca']);
}
// Get info and handle errors
$new_raw_data = $bitcoin->getinfo();
if (!$new_raw_data) {
die("RPC Error");
}
// Append to array
$data[] = array('time' => time(), 'connections' => $new_raw_data['connections']);
// Purge old data
for ($i = 0; $i < count($data); $i++) {
if ($data[$i]['time'] < (time() - $config['stats_max_age'])) {
array_splice($data, $i, 1);
}
}
// Save array
if (file_put_contents($config['stats_file'], json_encode($data), LOCK_EX) === false) {
die("Failure storing data");
}