forked from BrightGamePanel/bgpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
scriptsummary.php
258 lines (229 loc) · 7.38 KB
/
scriptsummary.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
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
<?php
/* vim: set expandtab tabstop=4 shiftwidth=4 softtabstop=4: */
/**
* LICENSE:
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*
* @categories Games/Entertainment, Systems Administration
* @package Bright Game Panel
* @author warhawk3407 <warhawk3407@gmail.com> @NOSPAM
* @copyleft 2013
* @license GNU General Public License version 3.0 (GPLv3)
* @version (Release 0) DEVELOPER BETA 8
* @link http://www.bgpanel.net/
*/
$page = 'scriptsummary';
$tab = 4;
$isSummary = TRUE;
###
if (isset($_GET['id']) && is_numeric($_GET['id']))
{
$scriptid = $_GET['id'];
}
else
{
exit('Error:ScriptID error.');
}
###
$return = 'scriptsummary.php?id='.urlencode($scriptid);
require("./configuration.php");
require("./include.php");
$title = T_('Script Summary');
if (query_numrows( "SELECT `name` FROM `".DBPREFIX."script` WHERE `scriptid` = '".$scriptid."'" ) == 0)
{
exit('Error: ScriptID is invalid.');
}
$rows = query_fetch_assoc( "SELECT * FROM `".DBPREFIX."script` WHERE `scriptid` = '".$scriptid."' LIMIT 1" );
$cat = query_fetch_assoc( "SELECT * FROM `".DBPREFIX."scriptCat` WHERE `id` = '".$rows['catid']."' LIMIT 1" );
$group = query_fetch_assoc( "SELECT `name` FROM `".DBPREFIX."group` WHERE `groupid` = '".$rows['groupid']."' LIMIT 1" );
//---------------------------------------------------------+
$checkGroup = checkClientGroup($rows['groupid'], $_SESSION['clientid']);
if ($checkGroup == FALSE)
{
$_SESSION['msg1'] = T_('Error!');
$_SESSION['msg2'] = T_('This is not your script!');
$_SESSION['msg-type'] = 'error';
header( 'Location: index.php' );
die();
}
//---------------------------------------------------------+
include("./bootstrap/header.php");
/**
* Notifications
*/
include("./bootstrap/notifications.php");
?>
<ul class="nav nav-tabs">
<li class="active"><a href="scriptsummary.php?id=<?php echo $scriptid; ?>"><?php echo T_('Summary'); ?></a></li>
<?php
if ($rows['status'] == 'Active')
{
echo "\t\t\t\t<li><a href=\"scriptconsole.php?id=".$scriptid."\">Console</a></li>";
}
?>
</ul>
<div class="row-fluid">
<div class="span6">
<div class="well">
<div style="text-align: center; margin-bottom: 5px;">
<span class="label label-info"><?php echo T_('Script Information'); ?></span>
</div>
<table class="table table-striped table-bordered table-condensed">
<tr>
<td><?php echo T_('Name'); ?></td>
<td><?php echo htmlspecialchars($rows['name'], ENT_QUOTES); ?></td>
</tr>
<tr>
<td><?php echo T_('Category'); ?></td>
<td><?php echo htmlspecialchars($cat['name'], ENT_QUOTES); ?></td>
</tr>
<tr>
<td><?php echo T_('Status'); ?></td>
<td><?php echo formatStatus($rows['status']); ?></td>
</tr>
<tr>
<td><?php echo T_('Owner Group'); ?></td>
<td><?php if (!empty($group['name'])) { echo htmlspecialchars($group['name'], ENT_QUOTES); } else { echo "<span class=\"label\"><em>None</em></span>"; } ?></td>
</tr>
</table>
</div>
</div>
<div class="span6">
<div class="well">
<div style="text-align: center; margin-bottom: 5px;">
<span class="label label-info"><?php echo T_('Script Description'); ?></span>
</div>
<table class="table table-bordered table-condensed">
<tr>
<td style="text-align: center;"><?php echo htmlspecialchars($rows['description'], ENT_QUOTES); ?></td>
</tr>
</table>
</div>
</div>
</div>
<div class="row-fluid">
<div class="span6">
<div class="well">
<div style="text-align: center; margin-bottom: 5px;">
<span class="label label-info"><?php echo T_('Script Monitoring'); ?></span>
</div>
<table class="table table-bordered table-condensed">
<tr>
<td style="text-align: center;"><?php echo T_('Panel Status'); ?>: <?php
if (!empty($rows['panelstatus']))
{
$pstatus = formatStatus($rows['panelstatus']);
}
else
{
$pstatus = "<span class=\"label\"><em>None</em></span>";
}
echo $pstatus;
?></td>
</tr>
</table>
<div style="text-align: center; margin-bottom: 5px;">
<span class="label label-info"><?php echo T_('Script Configuration'); ?></span>
</div>
<table class="table table-striped table-bordered table-condensed">
<tr>
<td><?php echo T_('Exec Mode'); ?></td>
<td><?php if ($rows['type'] == '0') { echo T_('Non-Interactive'); } else { echo T_('Interactive'); }; ?></td>
</tr>
<tr>
<td><?php echo T_('File Name'); ?></td>
<td><?php echo htmlspecialchars($rows['filename'], ENT_QUOTES); ?></td>
</tr>
<tr>
<td><?php echo T_('Start Command'); ?></td>
<td><?php echo htmlspecialchars($rows['startline'], ENT_QUOTES); ?></td>
</tr>
<tr>
<td><?php echo T_('Home Directory'); ?></td>
<td><?php echo htmlspecialchars($rows['homedir'], ENT_QUOTES); ?></td>
</tr>
<?php
if (!empty($rows['panelstatus']))
{
?>
<tr>
<td><?php echo T_('Screen Name'); ?></td>
<td><?php echo htmlspecialchars($rows['screen'], ENT_QUOTES); ?></td>
</tr>
<?php
}
?>
</table>
</div>
</div>
<div class="span6">
<div class="well">
<div style="text-align: center; margin-bottom: 5px;">
<span class="label label-info"><?php echo T_('Script Control Panel'); ?></span>
</div>
<?php
if ($rows['status'] == 'Pending')
{
?>
<div class="alert alert-info">
<h4 class="alert-heading"><?php echo T_('Script not validated !'); ?></h4>
<p>
<?php echo T_('An administrator must validate the script in order to use it.'); ?>
</p>
</div>
<?php
}
else
{
if ($rows['type'] == '0')
{
?>
<div style="text-align: center;">
<a class="btn btn-primary" href="scriptprocess.php?task=scriptstart&scriptid=<?php echo $scriptid; ?>"><?php echo T_('Launch'); ?></a>
</div>
<?php
}
else if ($rows['status'] == 'Inactive')
{
?>
<div class="alert alert-block" style="text-align: center;">
<h4 class="alert-heading"><?php echo T_('The script has been disabled !'); ?></h4>
</div>
<?php
}
else if ($rows['panelstatus'] == 'Stopped') //The script has been validated and is marked as offline
{
?>
<div style="text-align: center;">
<a class="btn btn-primary" href="scriptprocess.php?task=scriptstart&scriptid=<?php echo $scriptid; ?>"><?php echo T_('Start'); ?></a>
</div>
<?php
}
else if ($rows['panelstatus'] == 'Started') //The script has been validated and is marked as online
{
?>
<div style="text-align: center;">
<a class="btn btn-warning" href="scriptprocess.php?task=scriptstop&scriptid=<?php echo $scriptid; ?>"><?php echo T_('Stop'); ?></a>
</div>
<?php
}
}
?>
</div>
</div>
</div>
<?php
include("./bootstrap/footer.php");
?>