BotClass.py 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. import sys, xmpp
  2. #Основной класс бота
  3. class JabberBot:
  4. def __init__(self, jid, password):
  5. jid = xmpp.JID(jid)
  6. self.user, self.server, self.password = jid.getNode(), jid.getDomain(), password
  7. self.connect()
  8. self.auth()
  9. #Метод проверки подключения к серверу xmpp
  10. def connect(self):
  11. self.conn = xmpp.Client(self.server, debug = [])
  12. conn_result = self.conn.connect()
  13. if not conn_result:
  14. print("Can't connect to server!\n")
  15. sys.exit(1)
  16. #Метод аутентификации
  17. def auth(self):
  18. auth_result = self.conn.auth(self.user, self.password)
  19. if not auth_result:
  20. print("Can't to authorize!\n")
  21. sys.exit(1)
  22. #Метод для привязки функций к событиям
  23. def register_handler(self, name, handler):
  24. self.conn.RegisterHandler(name, handler)
  25. def step_on(self):
  26. try:
  27. self.conn.Process(1)
  28. except KeyboardInterrupt: return 0
  29. return 1
  30. def start(self):
  31. self.conn.sendInitPresence()
  32. print("Bot started!")
  33. while self.step_on(): pass