views.py 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. #!/usr/bin/env python3
  2. # encoding:utf-8
  3. from . import app
  4. from src.core.callcenter.agent import AgentService, AgentOperService
  5. from src.core.callcenter.constant import success_response, error_response
  6. from src.core.callcenter.enumeration import CallType
  7. from src.core.callcenter.esl.client import InboundClient, OutboundClient
  8. from flask import Flask, request, render_template_string
  9. from src.core.callcenter.call import CallService
  10. from src.core.callcenter.api import AgentCallRequest, AgentActionRequest, HangupCallRequest, \
  11. HumanServiceQueryRequest
  12. from src.core.voip.bot import BotAgent
  13. from .acd import AcdService
  14. agent = BotAgent(app)
  15. inbound_client = InboundClient(agent,app)
  16. outbound_client = OutboundClient(agent,app)
  17. call_service = CallService(inbound_client, app.logger)
  18. agent_service = AgentService(inbound_client, app.logger)
  19. agent_oper_service = AgentOperService(inbound_client, app.logger)
  20. acd_service = AcdService(inbound_client, app)
  21. agent.acd_service = acd_service
  22. @app.route('/')
  23. def index():
  24. return render_template_string("""<!DOCTYPE html>
  25. <html lang="en">
  26. <head>
  27. <meta charset="UTF-8">
  28. <title>SocketIO Example</title>
  29. <script src="https://cdn.socket.io/4.0.0/socket.io.min.js"></script>
  30. </head>
  31. <body>
  32. <h1>SocketIO Test</h1>
  33. <script>
  34. var socket = io('ws://192.168.100.159:8091/ws/cs-im');
  35. socket.on('response', function(msg) {
  36. alert(msg);
  37. });
  38. socket.on('login', function(msg) {
  39. alert('Received from server: ' + msg);
  40. });
  41. socket.emit('login', {'appCode':'1111','userId':'1111','token':'1111'});
  42. </script>
  43. </body>
  44. </html>""")
  45. @app.route('/open/agent/get-cdn-url', methods=['POST'])
  46. def get_cdn_url():
  47. """获取cdn地址"""
  48. return 'Hello World!'
  49. @app.route('/open/agent/get-init-config', methods=['POST'])
  50. def get_init_config():
  51. """获取初始化配置"""
  52. try:
  53. data = request.get_json()
  54. param = AgentActionRequest.from_json(data)
  55. res = agent_service.get_and_check(param)
  56. return success_response(res)
  57. except Exception as e:
  58. print("Exception occurred: %s", str(e))
  59. return error_response(e)
  60. @app.route('/open/agent/check-in', methods=['POST'])
  61. def check_in():
  62. """坐席签入"""
  63. try:
  64. data = request.get_json()
  65. param = AgentActionRequest.from_json(data)
  66. res = agent_oper_service.checkin(param)
  67. return success_response(res)
  68. except Exception as e:
  69. print("Exception occurred: %s", str(e))
  70. return error_response(e)
  71. @app.route('/open/agent/check-out', methods=['POST'])
  72. def check_out():
  73. """坐席签出"""
  74. try:
  75. data = request.get_json()
  76. param = AgentActionRequest.from_json(data)
  77. res= agent_oper_service.checkout(param)
  78. return success_response(res)
  79. except Exception as e:
  80. print("Exception occurred: %s", str(e))
  81. return error_response(e)
  82. @app.route('/open/agent/busy', methods=['POST'])
  83. def busy():
  84. """坐席置忙"""
  85. try:
  86. data = request.get_json()
  87. param = AgentActionRequest.from_json(data)
  88. res= agent_oper_service.busy(param)
  89. return success_response(res)
  90. except Exception as e:
  91. print("Exception occurred: %s", str(e))
  92. return error_response(e)
  93. @app.route('/open/agent/idle', methods=['POST'])
  94. def idle():
  95. """坐席置闲"""
  96. try:
  97. data = request.get_json()
  98. param = AgentActionRequest.from_json(data)
  99. res = agent_oper_service.idle(param)
  100. return success_response(res)
  101. except Exception as e:
  102. print("Exception occurred: %s", str(e))
  103. return {"error": "An error occurred", "details": str(e)}, 500
  104. @app.route('/open/agent/turn-on', methods=['POST'])
  105. def turn_on():
  106. """接通"""
  107. try:
  108. data = request.get_json()
  109. param = AgentActionRequest.from_json(data)
  110. return agent_oper_service.checkin(param)
  111. except Exception as e:
  112. print("Exception occurred: %s", str(e))
  113. return {"error": "An error occurred", "details": str(e)}, 500
  114. @app.route('/open/agent/hang-up', methods=['POST'])
  115. def hang_up():
  116. """挂断"""
  117. try:
  118. data = request.get_json()
  119. param = AgentActionRequest.from_json(data)
  120. res = call_service.hangup(param)
  121. return success_response(res)
  122. except Exception as e:
  123. print("Exception occurred: %s", str(e))
  124. return {"error": "An error occurred", "details": str(e)}, 500
  125. @app.route('/open/agent/agent-state', methods=['POST'])
  126. def agent_state():
  127. """获取坐席状态"""
  128. try:
  129. data = request.get_json()
  130. # param = HumanServiceQueryRequest.from_json(data)
  131. # res = agent_service.watch_agent_state(param)
  132. param = AgentActionRequest.from_json(data)
  133. res = agent_oper_service.agent_state(param)
  134. return success_response(res)
  135. except Exception as e:
  136. print("Exception occurred: %s", str(e))
  137. return {"error": "An error occurred", "details": str(e)}, 500
  138. @app.route('/open/agent/manual-call', methods=['POST'])
  139. def manual_call():
  140. """外呼"""
  141. # agentId: string
  142. # vccId: string
  143. # password: string
  144. # scene: string
  145. # ctiFlowId?: string
  146. # monitorScene?: string
  147. # called: string
  148. # circuitUid: string
  149. # ext?: object
  150. # callId: string
  151. data = request.get_json()
  152. req = AgentCallRequest(saas_id=data.get('saas_id'), call_type=CallType.AGENT_CALL.code, caller=data.get('caller'),
  153. agent_id=data.get('agent_id'), called=data.get('called'), cti_flow_id=data.get('ctiFlowId'))
  154. res = call_service.call(req)
  155. return success_response(res)
  156. @app.route('/open/agent/manual-hang', methods=['POST'])
  157. def manual_hang():
  158. """挂断"""
  159. data = request.get_json()
  160. # agent = Cache.get_agent_info(data.get('saas_id'), data.get('agent_id'))
  161. req = HangupCallRequest(saas_id=data.get('saas_id'), call_id=data.get('call_id'), agent_number=data.get('agent_id'))
  162. call_service.hangup(req)
  163. return success_response()
  164. @app.route('/open/agent/listen', methods=['POST'])
  165. def listen():
  166. """发起监听"""
  167. return 'Hello World!'
  168. @app.route('/open/agent/reload-phone', methods=['POST'])
  169. def reload_phone():
  170. """重新获取分机信息"""
  171. return 'Hello World!'
  172. @app.route('/open/monitor/load-agent-group-data', methods=['POST'])
  173. def load_agent_group_data():
  174. """获取监控组成员信息"""
  175. return 'Hello World!'
  176. @app.route('/open/human-service/member-active', methods=['POST'])
  177. def member_active():
  178. """机器人外呼-签入人工组"""
  179. return 'Hello World!'
  180. @app.route('/open/num/generate', methods=['POST'])
  181. def num_generate():
  182. """获取 cti 流程 ID"""
  183. flow_id = call_service.snowflake.next_id()
  184. return success_response(flow_id)