|
@@ -49,7 +49,7 @@ class PushHandler:
|
|
|
new_data = {'data': json.dumps(data)}
|
|
|
self.push_to_socket_service(user_id, json.dumps(new_data))
|
|
|
|
|
|
- def push_on_call_ring(self, saas_id, flow_id, user_id,scene:AgentScene, call_id, calling_no, called_no, human_service_id):
|
|
|
+ def push_on_call_ring(self, flow_id, user_id,scene:AgentScene, call_id, calling_no, called_no, human_service_id):
|
|
|
data = {
|
|
|
'eventName': DownEvent.ON_CALLRING.code,
|
|
|
'ext': {
|
|
@@ -79,7 +79,7 @@ class PushHandler:
|
|
|
new_data = {'data': json.dumps(data)}
|
|
|
self.push_to_socket_service(user_id, json.dumps(new_data))
|
|
|
|
|
|
- def push_on_ring_start(self, saas_id, flow_id, user_id, scene: AgentScene, call_id=None):
|
|
|
+ def push_on_ring_start(self, flow_id, user_id, scene: AgentScene, call_id=None):
|
|
|
data = {
|
|
|
'eventName': DownEvent.ON_RING_Start.code,
|
|
|
'ext': {
|
|
@@ -92,7 +92,7 @@ class PushHandler:
|
|
|
new_data = {'data': json.dumps(data)}
|
|
|
self.push_to_socket_service(user_id, json.dumps(new_data))
|
|
|
|
|
|
- def push_on_ring_end(self, saas_id, flow_id, user_id, scene: AgentScene, call_id):
|
|
|
+ def push_on_ring_end(self, flow_id, user_id, scene: AgentScene, call_id):
|
|
|
data = {
|
|
|
'eventName': DownEvent.ON_RING_END.code,
|
|
|
'ext': {
|
|
@@ -118,4 +118,17 @@ class PushHandler:
|
|
|
}
|
|
|
self.logger.info("flowId:[%s] push_on_ring_end push:[%s].", flow_id, json.dumps(data))
|
|
|
new_data = {'data': json.dumps(data)}
|
|
|
+ self.push_to_socket_service(user_id, json.dumps(new_data))
|
|
|
+
|
|
|
+ def push_on_detected_tone(self, flow_id, user_id, scene: AgentScene, call_id, ):
|
|
|
+ data = {
|
|
|
+ 'eventName': DownEvent.ON_DETECTED_TONE.code,
|
|
|
+ 'ext': {
|
|
|
+ 'ctiFlowId': flow_id,
|
|
|
+ 'scene': scene.code,
|
|
|
+ 'callId': call_id,
|
|
|
+ }
|
|
|
+ }
|
|
|
+ self.logger.info("flowId:[%s] push_on_ring_end push:[%s].", flow_id, json.dumps(data))
|
|
|
+ new_data = {'data': json.dumps(data)}
|
|
|
self.push_to_socket_service(user_id, json.dumps(new_data))
|