Skip to content
Snippets Groups Projects
Commit 2d0896e4 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Allow configurable modification via webserver

parent 5711ff31
No related branches found
No related tags found
No related merge requests found
Pipeline #28420 passed
...@@ -276,6 +276,14 @@ function broadcastExcept(exc, name, ...args) { ...@@ -276,6 +276,14 @@ function broadcastExcept(exc, name, ...args) {
} }
} }
function locateConfigPeer(uri) {
let cur_uri = uri;
while (cur_uri.length > 0 && !cfg_to_peer.hasOwnProperty(cur_uri)) {
cur_uri = cur_uri.substring(0, cur_uri.lastIndexOf('/'));
}
return (cur_uri.length > 0) ? cfg_to_peer[cur_uri] : null;
}
app.ws('/', (ws, req) => { app.ws('/', (ws, req) => {
console.log("New web socket request"); console.log("New web socket request");
...@@ -471,11 +479,9 @@ app.ws('/', (ws, req) => { ...@@ -471,11 +479,9 @@ app.ws('/', (ws, req) => {
* Update certain URIs values * Update certain URIs values
*/ */
p.bind("update_cfg", (uri, json) => { p.bind("update_cfg", (uri, json) => {
const parsedURI = stringSplitter(uri) let peer = locateConfigPeer(uri);
console.log("URI", uri)
console.log("JSON", json) if (peer) {
if(uri_to_peer[parsedURI]){
let peer = uri_to_peer[parsedURI]
peer.send("update_cfg", uri, json) peer.send("update_cfg", uri, json)
}else{ }else{
console.log("Failed to update the configuration uri", uri) console.log("Failed to update the configuration uri", uri)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment