summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js
diff options
context:
space:
mode:
authorRichard Yu <yurichard3839@gmail.com>2019-11-04 10:02:03 +0800
committerYousong Zhou <yszhou4tech@gmail.com>2019-11-04 10:14:15 +0800
commitb83374b3401d33f1f1bc40bbb367991cc34cc918 (patch)
tree0207830ab0118912fe8d2fa86c35641f4384c925 /applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js
parent4e9f2d3f1ef21262e8c009579d235d355fbd467a (diff)
luci-app-shadowsocks-libev: port to client side
Signed-off-by: Richard Yu <yurichard3839@gmail.com>
Diffstat (limited to 'applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js')
-rw-r--r--applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js162
1 files changed, 162 insertions, 0 deletions
diff --git a/applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js b/applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js
new file mode 100644
index 0000000000..27a2b950c2
--- /dev/null
+++ b/applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js
@@ -0,0 +1,162 @@
+'use strict';
+'require form';
+'require uci';
+'require fs';
+'require network';
+'require rpc';
+'require shadowsocks-libev as ss';
+
+var conf = 'shadowsocks-libev';
+var cfgtypes = ['ss_local', 'ss_redir', 'ss_server', 'ss_tunnel'];
+
+var callServiceList = rpc.declare({
+ object: 'service',
+ method: 'list',
+ params: [ 'name' ],
+ expect: { '': {} }
+});
+
+return L.view.extend({
+ render: function(stats) {
+ var m, s, o;
+
+ m = new form.Map(conf,
+ _('Local Instances'),
+ _('Instances of shadowsocks-libev components, e.g. ss-local, \
+ ss-redir, ss-tunnel, ss-server, etc. To enable an instance it \
+ is required to enable both the instance itself and the remote \
+ server it refers to.'));
+
+ s = m.section(form.GridSection);
+ s.addremove = true;
+ s.cfgsections = function() {
+ return this.map.data.sections(this.map.config)
+ .filter(function(s) { return cfgtypes.indexOf(s['.type']) !== -1; })
+ .map(function(s) { return s['.name']; });
+ };
+ s.sectiontitle = function(section_id) {
+ var s = uci.get(conf, section_id);
+ return (s ? s['.type'] + '.' : '') + section_id;
+ };
+ s.renderSectionAdd = function(extra_class) {
+ var el = form.GridSection.prototype.renderSectionAdd.apply(this, arguments),
+ optionEl = [E('option', { value: '_dummy' }, [_('-- instance type --')])];
+ cfgtypes.forEach(function(t) {
+ optionEl.push(E('option', { value: t }, [t.replace('_', '-')]));
+ });
+ var selectEl = E('select', {
+ class: 'cbi-input-select',
+ change: function(ev) {
+ ev.target.parentElement.nextElementSibling.nextElementSibling
+ .toggleAttribute('disabled', ev.target.value === '_dummy');
+ }
+ }, optionEl);
+ el.lastElementChild.setAttribute('disabled', '');
+ el.prepend(E('div', {}, selectEl));
+ return el;
+ };
+ s.handleAdd = function(ev, name) {
+ var selectEl = ev.target.parentElement.firstElementChild.firstElementChild,
+ type = selectEl.value;
+ this.sectiontype = type;
+ var promise = form.GridSection.prototype.handleAdd.apply(this, arguments);
+ this.sectiontype = undefined;
+ return promise;
+ };
+ s.addModalOptions = function(s, section_id, ev) {
+ var sdata = uci.get(conf, section_id),
+ stype = sdata ? sdata['.type'] : null;
+ if (stype) {
+ s.sectiontype = stype;
+ return Promise.all([
+ L.resolveDefault(fs.stat('/usr/bin/' + stype.replace('_', '-')), null),
+ network.getDevices()
+ ]).then(L.bind(function(res) {
+ s.tab('general', _('General Settings'));
+ s.tab('advanced', _('Advanced Settings'));
+ s.taboption('general', form.Flag, 'disabled', _('Disable'));
+ if (!res[0]) {
+ ss.option_install_package(s, 'general');
+ }
+ ss.options_common(s, 'advanced');
+
+ if (stype === 'ss_server') {
+ ss.options_server(s, { tab: 'general' });
+ o = s.taboption('general', form.Value, 'bind_address',
+ _('Bind address'),
+ _('The address ss-server will initiate connection from'));
+ o.datatype = 'ipaddr';
+ o.placeholder = '0.0.0.0';
+ ss.values_ipaddr(o, res[1]);
+ } else {
+ ss.options_client(s, 'general', res[1]);
+ if (stype === 'ss_tunnel') {
+ o = s.taboption('general', form.Value, 'tunnel_address',
+ _('Tunnel address'),
+ _('The address ss-tunnel will forward traffic to'));
+ o.datatype = 'hostport';
+ }
+ }
+ }, this));
+ }
+ };
+
+ o = s.option(form.DummyValue, 'overview', _('Overview'));
+ o.modalonly = false;
+ o.editable = true;
+ o.rawhtml = true;
+ o.renderWidget = function(section_id, option_index, cfgvalue) {
+ var sdata = uci.get(conf, section_id);
+ if (sdata) {
+ return form.DummyValue.prototype.renderWidget.call(this, section_id, option_index, ss.cfgvalue_overview(sdata));
+ }
+ return null;
+ };
+
+ o = s.option(form.DummyValue, 'running', _('Running'));
+ o.modalonly = false;
+ o.editable = true;
+ o.default = '';
+
+ o = s.option(form.Button, 'disabled', _('Enable/Disable'));
+ o.modalonly = false;
+ o.editable = true;
+ o.inputtitle = function(section_id) {
+ var s = uci.get(conf, section_id);
+ if (ss.ucival_to_bool(s['disabled'])) {
+ this.inputstyle = 'reset';
+ return _('Disabled');
+ }
+ this.inputstyle = 'save';
+ return _('Enabled');
+ }
+ o.onclick = function(ev) {
+ var inputEl = ev.target.parentElement.nextElementSibling;
+ inputEl.value = ss.ucival_to_bool(inputEl.value) ? '0' : '1';
+ return this.map.save();
+ }
+
+ return m.render().finally(function() {
+ L.Poll.add(function() {
+ return L.resolveDefault(callServiceList(conf), {})
+ .then(function(res) {
+ var instances = null;
+ try {
+ instances = res[conf]['instances'];
+ } catch (e) {}
+ if (!instances) return;
+ uci.sections(conf)
+ .filter(function(s) { return cfgtypes.indexOf(s['.type']) !== -1; })
+ .forEach(function(s) {
+ var el = document.getElementById('cbi-shadowsocks-libev-' + s['.name'] + '-running');
+ if (el) {
+ var name = s['.type'] + '.' + s['.name'],
+ running = instances.hasOwnProperty(name)? instances[name].running : false;
+ el.innerText = running ? 'yes' : 'no';
+ }
+ });
+ });
+ });
+ });
+ },
+});