forked from TheKoziTwo/xmr-integration
-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.php
44 lines (34 loc) · 1.23 KB
/
admin.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
<?php require_once('init.php');
// Redirect user to login page if not logged in
if( ! User::is_logged_in())
{
redirect();
}
$user = new User($_SESSION['user_id']);
// Require admin access:
if( ! $user->is_admin())
{
redirect();
}
$assets_ids = Asset::get_assets();
$assets = array();
foreach($assets_ids as $asset_id)
{
$asset = Asset::init($asset_id,$config['asset'][$asset_id]['properties']);
$short_name = $config['asset'][$asset_id]['properties']['short_name'];
$class = 'CryptoNote_Wallet_'.$asset->short_name;
if( ! class_exists($class)) $class = 'CryptoNote_Wallet';
$wallet = new $class($config['asset'][$asset_id]['wallet_host'],$config['asset'][$asset_id]['wallet_port']);
$class = 'CryptoNote_Daemon_'.$asset->short_name;
if( ! class_exists($class)) $class = 'CryptoNote_Daemon';
$daemon = new $class($config['asset'][$asset_id]['daemon_host'],$config['asset'][$asset_id]['daemon_port']);
$assets[] = array(
'id' => $asset_id,
'config' => $config['asset'][$asset_id],
'class' => $asset,
'wallet' => $wallet,
'daemon' => $daemon,
'wallet_ready' => $wallet->is_responding(),
);
}
include 'views/admin/dashboard.php';