diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-02-07 18:40:36 +0100 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-07-07 15:25:49 +0200 |
commit | c89bbd50fdba8b07930c29bae6ca71cc54515e2c (patch) | |
tree | fea7f220e1fa00538b6c3270910afc5cf33bd43d /modules/luci-base/htdocs/luci-static/resources | |
parent | 558f8c3b2a40d187068e339be70d4173b555d4a5 (diff) |
luci-base: add ubus-http gateway
Add an admin/ubus route mimicking the native uhttpd-mod-ubus protocol.
The main difference to the native protocol is that this gateway requires
no additional per-object/procedure ACL setup on the router side and that
it is located under the same prefix as LuCI itself, allowing the reuse
of the session login cookie.
This route is meant to be a transitional mechanism until client side
RPC calls are eventually migrated to uhttpd-mod-ubus completely.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'modules/luci-base/htdocs/luci-static/resources')
-rw-r--r-- | modules/luci-base/htdocs/luci-static/resources/luci.js | 147 |
1 files changed, 115 insertions, 32 deletions
diff --git a/modules/luci-base/htdocs/luci-static/resources/luci.js b/modules/luci-base/htdocs/luci-static/resources/luci.js index 1653bcfce2..07e8d8c887 100644 --- a/modules/luci-base/htdocs/luci-static/resources/luci.js +++ b/modules/luci-base/htdocs/luci-static/resources/luci.js @@ -433,8 +433,6 @@ __init__: function(env) { Object.assign(this.env, env); - document.addEventListener('DOMContentLoaded', this.setupDOM.bind(this)); - document.addEventListener('poll-start', function(ev) { document.querySelectorAll('[id^="xhr_poll_status"]').forEach(function(e) { e.style.display = (e.id == 'xhr_poll_status_off') ? 'none' : ''; @@ -447,6 +445,17 @@ }); }); + var domReady = new Promise(function(resolveFn, rejectFn) { + document.addEventListener('DOMContentLoaded', resolveFn); + }); + + Promise.all([ + domReady, + this.require('ui') + ]).then(this.setupDOM.bind(this)).catch(function(error) { + alert('LuCI class loading error:\n' + error); + }); + originalCBIInit = window.cbi_init; window.cbi_init = function() {}; }, @@ -582,38 +591,32 @@ /* DOM setup */ setupDOM: function(ev) { - Promise.all([ - L.require('ui') - ]).then(function() { - Request.addInterceptor(function(res) { - if (res.status != 403 || res.headers.get('X-LuCI-Login-Required') != 'yes') - return; + Request.addInterceptor(function(res) { + if (res.status != 403 || res.headers.get('X-LuCI-Login-Required') != 'yes') + return; + + Request.poll.stop(); + + L.ui.showModal(_('Session expired'), [ + E('div', { class: 'alert-message warning' }, + _('A new login is required since the authentication session expired.')), + E('div', { class: 'right' }, + E('div', { + class: 'btn primary', + click: function() { + var loc = window.location; + window.location = loc.protocol + '//' + loc.host + loc.pathname + loc.search; + } + }, _('To login…'))) + ]); - Request.poll.stop(); - - L.ui.showModal(_('Session expired'), [ - E('div', { class: 'alert-message warning' }, - _('A new login is required since the authentication session expired.')), - E('div', { class: 'right' }, - E('div', { - class: 'btn primary', - click: function() { - var loc = window.location; - window.location = loc.protocol + '//' + loc.host + loc.pathname + loc.search; - } - }, _('To login…'))) - ]); - - L.error('AuthenticationError', 'Session expired'); - }); + L.error('AuthenticationError', 'Session expired'); + }); - originalCBIInit(); - Request.poll.start(); + originalCBIInit(); + Request.poll.start(); - document.dispatchEvent(new CustomEvent('luci-loaded')); - }).catch(function(error) { - alert('LuCI class loading error:\n' + error); - }); + document.dispatchEvent(new CustomEvent('luci-loaded')); }, env: {}, @@ -923,7 +926,87 @@ }), Class: Class, - Request: Request + Request: Request, + + view: Class.extend({ + __name__: 'LuCI.View', + + __init__: function() { + var mc = document.getElementById('maincontent'); + + L.dom.content(mc, E('div', { 'class': 'spinning' }, _('Loading view…'))); + + return Promise.resolve(this.load()) + .then(L.bind(this.render, this)) + .then(L.bind(function(nodes) { + var mc = document.getElementById('maincontent'); + + L.dom.content(mc, nodes); + L.dom.append(mc, this.addFooter()); + }, this)); + }, + + load: function() {}, + render: function() {}, + + handleSave: function(ev) { + var tasks = []; + + document.getElementById('maincontent') + .querySelectorAll('.cbi-map').forEach(function(map) { + tasks.push(L.dom.callClassMethod(map, 'save')); + }); + + return Promise.all(tasks); + }, + + handleSaveApply: function(ev) { + return this.handleSave(ev).then(function() { + L.ui.changes.apply(true); + }); + }, + + handleReset: function(ev) { + var tasks = []; + + document.getElementById('maincontent') + .querySelectorAll('.cbi-map').forEach(function(map) { + tasks.push(L.dom.callClassMethod(map, 'reset')); + }); + + return Promise.all(tasks); + }, + + addFooter: function() { + var footer = E([]), + mc = document.getElementById('maincontent'); + + if (mc.querySelector('.cbi-map')) { + footer.appendChild(E('div', { 'class': 'cbi-page-actions' }, [ + E('input', { + 'class': 'cbi-button cbi-button-apply', + 'type': 'button', + 'value': _('Save & Apply'), + 'click': L.bind(this.handleSaveApply, this) + }), ' ', + E('input', { + 'class': 'cbi-button cbi-button-save', + 'type': 'submit', + 'value': _('Save'), + 'click': L.bind(this.handleSave, this) + }), ' ', + E('input', { + 'class': 'cbi-button cbi-button-reset', + 'type': 'button', + 'value': _('Reset'), + 'click': L.bind(this.handleReset, this) + }) + ])); + } + + return footer; + } + }) }); XHR = Class.extend({ |