- Updated readme - Support for e2ee is here! It's in beta as I am sure there are still things to do (such as adding a node for encrypting files as files currently are not encrypted). - Added nodes for joining a room (and forcing users into a room), creating rooms, decrypting files, and inviting users to a room. - matrix-synapse-register node name changed from "Synapse Register v1" to "Shared Secret Registration" to make it more self explanatory. - matrix-receive node updated so that instead of selecting what events to ignore you select what events to listen on (this way it isn't a BC every time we add another event). - matrix-receive now handles m.emote & m.sticker events - matrix-server-config updated to now include the device ID and a checkbox to flag whether to enable e2ee support or not. - matrix-synapse-create-edit-user.html updated to include link to the API docs' - matrix-synapse-deactivate-user.html updated to include message about alternative way to deactivate users (in a way that is recoverable) - matrix-synapse-register node does not need to display if connected or not since it users an entirely different API anyways - matrix-synapse-users.html updated to include link to API docs
83 lines
2.7 KiB
JavaScript
83 lines
2.7 KiB
JavaScript
module.exports = function(RED) {
|
|
function MatrixJoinRoom(n) {
|
|
RED.nodes.createNode(this, n);
|
|
|
|
let node = this;
|
|
|
|
this.name = n.name;
|
|
this.server = RED.nodes.getNode(n.server);
|
|
this.roomId = n.roomId;
|
|
|
|
if(!this.server) {
|
|
node.error('Server must be configured on the node.');
|
|
return;
|
|
}
|
|
|
|
this.encodeUri = function(pathTemplate, variables) {
|
|
for (const key in variables) {
|
|
if (!variables.hasOwnProperty(key)) {
|
|
continue;
|
|
}
|
|
pathTemplate = pathTemplate.replace(
|
|
key, encodeURIComponent(variables[key]),
|
|
);
|
|
}
|
|
return pathTemplate;
|
|
};
|
|
|
|
node.status({ fill: "red", shape: "ring", text: "disconnected" });
|
|
|
|
node.server.on("disconnected", function(){
|
|
node.status({ fill: "red", shape: "ring", text: "disconnected" });
|
|
});
|
|
|
|
node.server.on("connected", function() {
|
|
node.status({ fill: "green", shape: "ring", text: "connected" });
|
|
});
|
|
|
|
node.on("input", function (msg) {
|
|
if (! node.server || ! node.server.matrixClient) {
|
|
node.warn("No matrix server selected");
|
|
return;
|
|
}
|
|
|
|
if(!node.server.isConnected()) {
|
|
node.error("Matrix server connection is currently closed");
|
|
node.send([null, msg]);
|
|
}
|
|
|
|
let roomId = node.roomId || msg.topic;
|
|
if(!roomId) {
|
|
node.error("room must be defined in either msg.topic or in node config");
|
|
return;
|
|
}
|
|
|
|
if(!msg.userId) {
|
|
node.error("msg.userId is required to set user into a room");
|
|
return;
|
|
}
|
|
|
|
// we need the status code, so set onlydata to false for this request
|
|
node.server.matrixClient.http
|
|
.authedRequest(
|
|
undefined,
|
|
'POST',
|
|
node.encodeUri(
|
|
"/_synapse/admin/v1/join/$room_id_or_alias",
|
|
{ $room_id_or_alias: roomId },
|
|
),
|
|
undefined,
|
|
{ "user_id": msg.userId },
|
|
{ prefix: '' }
|
|
).then(function(e){
|
|
msg.payload = e;
|
|
node.send([msg, null]);
|
|
}).catch(function(e){
|
|
node.warn("Error joining user to room " + e);
|
|
msg.error = e;
|
|
node.send([null, msg]);
|
|
});
|
|
});
|
|
}
|
|
RED.nodes.registerType("matrix-synapse-join-room", MatrixJoinRoom);
|
|
} |