You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
134 lines
6.4 KiB
134 lines
6.4 KiB
6 years ago
|
from http.server import BaseHTTPRequestHandler, HTTPServer
|
||
|
import pdb
|
||
|
import pywinauto
|
||
|
import json
|
||
|
import subprocess
|
||
|
import zlib
|
||
|
import os
|
||
|
import ProcessCommunicator
|
||
|
import sys
|
||
5 years ago
|
import traceback
|
||
5 years ago
|
from pyOpenRPA.Core import Robot
|
||
6 years ago
|
|
||
|
# HTTPRequestHandler class
|
||
|
class testHTTPServer_RequestHandler(BaseHTTPRequestHandler):
|
||
|
#ResponseContentTypeFile
|
||
|
def SendResponseContentTypeFile(self,inContentType,inFilePath):
|
||
|
# Send response status code
|
||
|
self.send_response(200)
|
||
|
# Send headers
|
||
|
self.send_header('Content-type',inContentType)
|
||
|
self.end_headers()
|
||
|
lFileObject = open(inFilePath, "rb")
|
||
|
# Write content as utf-8 data
|
||
|
self.wfile.write(lFileObject.read())
|
||
|
#Закрыть файловый объект
|
||
|
lFileObject.close()
|
||
|
# GET
|
||
|
def do_GET(self):
|
||
|
#Мост между файлом и http запросом (новый формат)
|
||
|
if self.path == "/":
|
||
|
self.SendResponseContentTypeFile('text/html',"Web\\Index.xhtml")
|
||
|
#Мост между файлом и http запросом (новый формат)
|
||
|
if self.path == '/3rdParty/Semantic-UI-CSS-master/semantic.min.css':
|
||
|
self.SendResponseContentTypeFile('text/css',"..\\Resources\\Web\\Semantic-UI-CSS-master\\semantic.min.css")
|
||
|
#Мост между файлом и http запросом (новый формат)
|
||
|
if self.path == '/3rdParty/Semantic-UI-CSS-master/semantic.min.js':
|
||
|
self.SendResponseContentTypeFile('application/javascript',"..\\Resources\\Web\\Semantic-UI-CSS-master\\semantic.min.js")
|
||
|
#Мост между файлом и http запросом (новый формат)
|
||
|
if self.path == '/3rdParty/jQuery/jquery-3.1.1.min.js':
|
||
|
self.SendResponseContentTypeFile('application/javascript',"..\\Resources\\Web\\jQuery\\jquery-3.1.1.min.js")
|
||
|
#Мост между файлом и http запросом (новый формат)
|
||
|
if self.path == '/3rdParty/Google/LatoItalic.css':
|
||
|
self.SendResponseContentTypeFile('font/css',"..\\Resources\\Web\\Google\\LatoItalic.css")
|
||
|
#Мост между файлом и http запросом (новый формат)
|
||
|
if self.path == '/3rdParty/Semantic-UI-CSS-master/themes/default/assets/fonts/icons.woff2':
|
||
|
self.SendResponseContentTypeFile('font/woff2',"..\\Resources\\Web\\Semantic-UI-CSS-master\\themes\\default\\assets\\fonts\\icons.woff2")
|
||
|
#Мост между файлом и http запросом (новый формат)
|
||
|
if self.path == '/favicon.ico':
|
||
|
self.SendResponseContentTypeFile('image/x-icon',"Web\\favicon.ico")
|
||
|
# POST
|
||
|
def do_POST(self):
|
||
6 years ago
|
#Restart studio
|
||
|
if self.path == '/RestartStudio':
|
||
6 years ago
|
#self.shutdown()
|
||
|
# Send response status code
|
||
|
self.send_response(200)
|
||
|
# Send headers
|
||
|
self.send_header('Content-type','application/json')
|
||
|
self.end_headers()
|
||
|
message = json.dumps({"Result":"Restart is in progress!"})
|
||
|
# Write content as utf-8 data
|
||
|
self.wfile.write(bytes(message, "utf8"))
|
||
6 years ago
|
os.execl(sys.executable,os.path.abspath(__file__),*sys.argv)
|
||
|
sys.exit(0)
|
||
6 years ago
|
if self.path == '/GUIAction':
|
||
5 years ago
|
#Обернуть в try, чтобы вернуть ответ, что сообщение не может быть обработано
|
||
|
# pdb.set_trace()
|
||
6 years ago
|
# Send response status code
|
||
|
self.send_response(200)
|
||
|
# Send headers
|
||
|
self.send_header('Content-type','application/json')
|
||
|
self.end_headers()
|
||
5 years ago
|
try:
|
||
|
#ReadRequest
|
||
|
lInputByteArrayLength = int(self.headers.get('Content-Length'))
|
||
|
lInputByteArray=self.rfile.read(lInputByteArrayLength)
|
||
|
#Превращение массива байт в объект
|
||
|
lInputObject=json.loads(lInputByteArray.decode('utf8'))
|
||
|
# Send message back to client
|
||
|
#{'functionName':'', 'argsArray':[]}
|
||
|
#pdb.set_trace()
|
||
|
lRequestObject=lInputObject
|
||
|
#Отправить команду роботу
|
||
|
lResponseObject=Robot.ActivityRun(lRequestObject)
|
||
|
message = json.dumps(lResponseObject)
|
||
|
except Exception as e:
|
||
|
#Установить флаг ошибки
|
||
|
lProcessResponse={"Result":None}
|
||
|
lProcessResponse["ErrorFlag"]=True
|
||
|
#Зафиксировать traceback
|
||
|
lProcessResponse["ErrorTraceback"]=traceback.format_exc()
|
||
|
#Зафиксировать Error message
|
||
|
lProcessResponse["ErrorMessage"]=str(e)
|
||
|
#lProcessResponse["ErrorArgs"]=str(e.args)
|
||
|
message = json.dumps(lProcessResponse)
|
||
|
finally:
|
||
|
# Write content as utf-8 data
|
||
|
self.wfile.write(bytes(message, "utf8"))
|
||
6 years ago
|
if self.path == '/GUIActionList':
|
||
|
#ReadRequest
|
||
|
lInputByteArrayLength = int(self.headers.get('Content-Length'))
|
||
|
lInputByteArray=self.rfile.read(lInputByteArrayLength)
|
||
|
#Превращение массива байт в объект
|
||
|
lInputObject=json.loads(lInputByteArray.decode('utf8'))
|
||
|
# Send response status code
|
||
|
self.send_response(200)
|
||
|
# Send headers
|
||
|
self.send_header('Content-type','application/json')
|
||
|
self.end_headers()
|
||
|
# Send message back to client
|
||
|
#{'functionName':'', 'argsArray':[]}
|
||
|
lRequestObject=lInputObject
|
||
|
lOutputObject=[]
|
||
|
#pdb.set_trace()
|
||
6 years ago
|
lResponseObject=Robot.ActivityListRun(lRequestObject)
|
||
6 years ago
|
#Сформировать текстовый ответ
|
||
6 years ago
|
message = json.dumps(lResponseObject)
|
||
6 years ago
|
# Write content as utf-8 data
|
||
|
self.wfile.write(bytes(message, "utf8"))
|
||
|
return
|
||
|
|
||
|
def run():
|
||
|
print('starting server...')
|
||
|
# Server settings
|
||
|
# Choose port 8080, for port 80, which is normally used for a http server, you need root access
|
||
|
server_address = ('127.0.0.1', 8081)
|
||
|
httpd = HTTPServer(server_address, testHTTPServer_RequestHandler)
|
||
|
print('running server...')
|
||
6 years ago
|
#Запуск адреса в браузере
|
||
|
os.system("explorer http://127.0.0.1:8081")
|
||
6 years ago
|
httpd.serve_forever()
|
||
6 years ago
|
#print(ChildProcessReadWaitString(p))
|
||
|
run()
|