-
Notifications
You must be signed in to change notification settings - Fork 2
/
rah_terminal.php
545 lines (446 loc) · 13.6 KB
/
rah_terminal.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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
<?php
/**
* Rah_terminal plugin for Textpattern CMS.
*
* @author Jukka Svahn
* @license GNU GPLv2
* @link https://github.com/gocom/rah_terminal
*
* Copyright (C) 2013 Jukka Svahn http://rahforum.biz
* Licensed under GNU Genral Public License version 2
* http://www.gnu.org/licenses/gpl-2.0.html
*/
class rah_terminal
{
/**
* Stores instances.
*
* @var rah_terminal
*/
static public $instance;
/**
* Captured error messages.
*
* @var array
*/
protected $error = array();
/**
* Terminal callbacks.
*
* @see rah_terminal::add_terminal()
*/
protected $terminals = array();
/**
* Terminal labels.
*
* @see rah_terminal::add_terminal()
*/
protected $terminal_labels = array();
/**
* Diagnostics notes. Attached to result messages.
*
* @var array
*/
public $notes = array();
/**
* User-stamp. Defaults to PHP process owner.
*
* @var string
*/
public $userstamp;
/**
* Last result's returned variable type.
*
* @var string
*/
public $type;
/**
* Post-event callback hook.
*
* The callback handler should return JavaScript.
*
* @var callback
*/
public $postHook;
/**
* Gets an instance.
*
* @return obj
*/
static public function get()
{
if (!self::$instance) {
self::$instance = new rah_terminal();
}
return self::$instance;
}
/**
* Delivers panes.
*/
public function panes()
{
global $step;
$steps = array(
'form' => false,
'execute' => true,
);
if (!$step || !bouncer($step, $steps)) {
$step = 'form';
}
$this->initialize();
$this->verify_terminals();
$this->$step();
}
/**
* Constructor.
*/
public function __construct()
{
add_privs('rah_terminal', '1');
add_privs('rah_terminal.php', '1');
add_privs('rah_terminal.sql', '1');
add_privs('rah_terminal.exec', '1');
add_privs('rah_terminal.js', '1');
add_privs('plugin_prefs.rah_terminal', '1');
register_callback(array($this, 'prefs'), 'plugin_prefs.rah_terminal');
register_callback(array($this, 'panes'), 'rah_terminal');
register_callback(array($this, 'head'), 'admin_side', 'head_end');
register_tab('extensions', 'rah_terminal', gTxt('rah_terminal'));
}
/**
* Initializes.
*/
public function initialize()
{
global $txp_user;
$this
->add_terminal('php', gTxt('rah_terminal_php'), array($this, 'processPhp'))
->add_terminal('sql', gTxt('rah_terminal_sql'), array($this, 'processSql'))
->add_terminal('exec', gTxt('rah_terminal_exec'), array($this, 'processExec'))
->add_terminal('js', gTxt('rah_terminal_js'), array($this, 'processJavaScript'));
if (function_exists('posix_getpwuid')) {
$u = posix_getpwuid(posix_geteuid());
$this->userstamp = !empty($u['name']) ? $u['name'] : NULL;
}
if (!$this->userstamp) {
$this->userstamp = $txp_user;
}
if (is_callable('php_uname')) {
$this->userstamp .= '@' . php_uname('n');
} else {
$this->userstamp .= '@Textpattern';
}
}
/**
* Registers a terminal processor.
*
* @param string $name
* @param string|null $label
* @param callback|null $callback
* @return rah_terminal
*/
public function add_terminal($name, $label, $callback = null)
{
if ($label === null || $callback === null) {
unset($this->terminal_labels[$name], $this->terminals[$name]);
} elseif (!in_array($label, $this->terminal_labels)) {
$this->terminals[$name] = $callback;
$this->terminal_labels[$name] = $label;
asort($this->terminal_labels);
}
return $this;
}
/**
* Verifies user's terminal permissions.
*
* This method strips out terminal options which the current
* user doesn't have privileges to.
*/
protected function verify_terminals()
{
foreach ($this->terminals as $name => $callback) {
if (!has_privs('rah_terminal.'.$name) || !is_callable($callback)) {
unset($this->terminal_labels[$name], $this->terminals[$name]);
}
}
}
/**
* The main panel.
*
* @param string|array $message The activity message
*/
public function form($message = '')
{
global $event;
pagetop(gTxt('rah_terminal'), $message);
echo
'<h1 class="txp-heading">'.gTxt('rah_terminal').'</h1>'.n.
'<form method="post" action="index.php" id="rah_terminal_container" class="txp-container">'.n.
eInput($event).
sInput('execute').
tInput().n.
' <p>'.selectInput('type', $this->terminal_labels, get_pref('rah_terminal_last_type')).'</p>'.n.
' <p>'.n.
' <textarea class="code" name="code" rows="12" cols="20">'.txpspecialchars(ps('code')).'</textarea>'.n.
' </p>'.n.
' <p>'.n.
' <input type="submit" value="'.gTxt('rah_terminal_run').'" class="publish" />'.n.
' </p>'.n.
'</form>' .n;
}
/**
* Executes commands, content or code.
*
* Outputs results as an asynchronous response script.
*/
public function execute()
{
global $theme, $app_mode;
extract(psa(array(
'type',
'code',
)));
$js = array();
$msg = gTxt('rah_terminal_success');
if (!isset($this->terminals[$type])) {
$msg = array(gTxt('rah_terminal_unknown_type'), E_WARNING);
} elseif (trim($code) === '') {
$msg = array(gTxt('rah_terminal_code_required'), E_WARNING);
} else {
set_pref('rah_terminal_last_type', $type, 'rah_terminal', PREF_HIDDEN, '', 0, PREF_PRIVATE);
try {
ob_start();
@error_reporting(-1);
@set_error_handler(array($this, 'error'));
$starting_memory = memory_get_usage();
$runtime = getmicrotime();
@$direct = call_user_func($this->terminals[$type], $code);
$runtime = rtrim(number_format(getmicrotime() - $runtime, 15, '.', ''), 0);
$total_memory = memory_get_usage();
$memory = max(0, $total_memory - $starting_memory);
restore_error_handler();
$buffer = ob_get_clean();
} catch (Exception $e) {
$this->error[] = $e->getMessage();
}
if ($this->error) {
$msg = array(gTxt('rah_terminal_error'), E_ERROR);
} elseif ($direct === false && $buffer === '') {
$msg = array(gTxt('rah_terminal_blackhole'), E_WARNING);
}
if ($buffer !== ' ' && $direct === NULL) {
$direct = trim($buffer);
}
$stamp = gTxt('rah_terminal_said_by', array(
'{time}' => safe_strftime(gTxt('rah_terminal_timestamp')),
'{user}' => $this->userstamp,
));
if ($this->type === NULL) {
$this->type = gettype($direct);
}
$notes =
gTxt('rah_terminal_notes', array(
'{runtime}' => $runtime,
'{type}' => $this->type,
'{notes}' => implode(' ', $this->notes),
'{memory}' => $memory,
));
if ($this->postHook) {
$js[] = call_user_func($this->postHook, $direct);
}
$direct = htmlspecialchars($this->getSafeValue($direct));
$errors = array();
foreach ($this->error as $error) {
$errors[] = '<span>'.htmlspecialchars($error).'</span>';
}
$errors = $errors ? '<p class="rah_terminal_errors error">' . implode('<br />', $errors) . '</p>' : '';
$code =
'<div class="rah_terminal_result">'.
'<p>'.$stamp.' <a class="rah_terminal_result_close" href="#">'.gTxt('rah_terminal_close').'</a></p>'.
'<pre><code>'.$direct.'</code></pre>'.
$errors.
'<p class="rah_terminal_note">'.$notes.'</p>'.
'</div>';
$js[] = "$('#rah_terminal_container').after('".escape_js($code)."');";
}
if ($app_mode == 'async') {
send_script_response(implode(n, $js) . $theme->announce_async($msg));
return;
}
$this->form($msg);
echo $code;
}
/**
* Takes command's output and makes that into a safe, human-readable string.
*
* @param mixed $code The input
* @return string The input in safe format
*/
protected function getSafeValue($code)
{
if (is_bool($code)) {
return $code ? '(bool) true' : '(bool) false';
}
if (is_scalar($code)) {
return $code;
}
if (is_array($code)) {
return print_r($code, true);
}
return getType($code);
}
/**
* Evaluates PHP.
*
* This method handles 'php' terminal option.
*
* @param string $php
* @return mixed Returned value, NULL or FALSE
*/
protected function processPhp($php)
{
return eval("echo ' '; {$php}");
}
/**
* Executes shell commands.
*
* This method handles 'shell' terminal option.
*
* @param string $cmd
* @return string Standard output
*/
protected function processExec($cmd)
{
system($cmd, $output);
return $output;
}
/**
* Executes an SQL query.
*
* @param string $sql The statement
* @return mixed
*/
protected function processSql($sql)
{
global $DB;
$q = safe_query($sql);
$this->type = gettype($q);
$this->userstamp = $DB->user . '@' . $DB->host;
if ($q === false) {
$this->error = array();
trigger_error(mysql_error($DB->link) . ' ('.mysql_errno($DB->link).')', E_USER_ERROR);
return $q;
} else {
$this->notes[] = gTxt('rah_terminal_rows_affected', array('{count}' => mysql_affected_rows($DB->link)));
}
if (is_resource($q)) {
$out = array();
while($r = mysql_fetch_assoc($q)) {
$out[] = $r;
}
return $out;
}
return $q;
}
/**
* Processes JavaScript.
*
* @param string $js The JavaScript input
* @return string
*/
public function processJavaScript($js)
{
$this->postHook = array($this, 'postJavaScript');
return $js;
}
/**
* Post-processes JavaScript.
*
* @param string
*/
public function postJavaScript($js)
{
return <<<EOF
(function(){
var r = (function()
{
{$js}
})();
textpattern.Console.log(r);
})();
EOF;
}
/**
* Adds styles and JavaScript to the <head>.
*/
public function head()
{
global $event, $theme;
if ($event != 'rah_terminal') {
return;
}
$error = escape_js($theme->announce_async(array(gTxt('rah_terminal_fatal_error'), E_ERROR)));
echo <<<EOF
<style type="text/css">
.rah_terminal_result_close {
float: right;
}
.rah_terminal_result pre {
max-height: 9em;
overflow-y: auto;
}
</style>
EOF;
$js = <<<EOF
$(document).ready(function(){
$('form#rah_terminal_container').txpAsyncForm({
error : function() {
$.globalEval('{$error}');
},
success : function(form, event, data) {
if($.trim(data) === '') {
$.globalEval('{$error}');
}
}
});
$(document).on('click', '.rah_terminal_result_close', function(e) {
e.preventDefault();
$(this).parents('.rah_terminal_result').remove();
});
});
EOF;
echo script_js($js);
}
/**
* Error handler for terminal options.
*
* @param int $type The error type
* @param string $message The error message
* @return bool Returns TRUE
*/
public function error($type, $message)
{
$error = array(
E_WARNING => 'Warning',
E_NOTICE => 'Notice',
E_USER_ERROR => 'Error',
E_USER_WARNING => 'Warning',
E_USER_NOTICE => 'Notice',
);
if (isset($error[$type])) {
$this->error[] = $error[$type].': '.$message;
}
return true;
}
/**
* Plugin's options page.
*
* Redirects to the plugin's panel.
*/
public function prefs()
{
header('Location: ?event=rah_terminal');
echo '<p><a href="?event=rah_terminal">'.gTxt('continue').'</a></p>';
}
}
rah_terminal::get();