views.py 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  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. data = request.get_json()
  53. param = AgentActionRequest.from_json(data)
  54. res = agent_service.get_and_check(param)
  55. return success_response(res)
  56. @app.route('/open/agent/check-in', methods=['POST'])
  57. def check_in():
  58. """坐席签入"""
  59. data = request.get_json()
  60. param = AgentActionRequest.from_json(data)
  61. res = agent_oper_service.checkin(param)
  62. return success_response(res)
  63. @app.route('/open/agent/check-out', methods=['POST'])
  64. def check_out():
  65. """坐席签出"""
  66. data = request.get_json()
  67. param = AgentActionRequest.from_json(data)
  68. res = agent_oper_service.checkout(param)
  69. return success_response(res)
  70. @app.route('/open/agent/busy', methods=['POST'])
  71. def busy():
  72. """坐席置忙"""
  73. data = request.get_json()
  74. param = AgentActionRequest.from_json(data)
  75. res = agent_oper_service.busy(param)
  76. return success_response(res)
  77. @app.route('/open/agent/idle', methods=['POST'])
  78. def idle():
  79. """坐席置闲"""
  80. data = request.get_json()
  81. param = AgentActionRequest.from_json(data)
  82. res = agent_oper_service.idle(param)
  83. return success_response(res)
  84. @app.route('/open/agent/turn-on', methods=['POST'])
  85. def turn_on():
  86. """接通"""
  87. data = request.get_json()
  88. param = AgentActionRequest.from_json(data)
  89. return agent_oper_service.checkin(param)
  90. @app.route('/open/agent/hang-up', methods=['POST'])
  91. def hang_up():
  92. """挂断"""
  93. data = request.get_json()
  94. param = AgentActionRequest.from_json(data)
  95. res = call_service.hangup(param)
  96. return success_response(res)
  97. @app.route('/open/agent/agent-state', methods=['POST'])
  98. def agent_state():
  99. """获取坐席状态"""
  100. data = request.get_json()
  101. # param = HumanServiceQueryRequest.from_json(data)
  102. # res = agent_service.watch_agent_state(param)
  103. param = AgentActionRequest.from_json(data)
  104. res = agent_oper_service.agent_state(param)
  105. return success_response(res)
  106. @app.route('/open/agent/manual-call', methods=['POST'])
  107. def manual_call():
  108. """外呼"""
  109. # agentId: string
  110. # vccId: string
  111. # password: string
  112. # scene: string
  113. # ctiFlowId?: string
  114. # monitorScene?: string
  115. # called: string
  116. # circuitUid: string
  117. # ext?: object
  118. # callId: string
  119. data = request.get_json()
  120. req = AgentCallRequest(saas_id=data.get('saas_id'), call_type=CallType.AGENT_CALL.code, caller=data.get('caller'),
  121. agent_id=data.get('agent_id'), called=data.get('called'), cti_flow_id=data.get('ctiFlowId'))
  122. res = call_service.call(req)
  123. return success_response(res)
  124. @app.route('/open/agent/manual-hang', methods=['POST'])
  125. def manual_hang():
  126. """挂断"""
  127. data = request.get_json()
  128. # agent = Cache.get_agent_info(data.get('saas_id'), data.get('agent_id'))
  129. req = HangupCallRequest(saas_id=data.get('saas_id'), call_id=data.get('call_id'), agent_number=data.get('agent_id'))
  130. call_service.hangup(req)
  131. return success_response()
  132. @app.route('/open/agent/listen', methods=['POST'])
  133. def listen():
  134. """发起监听"""
  135. return 'Hello World!'
  136. @app.route('/open/agent/reload-phone', methods=['POST'])
  137. def reload_phone():
  138. """重新获取分机信息"""
  139. return 'Hello World!'
  140. @app.route('/open/monitor/load-agent-group-data', methods=['POST'])
  141. def load_agent_group_data():
  142. """获取监控组成员信息"""
  143. return 'Hello World!'
  144. @app.route('/open/human-service/member-active', methods=['POST'])
  145. def member_active():
  146. """机器人外呼-签入人工组"""
  147. return 'Hello World!'
  148. @app.route('/open/num/generate', methods=['POST'])
  149. def num_generate():
  150. """获取 cti 流程 ID"""
  151. flow_id = call_service.snowflake.next_id()
  152. return success_response(flow_id)