-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathajax_device_status.php
More file actions
100 lines (98 loc) · 3.39 KB
/
ajax_device_status.php
File metadata and controls
100 lines (98 loc) · 3.39 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?
// ===================================================================
// Sim Roulette -> AJAX
// License: GPL v3 (http://www.gnu.org/licenses/gpl.html)
// Copyright (c) 2016-2025 Sim Roulette, https://sim-roulette.com
// ===================================================================
include("_func.php");
$s='';
$id=0;
if ($result = mysqli_query($db, 'SELECT d.*,a.status AS status2,a.count,a.progress,a.action FROM `devices` d LEFT JOIN `actions` a ON a.device=d.id ORDER BY d.`id`,a.`status`,a.`id`'))
{
while ($row = mysqli_fetch_assoc($result))
{
if ($row['id']!=$id)
{
if ($id)
{
$s.='#';
}
$s.=$row['id'].';';
$id=$row['id'];
$status=0;
}
$progress=$progress_txt=round($row['progress']/($row['count']/100+0.0000001),2);
if ($progress && $progress<5){$progress=5;}
// $access=file_get_contents($GLOBALS['root'].'flags/answer_'.$row['id']);
$access=flagGet($row['id'],'answer',1);
$r='';
if ($access+30<time())
{
$o='Offline';
if (!$access){$t=': ∞';} else {$t=': '.time_calc(time()-$access);}
}
else
{
$o='Online';
if ($row['title']=='[create]' || $row['title']=='[init]' || $row['init']+10>time())
{
$r=';'.$row['id'];
if ($row['init']+10>time())
{
// $r.=';<span class="but_win" data-id="win_action" data-title=\'Управление агрегатором '.$row['title'].'\' data-type="ajax_device_action.php?id='.$id.'" data-height="400" data-width="600">'.$row['title'].'</span>';
$r.=';'.$row['title'];
//'<div class="sidebar legend">'.$row['serial'].'</div>';
$explane='';
if ($row['model']=='SR-Box-Bank' || $row['model']=='SR-Board')
{
$d=unserialize($row['data']);
if ($d['map']=='1')
{
$explane='64';
}
else
{
for ($i=0;$i<8;$i++)
{
if ($d['map'][$i]=='1')
{
$explane++;
}
}
if ($explane){$explane=$explane*64;} else {$explane='';}
}
}
if ($explane){$explane='<br><span class="legend">'.$explane.' SIM</span>';}
$r.=';'.str_replace('<img src="icons/','',str_replace('">','',icon_out($row['model'],$row['data'])));
$r.=';'.$row['model'].$explane;
}
}
else
{
// $n=';'.$row['id'].';'.$row['title'].';'.str_replace('<img src="icons/','',str_replace('">','',icon_out($row['model'],$row['data'])));
// $n=';'.$row['id'].';<span class="but_win" data-id="win_action" data-title=\'Управление агрегатором '.$row['title'].'\' data-type="ajax_device_action.php?id='.$id.'" data-height="400" data-width="600">'.$row['title'].'</span>;'.str_replace('<img src="icons/','',str_replace('">','',icon_out($row['model'],$row['data'])));
// $n=';'.$row['id'].';'.$row['title'].';'.str_replace('<img src="icons/','',str_replace('">','',icon_out($row['model'],$row['data'])));
}
$t='';
}
if ($row['status2']=='inprogress' && $row['count'])
{
$s.='Прогресс: '.$progress_txt.'% <span class="legend">['.$row['action'].']</span> <progress value="'.$progress.'" max="100" style="margin: 3px 0"></progress><span class="legend '.$o.'">'.$o.$t.'</span><br><br>';
$status=1;
}
elseif ($row['status2']=='waiting')
{
$s.='дальше ▶ <span class="legend">['.$row['action'].']</span><br><br>';
$status=1;
}
else
{
if (!$status)
{
$s.=' <span class="'.$o.'">'.$o.$t.'</span>'.$r;
}
$status=1;
}
}
echo trim($s,'#');
}