user.js 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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.metadata = {};
  19. this.events = {};
  20. 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
  21. this.name = nick;
  22. this.distance = distance;
  23. this.TS = TS;
  24. this.ident = ident;
  25. this.host = host;
  26. this.uid = uid;
  27. this.account = account;
  28. this.umodes = umodes;
  29. this.vhost = vhost;
  30. this.cloakedHost = cloakedHost;
  31. this.ip = ip;
  32. this.realname = realname;
  33. this.uplink = uplink;
  34. }
  35. this.setEvents = function(events){
  36. this.events = events;
  37. }
  38. this.setSecure = function(secure){
  39. this.secure = secure;
  40. }
  41. this.setFingerprint = function(certfp){
  42. this.certfp = certfp;
  43. }
  44. this.changeVHost = function(host){
  45. this.vhost = host;
  46. this.events.doEvent('userVHost', this);
  47. }
  48. this.changeVIdent = function(ident){
  49. this.vident = ident;
  50. this.events.doEvent('userVIdent', this);
  51. }
  52. this.setRealname = function(realname){
  53. this.realname = realname;
  54. this.events.doEvent('userRealname', this);
  55. }
  56. this.changeNick = function(nick){
  57. this.name = nick;
  58. this.events.doEvent('userNick', this);
  59. }
  60. this.changeUmodes = function(umodes){
  61. for(umode in umodes){
  62. this.umodes[umode] = umodes[umode];
  63. }
  64. this.events.doEvent('userUmode', this);
  65. }
  66. this.setMetadata = function(name, visibility, value){
  67. if(value){
  68. this.metadata[name] = { 'visibility': visibility, 'value': value };
  69. } else {
  70. if(name in this.metadata){
  71. delete this.metadata[name];
  72. }
  73. }
  74. this.events.doEvent('userMetadata', this, name);
  75. }
  76. }
  77. module.exports = user;