@@ -1,11 +1,12 @@
var channel = function(){
this.name = null;
this.TS = null;
- this.topic = null;
+ this.topic = { 'setter': null, 'TS': null, 'text': null };
this.modes = {}; // indexed by mode name
this.statusModes = {}; // indexed by UID
this.listModes = {}; // indexed by mode name
this.users = [];
+ this.metadata = {};
this.setTS = function(TS){
this.TS = TS;
@@ -61,6 +62,20 @@ var channel = function(){
}
};
+
+ this.setMetadata = function(name, visibility, value){
+ if(value){
+ this.metadata[name] = { 'visibility': visibility, 'value': value };
+ } else {
+ if(name in this.metadata){
+ delete this.metadata[name];
+ }
+ };
+ this.setTopic = function(topic){
+ this.topic = topic;
module.exports = channel;
@@ -416,8 +416,23 @@ var cmdBinds = {
},
'METADATA': function(msg){
- console.log(msg);
- //TODO
+ var what = msg.args[0];
+ var name = msg.args[1];
+ var visibility = msg.args[2];
+ if(msg.args.length > 3){
+ var value = msg.args[3];
+ var value = null;
+ var channel = handlers.findChannel(what);
+ if(channel){
+ channel.setMetadata(name, visibility, value);
+ return;
+ var user = handlers.findUser(what);
+ if(user){
+ user.setMetadata(name, visibility, value);
'NETINFO': function(msg){
@@ -477,13 +492,16 @@ var cmdBinds = {
'SDESC': function(msg){
+ msg.sender.uplink.setDescription(msg.args[0]);
'TOPIC': function(msg){
+ var channel = handlers.findChannel(msg.args[0]);
+ if(!channel) return;
+ var setter = msg.args[1];
+ var TS = msg.args[2];
+ var text = msg.args[3];
+ channel.setTopic({'setter': setter, 'TS': TS, 'text': text });
/*
messagedata {
@@ -12,7 +12,11 @@ var server = function(){
this.description = newDescription;
this.distance = newDistance;
this.uplink = newUplink;
- }
+ this.setDescription = function(description){
+ this.description = description;
module.exports = server;
@@ -15,6 +15,7 @@ var user = function(){
this.secure = false;
this.certfp = null;
this.vident = null;
this.introduce = function(nick, distance, TS, ident, host, uid, account, umodes, vhost, cloakedHost, ip, realname, uplink){ // nick, distance, TS, ident, host, uid, account, umodes, vhost, cloakedHost, ip, realname, uplink
this.name = nick;
@@ -30,7 +31,6 @@ var user = function(){
this.ip = ip;
this.realname = realname;
this.uplink = uplink;
- console.log(this.umodes);
this.setSecure = function(secure){
@@ -61,7 +61,16 @@ var user = function(){
for(umode in umodes){
this.umodes[umode] = umodes[umode];