Parcourir la source

TOPIC and METADATA

k4be il y a 5 ans
Parent
commit
4b863e9a10
4 fichiers modifiés avec 56 ajouts et 10 suppressions
  1. 16 1
      channel.js
  2. 24 6
      protocol/unrealircd.js
  3. 5 1
      server.js
  4. 11 2
      user.js

+ 16 - 1
channel.js

@@ -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;

+ 24 - 6
protocol/unrealircd.js

@@ -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];
+		} else {
+			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){
-		console.log(msg);
-		//TODO
+		msg.sender.uplink.setDescription(msg.args[0]);
 	},
 	
 	'TOPIC': function(msg){
-		console.log(msg);
-		//TODO
+		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 {

+ 5 - 1
server.js

@@ -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;

+ 11 - 2
user.js

@@ -15,6 +15,7 @@ var user = function(){
 	this.secure = false;
 	this.certfp = null;
 	this.vident = null;
+	this.metadata = {};
 
 	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];
 		}
-		console.log(this.umodes);
+	}
+	
+	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];
+			}
+		}
 	}
 }