luci-base: rpc.js: make base URL configurable

Implement setters and getters for the base URL prefix used and also
implement a session ID getter while we're at it.

Signed-off-by: Jo-Philipp Wich <jo@mein.io>
This commit is contained in:
Jo-Philipp Wich 2019-04-05 08:08:17 +02:00
parent eee323cb66
commit 90288b2e2c

View file

@ -3,7 +3,8 @@
var rpcRequestRegistry = {},
rpcRequestBatch = null,
rpcRequestID = 1,
rpcSessionID = L.env.sessionid || '00000000000000000000000000000000';
rpcSessionID = L.env.sessionid || '00000000000000000000000000000000',
rpcBaseURL = L.url('admin/ubus');
return L.Class.extend({
call: function(req, cbFn) {
@ -25,7 +26,7 @@ return L.Class.extend({
q += '/%s.%s'.format(req.params[1], req.params[2]);
}
return L.Request.post(L.url('admin/ubus') + q, req, {
return L.Request.post(rpcBaseURL + q, req, {
timeout: (L.env.rpctimeout || 5) * 1000,
credentials: true
}).then(cb);
@ -190,7 +191,19 @@ return L.Class.extend({
}, this, this, options);
},
getSessionID: function() {
return rpcSessionID;
},
setSessionID: function(sid) {
rpcSessionID = sid;
},
getBaseURL: function() {
return rpcBaseURL;
},
setBaseURL: function(url) {
rpcBaseURL = url;
}
});