user.js 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  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 = {};
  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. console.log(this.umodes);
  33. }
  34. this.setSecure = function(secure){
  35. this.secure = secure;
  36. }
  37. this.setFingerprint = function(certfp){
  38. this.certfp = certfp;
  39. }
  40. this.changeVHost = function(host){
  41. this.vhost = host;
  42. }
  43. this.changeVIdent = function(ident){
  44. this.vident = ident;
  45. }
  46. this.setRealname = function(realname){
  47. this.realname = realname;
  48. }
  49. this.changeNick = function(nick){
  50. this.name = nick;
  51. }
  52. this.changeUmodes = function(umodes){
  53. for(umode in umodes){
  54. this.umodes[umode] = umodes[umode];
  55. }
  56. console.log(this.umodes);
  57. }
  58. }
  59. module.exports = user;