channel.js 568 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. var channel = function(){
  2. this.name = null;
  3. this.TS = null;
  4. this.topic = null;
  5. this.modes = {};
  6. this.users = [];
  7. this.setTS = function(TS){
  8. this.TS = TS;
  9. };
  10. this.addModes = function(modes, args){
  11. // TODO
  12. };
  13. this.uJoin = function(user){
  14. if(this.users.indexOf(user) >= 0) return;
  15. this.users.push(user);
  16. };
  17. this.setStatusModes = function(user, modes){
  18. // TODO
  19. };
  20. this.addBan = function(ban){
  21. // TODO
  22. };
  23. this.addExcept = function(except){
  24. // TODO
  25. };
  26. this.addInvex = function(invex){
  27. // TODO
  28. };
  29. }
  30. module.exports = channel;