user.js 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. var user = function(){
  2. this.name = null;
  3. this.TS = null;
  4. this.ident = null;
  5. this.host = null;
  6. this.account = null;
  7. this.umodes = null;
  8. this.vhost = null;
  9. this.cloakedHost = null;
  10. this.ip = null;
  11. this.realname = null;
  12. this.uid = null;
  13. this.distance = null;
  14. this.uplink = null;
  15. this.secure = false;
  16. this.certfp = null;
  17. this.vident = null;
  18. 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
  19. this.name = nick;
  20. this.distance = distance;
  21. this.TS = TS;
  22. this.ident = ident;
  23. this.host = host;
  24. this.uid = uid;
  25. this.account = account;
  26. this.umodes = umodes;
  27. this.vhost = vhost;
  28. this.cloakedHost = cloakedHost;
  29. this.ip = ip;
  30. this.realname = realname;
  31. this.uplink = uplink;
  32. }
  33. this.setSecure = function(secure){
  34. this.secure = secure;
  35. }
  36. this.setFingerprint = function(certfp){
  37. this.certfp = certfp;
  38. }
  39. this.changeVHost = function(host){
  40. this.vhost = host;
  41. }
  42. this.changeVIdent = function(ident){
  43. this.vident = ident;
  44. }
  45. this.setRealname = function(realname){
  46. this.realname = realname;
  47. }
  48. }
  49. module.exports = user;