|
@@ -26,6 +26,7 @@ import src.core.callcenter.esl.handler as event_handler
|
|
|
from src.core.callcenter.esl.constant.sip_header_constant import sipHeaderHoldMusic, profile1, profile2
|
|
|
from src.core.callcenter.enumeration import CallCause, DeviceType, DelayActionEnum, HangupDir, CallType, NextType
|
|
|
from src.core.callcenter.esl.handler.default_esl_event_handler import DefaultEslEventHandler
|
|
|
+from src.core.callcenter.snowflake import Snowflake
|
|
|
from src.core.datasource import SERVE_HOST
|
|
|
from src.core.voip.constant import *
|
|
|
from src.core.callcenter.dao import *
|
|
@@ -479,6 +480,7 @@ class OutboundClient:
|
|
|
|
|
|
def __init__(self, agent, logger):
|
|
|
self.logger = logger
|
|
|
+ self.snowflake = Snowflake()
|
|
|
# self.whitelist = self.load_whitelist()
|
|
|
#threading.Thread(target=self.start, args=('0.0.0.0', 8084, agent, logger)).start()
|
|
|
server_thread = threading.Thread(target=self.start, args=('0.0.0.0', 8084, agent, logger))
|
|
@@ -510,13 +512,16 @@ class OutboundClient:
|
|
|
# # 直接转接到指定用户
|
|
|
# print('come in whitelist')
|
|
|
# return
|
|
|
-
|
|
|
+
|
|
|
+ call_id = 'C' + str(self.server.snowflake.next_id())
|
|
|
+ new_device_id = 'D' + str(self.server.snowflake.next_id())
|
|
|
+
|
|
|
kwargs = json.loads(info.serialize('json'))
|
|
|
destination = self.server.agent.register(**kwargs)
|
|
|
self.server.logger.info("device_id=%s, destination=%s", device_id, destination)
|
|
|
|
|
|
Cache.add_device_user_part(device_id, destination)
|
|
|
- con.execute("bridge", f"user/{destination}", device_id)
|
|
|
+ con.execute("bridge", "{sip_h_P-LIBRA-CallId=%s,sip_h_P-LIBRA-DeviceId=%s}user/%s"%(call_id, new_device_id, destination), device_id)
|
|
|
|
|
|
# destination = "user/1001"
|
|
|
# msg = ESL.ESLevent("sendmsg", uuid)
|
|
@@ -540,6 +545,8 @@ class OutboundClient:
|
|
|
except:
|
|
|
traceback.print_exc()
|
|
|
|
|
|
+
|
|
|
+
|
|
|
class CustomTCPServer(socketserver.TCPServer):
|
|
|
def __init__(self, server_address, RequestHandlerClass, agent, logger):
|
|
|
self.agent = agent
|