12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- var user = function(){
- this.name = null;
- this.TS = null;
- this.ident = null;
- this.host = null;
- this.account = null;
- this.umodes = null;
- this.vhost = null;
- this.cloakedHost = null;
- this.ip = null;
- this.realname = null;
- this.uid = null;
- this.distance = null;
- this.uplink = null;
- 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;
- this.distance = distance;
- this.TS = TS;
- this.ident = ident;
- this.host = host;
- this.uid = uid;
- this.account = account;
- this.umodes = umodes;
- this.vhost = vhost;
- this.cloakedHost = cloakedHost;
- this.ip = ip;
- this.realname = realname;
- this.uplink = uplink;
- }
-
- this.setSecure = function(secure){
- this.secure = secure;
- }
-
- this.setFingerprint = function(certfp){
- this.certfp = certfp;
- }
-
- this.changeVHost = function(host){
- this.vhost = host;
- }
-
- this.changeVIdent = function(ident){
- this.vident = ident;
- }
-
- this.setRealname = function(realname){
- this.realname = realname;
- }
-
- this.changeNick = function(nick){
- this.name = nick;
- }
- }
- module.exports = user;
|