gateway.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. #!/usr/bin/env python3
  2. # encoding:utf-8
  3. import json
  4. import ESL
  5. import threading
  6. import socketserver
  7. from http.server import BaseHTTPRequestHandler
  8. from http.server import HTTPServer
  9. class InboundClient:
  10. def __init__(self):
  11. self.is_stopping = False
  12. self.con = ESL.ESLconnection('localhost', '8021', '4918257983818884358')
  13. def start(self):
  14. if self.con.connected():
  15. self.con.events('plain', 'all')
  16. while not self.is_stopping:
  17. e = self.con.recvEvent()
  18. if e:
  19. print(e)
  20. # print(e.serialize('json'))
  21. def stop(self):
  22. self.is_stopping = True
  23. class OutboundClient:
  24. @staticmethod
  25. def ack(esl, con):
  26. info = con.getInfo()
  27. print(info.serialize('json'))
  28. event_name = info.getHeader("Event-Name")
  29. uuid = info.getHeader("unique-id")
  30. print(uuid, event_name)
  31. con.execute("answer", "", uuid)
  32. con.execute("playback", "/Users/davidliu/sip/pjproject/voip/test111.wav", uuid)
  33. con.disconnect()
  34. class ESLRequestHandler(socketserver.BaseRequestHandler):
  35. def setup(self):
  36. print(self.client_address, 'connected!')
  37. fd = self.request.fileno()
  38. print('0000', fd)
  39. con = ESL.ESLconnection(fd)
  40. print('Connected: ', con.connected())
  41. if con.connected():
  42. threading.Thread(target=self.ack, args=(con, )).start()
  43. else:
  44. print("Failed to connect to FreeSWITCH")
  45. def ack(self, con):
  46. OutboundClient.ack(self, con)
  47. def start(self, HOST= '0.0.0.0', PORT=8084):
  48. # HOST, PORT = "0.0.0.0", 8084
  49. # 创建一个 TCP 服务器
  50. with socketserver.ThreadingTCPServer((HOST, PORT), self.ESLRequestHandler) as server:
  51. print(f"ESL server listening on {HOST}:{PORT}")
  52. server.serve_forever()
  53. def main():
  54. on = InboundClient()
  55. out = OutboundClient()
  56. threading.Thread(target=out.start, args=()).start()
  57. threading.Thread(target=on.start, args=()).start()
  58. if __name__ == '__main__':
  59. main()