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
|
{#
Copyright 2012-2022 Jo-Philipp Wich <jo@mein.io>
Licensed to the public under the Apache License 2.0.
-#}
{%
include('header', { css: `
.commands {
display: flex;
flex-wrap: wrap;
}
.commandbox {
flex: 0 0 30%;
margin: .5em;
display: flex;
flex-direction: column;
}
.commandbox > p,
.commandbox > p > * {
display: block;
}
.commandbox div {
margin-top: auto;
}
` });
-%}
<script type="text/javascript">//<![CDATA[
function command_run(ev, id)
{
var field = document.getElementById(id);
var legend = document.getElementById('command-rc-legend');
var output = document.getElementById('command-rc-output');
if (legend && output)
{
output.innerHTML =
'<img src="{{ resource }}/icons/loading.gif" alt="{{ _('Loading') }}" style="vertical-align:middle" /> ' +
_('Waiting for command to complete...')
;
legend.parentNode.style.display = 'block';
legend.style.display = 'inline';
L.Request.get(L.url('admin/system/commands/run', id), field ? { args: field.value } : null).then(function(reply) {
var st = reply.json();
if (st.binary)
st.stdout = '[' + _('Binary data not displayed, download instead.') + ']';
output.innerHTML = String.format(
'<pre><strong># %h\n</strong>%h<span style="color:red">%h</span></pre>' +
'<div class="alert-message warning">%h (%h %d)</div>',
st.command, st.stdout, st.stderr,
(st.exitcode == 0) ? _('Command successful') : _('Command failed'),
_('Code:'), st.exitcode);
}).catch(function() {
output.innerHTML = '<span class="error">%h</span>'.format(_('Failed to execute command!'));
}).finally(function() {
legend.style.display = 'none';
location.hash = '#output';
});
}
ev.preventDefault();
}
function command_download(ev, id)
{
var args;
var field = document.getElementById(id);
if (field)
args = encodeURIComponent(field.value);
location.href = L.url('admin/system/commands/download', id) + (args ? '/' + args : '');
ev.preventDefault();
}
function command_link(ev, id)
{
var legend = document.getElementById('command-rc-legend');
var output = document.getElementById('command-rc-output');
var args;
var field = document.getElementById(id);
if (field)
args = encodeURIComponent(field.value);
if (legend && output)
{
var prefix = location.protocol + '//' + location.host + L.url('command') + '/';
var suffix = (args ? '?args=' + args : '');
var link = prefix + id + suffix;
var link_nodownload = prefix + id + "s" + suffix;
legend.style.display = 'none';
output.parentNode.style.display = 'block';
output.innerHTML = String.format(
'<div class="alert-message"><p>%h <a href="%s">%s</a></p><p>%h <a href="%s">%s</a></p></div>',
_('Download execution result'), link, link,
_('Or display result'), link_nodownload, link_nodownload
);
location.hash = '#output';
}
ev.preventDefault();
}
//]]></script>
{%
const commands = [];
uci.foreach('luci', 'command', s => push(commands, s));
-%}
<form method="get" action="{{ entityencode(FULL_REQUEST_URI) }}">
<div class="cbi-map">
<h2 name="content">{{ _('Custom Commands') }}</h2>
{% if (length(commands) == 0): %}
<div class="cbi-section">
<div class="table cbi-section-table">
<div class="tr cbi-section-table-row">
<p>
<em>{{ _('This section contains no values yet') }}</em>
</p>
</div>
</div>
</div>
{% else %}
<div class="commands">
{% for (let command in commands): %}
<div class="commandbox">
<h3>{{ entityencode(command.name) }}</h3>
<p>{{ _('Command:') }} <code>{{ entityencode(command.command) }}</code></p>
{% if (command.param == "1"): %}
<p>{{ _('Arguments:') }} <input type="text" id="{{ command['.name'] }}" /></p>
{% endif %}
<div>
<button class="cbi-button cbi-button-apply" onclick="command_run(event, '{{ command['.name'] }}')">{{ _('Run') }}</button>
<button class="cbi-button cbi-button-download" onclick="command_download(event, '{{ command['.name'] }}')">{{ _('Download') }}</button>
{% if (command.public == "1"): %}
<button class="cbi-button cbi-button-link" onclick="command_link(event, '{{ command['.name'] }}')">{{ _('Link') }}</button>
{% endif %}
</div>
</div>
{% endfor %}
<a name="output"></a>
</div>
{% endif %}
</div>
<fieldset class="cbi-section" style="display:none">
<legend id="command-rc-legend">{{ _('Collecting data...') }}</legend>
<span id="command-rc-output"></span>
</fieldset>
</form>
{% include('footer') %}
|