|
@@ -3,9 +3,12 @@
|
|
|
import json
|
|
|
import time
|
|
|
from datetime import datetime
|
|
|
+
|
|
|
+from src.core.callcenter.agent import AgentMonitorService, AgentActionLogService
|
|
|
from src.core.callcenter.cache import Cache
|
|
|
from src.core.callcenter.constant import saasId, HOLD_MUSIC_PATH
|
|
|
-from src.core.callcenter.enumeration import CallCause, Direction, NextType, DeviceType, CdrType, AgentServiceState,AgentScene,WorkStatus
|
|
|
+from src.core.callcenter.enumeration import CallCause, Direction, NextType, DeviceType, CdrType, AgentServiceState, \
|
|
|
+ AgentScene, WorkStatus, AgentLogState, ServiceDirect
|
|
|
from src.core.callcenter.api import AgentCallRequest, CallInfo, HangupCallRequest, CheckInCallRequest, \
|
|
|
DeviceInfo, NextCommand, MakeCallContext
|
|
|
from src.core.callcenter.esl.constant.sip_header_constant import sipHeaderServiceId, sipHeaderCtiFlowId
|
|
@@ -15,12 +18,15 @@ from src.core.callcenter.data_handler import *
|
|
|
|
|
|
class CallService:
|
|
|
|
|
|
- def __init__(self, client, logger):
|
|
|
+ def __init__(self, client, app):
|
|
|
self.client = client
|
|
|
- self.logger = logger
|
|
|
- self.cache = Cache(client.app)
|
|
|
+ self.logger = app.logger
|
|
|
+ self.cache = Cache(app)
|
|
|
self.snowflake = Snowflake()
|
|
|
- self.dataHandleServer=DataHandleServer(client.app)
|
|
|
+ self.push_handler = PushHandler(app.logger)
|
|
|
+ self.data_handle_server=DataHandleServer(app)
|
|
|
+ self.agent_monitor_service = AgentMonitorService(app)
|
|
|
+ self.agent_actionlog_service = AgentActionLogService(app)
|
|
|
# self.push_handler = PushHandler(logger)
|
|
|
|
|
|
def call(self, request: AgentCallRequest):
|
|
@@ -55,7 +61,7 @@ class CallService:
|
|
|
sip_header_map={sipHeaderCtiFlowId: request.cti_flow_id})
|
|
|
|
|
|
self.client.make_call_new(context)
|
|
|
-
|
|
|
+ self.do_after_manual_call(call_info, agent.agent_number)
|
|
|
# # 创建一条通话记录
|
|
|
# self.dataHandleServer.create_record({
|
|
|
# "session_id": call_id,
|
|
@@ -69,6 +75,12 @@ class CallService:
|
|
|
# self.push_handler.push_on_agent_work_report(request.saas_id, request.cti_flow_id, request.agent_id, call_id,AgentScene.ROBOT, WorkStatus.AGENT_DIALING)
|
|
|
return call_id
|
|
|
|
|
|
+ def do_after_manual_call(self, call_info: CallInfo, agent_id):
|
|
|
+ agent_monitor = self.data_handle_server.get_agent_monitor(call_info.saas_id, agent_number=agent_id)
|
|
|
+ self.agent_monitor_service.update_dialing(agent_monitor)
|
|
|
+ self.push_handler.push_on_call_ring(call_info.saas_id, flow_id=call_info.cti_flow_id, user_id=agent_id, scene=AgentScene.MANUAL, call_id=call_info.call_id, service_direct=ServiceDirect.MANUAL_CALL.service_direct)
|
|
|
+ self.agent_actionlog_service.insert_service_state(agent_monitor, AgentServiceState.DIALING, AgentLogState.DIALING)
|
|
|
+
|
|
|
def hold(self, call_info: CallInfo, device_id):
|
|
|
devices = call_info.device_list
|
|
|
try:
|
|
@@ -115,16 +127,21 @@ class CallService:
|
|
|
call_type=call_info.call_type, service_id=service_id, sip_header_map=sip_header_map)
|
|
|
self.client.make_call_new(context)
|
|
|
|
|
|
- def hangup(self, request: HangupCallRequest):
|
|
|
- call_info = self.cache.get_call_info(request.call_id)
|
|
|
- if not call_info:
|
|
|
- self.logger.info('hangup call not exist callId: %s', request.call_id)
|
|
|
- return
|
|
|
- devices = call_info.device_list
|
|
|
- if not devices:
|
|
|
- self.logger.info('hangup deviceList is null callId: %s', request.call_id)
|
|
|
- return
|
|
|
- self.hangup_all(call_info, CallCause.AGENT_HANGUP_CALL)
|
|
|
+ def hangup_by_scene(self, request: HangupCallRequest):
|
|
|
+ scene = AgentScene.get_by_code(request.scene)
|
|
|
+ if scene and AgentScene.MANUAL == scene:
|
|
|
+ self.do_manual_hang(request)
|
|
|
+ elif scene and not AgentScene.MANUAL == scene:
|
|
|
+ self.do_robot_hang(request)
|
|
|
+
|
|
|
+ def do_manual_hang(self, request: HangupCallRequest):
|
|
|
+ self.hangup_call(request.call_id)
|
|
|
+
|
|
|
+ agent_monitor = self.data_handle_server.get_agent_monitor(saas_id=request.saas_id, agent_number=request.agent_id)
|
|
|
+ self.agent_actionlog_service.insert_service_state(agent_monitor, AgentServiceState.HANGING, AgentLogState.MANUAL_HANG_UP)
|
|
|
+
|
|
|
+ def do_robot_hang(self, request: HangupCallRequest):
|
|
|
+ self.hangup_call(request.call_id)
|
|
|
|
|
|
def hangup_all(self, call_info: CallInfo, case_enum=CallCause.DEFAULT):
|
|
|
devices = call_info.device_list
|