|
@@ -0,0 +1,29 @@
|
|
|
+import requests
|
|
|
+import xmpp
|
|
|
+from xmpp import cli
|
|
|
+import config
|
|
|
+from BotClass import JabberBot
|
|
|
+import json
|
|
|
+#раскомментировать, когда перейдем на разные пароли
|
|
|
+import hashlib
|
|
|
+from datetime import datetime
|
|
|
+import time
|
|
|
+import threading
|
|
|
+#test
|
|
|
+import jsonAndRequest as jsreq
|
|
|
+global tasklist
|
|
|
+botname="open_servicerequest_booked"
|
|
|
+operating_status=211
|
|
|
+JID=botname+"@"+config.JSERVER
|
|
|
+PORT=config.PORT
|
|
|
+
|
|
|
+PASSWORD=hashlib.md5((botname+config.PASSWORD).encode('utf-8')).hexdigest()
|
|
|
+
|
|
|
+proceed_to=["open_servicerequest_booked@ej.sharix-app.org"]
|
|
|
+
|
|
|
+token = jsreq.requestGetToken(botname, PASSWORD, config.API_URL+"/api/v1/auth/token/login/")
|
|
|
+
|
|
|
+bot = JabberBot(JID, PASSWORD, PORT)
|
|
|
+
|
|
|
+def send_msg(msg):
|
|
|
+ bot.send_notification(msg)
|