|
@@ -106,11 +106,11 @@ class InboundClient:
|
|
|
random_index = abs(mmh3.hash(random_id)) % len(self.executors)
|
|
|
else:
|
|
|
random_index = random.randint(0, len(self.executors) - 1) if self.executors else 0
|
|
|
- # print('choose_thread_pool_executor.index=', random_index, call_id, device_id, wdh_device_id)
|
|
|
+ # self.logger.info('choose_thread_pool_executor.index=', random_index, call_id, device_id, wdh_device_id)
|
|
|
return self.executors.get(random_index)
|
|
|
|
|
|
def process_esl_event(self, e):
|
|
|
- # print(json.loads(e.serialize('json')))
|
|
|
+ # self.logger.info(json.loads(e.serialize('json')))
|
|
|
event_name = EslEventUtil.getEventName(e)
|
|
|
coreUUID = EslEventUtil.getCoreUuid(e)
|
|
|
address = self.host + ':' + self.port
|
|
@@ -209,7 +209,7 @@ class InboundClient:
|
|
|
profile = self.expression(profile2, params)
|
|
|
builder.append(f"{profile}{PARK}")
|
|
|
cmd = "".join(builder)
|
|
|
- print(cmd, flush=True)
|
|
|
+ self.logger.info(cmd)
|
|
|
self.con.bgapi(ORIGINATE, cmd)
|
|
|
|
|
|
def call_timeout(self, call_id, device_id, timeout):
|
|
@@ -257,13 +257,13 @@ class InboundClient:
|
|
|
try:
|
|
|
_con = ESL.ESLconnection(self.host, self.port, self.password)
|
|
|
if _con.connected():
|
|
|
- print("hangup_call挂机1 hangup call: %s, device: %s, ctiCauseEnum: %s" % (call_id, device_id, case_enum), flush=True)
|
|
|
+ self.logger.info("hangup_call挂机1 hangup call: %s, device: %s, ctiCauseEnum: %s" % (call_id, device_id, case_enum))
|
|
|
arg = ''.join([EslEventUtil.SIP_H_P_LIBRA_HANGUP_CAUSE, "=", case_enum.description])
|
|
|
- print("hangup_call挂机2 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg), flush=True)
|
|
|
+ self.logger.info("hangup_call挂机2 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg))
|
|
|
self.send_args(device_id, SET, arg, con=_con)
|
|
|
- print("hangup_call挂机3 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg), flush=True)
|
|
|
+ self.logger.info("hangup_call挂机3 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg))
|
|
|
_con.sendEvent(msg)
|
|
|
- print("hangup_call挂机4 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg), flush=True)
|
|
|
+ self.logger.info("hangup_call挂机4 hangup call: %s, device: %s, arg: %s" % (call_id, device_id, arg))
|
|
|
except:
|
|
|
traceback.print_exc()
|
|
|
finally:
|
|
@@ -417,8 +417,7 @@ class InboundClient:
|
|
|
_con = ESL.ESLconnection(self.host, self.port, self.password)
|
|
|
if _con.connected():
|
|
|
e = _con.api(command, arg)
|
|
|
- print('debugger::%s success, arg=%s, event=%s' % (desc, command + ' ' + arg, e.serialize('json')),
|
|
|
- flush=True)
|
|
|
+ self.logger.info('debugger::%s success, arg=%s, event=%s' % (desc, command + ' ' + arg, e.serialize('json')))
|
|
|
except:
|
|
|
traceback.print_exc()
|
|
|
finally:
|
|
@@ -431,7 +430,7 @@ class InboundClient:
|
|
|
_con = ESL.ESLconnection(self.host, self.port, self.password)
|
|
|
if _con.connected():
|
|
|
e = _con.bgapi(command, arg)
|
|
|
- print('debugger::%s success, arg=%s, event=%s' % (desc, command + ' '+arg, e.serialize('json')), flush=True)
|
|
|
+ self.logger.info('debugger::%s success, arg=%s, event=%s' % (desc, command + ' '+arg, e.serialize('json')))
|
|
|
except:
|
|
|
traceback.print_exc()
|
|
|
finally:
|
|
@@ -453,7 +452,7 @@ class InboundClient:
|
|
|
|
|
|
def show_channel(self, device_id):
|
|
|
msg = self.con.api("show", " channels like " + device_id + " as json")
|
|
|
- print('show_channel::', msg)
|
|
|
+ self.logger.info('show_channel::', msg)
|
|
|
return msg
|
|
|
|
|
|
def expression(self, template, params):
|
|
@@ -517,7 +516,7 @@ class OutboundClient:
|
|
|
if con.connected():
|
|
|
info = con.getInfo()
|
|
|
|
|
|
- # print(json.loads(info.serialize('json')))
|
|
|
+ # self.logger.info(json.loads(info.serialize('json')))
|
|
|
event_name = info.getHeader("Event-Name")
|
|
|
device_id = info.getHeader("unique-id")
|
|
|
caller_number = info.getHeader("Caller-Caller-ID-Number") # 获取来电号码
|
|
@@ -563,7 +562,7 @@ class OutboundClient:
|
|
|
# msg.addHeader("execute-app-arg", destination)
|
|
|
# # 发送消息以执行 bridge 操作
|
|
|
# con.sendEvent(msg)
|
|
|
- # print(f"Call {uuid} is bridged to {destination}")
|
|
|
+ # self.logger.info(f"Call {uuid} is bridged to {destination}")
|
|
|
|
|
|
# con.execute("answer", "", uuid)
|
|
|
|
|
@@ -571,7 +570,7 @@ class OutboundClient:
|
|
|
# try:
|
|
|
# con.disconnect()
|
|
|
# except:
|
|
|
- # print('come in ')
|
|
|
+ # self.logger.info('come in ')
|
|
|
# traceback.print_exc()
|
|
|
else:
|
|
|
self.server.logger.info("Failed to connect to FreeSWITCH")
|
|
@@ -598,7 +597,7 @@ class OutboundClient:
|
|
|
call_info.device_list.append(new_device_id)
|
|
|
# call_info.next_commands.append(NextCommand(device_id, NextType.NEXT_CALL_BRIDGE.code, new_device_id))
|
|
|
call_info.device_info_map = {device_id: device_custom, new_device_id: device_bot}
|
|
|
- print("lwdebugger::outBound, call_info=%s"%(call_info), flush=True)
|
|
|
+ self.server.logger.info("lwdebugger::outBound, call_info=%s"%(call_info))
|
|
|
self.server.cache.add_call_info(call_info)
|
|
|
|
|
|
|
|
@@ -616,5 +615,5 @@ class OutboundClient:
|
|
|
# HOST, PORT = "0.0.0.0", 8084
|
|
|
# 创建一个 TCP 服务器
|
|
|
with self.CustomTCPServer((HOST, PORT), self.ESLRequestHandler, agent, self.app, self.load_whitelist, self.load_agent_monitor,self.dataHandleServer) as server:
|
|
|
- self.logger.info(f"ESL server listening on {HOST}:{PORT}")
|
|
|
+ print(f"ESL server listening on {HOST}:{PORT}")
|
|
|
server.serve_forever()
|