|
@@ -10,6 +10,7 @@ import traceback
|
|
import sys
|
|
import sys
|
|
import pjsua2 as pj
|
|
import pjsua2 as pj
|
|
from enum import Enum
|
|
from enum import Enum
|
|
|
|
+from datetime import datetime
|
|
|
|
|
|
from src.core.callcenter import registry
|
|
from src.core.callcenter import registry
|
|
from src.core.callcenter.cache import Cache
|
|
from src.core.callcenter.cache import Cache
|
|
@@ -540,41 +541,66 @@ class BotAgent:
|
|
self.ep.transportCreate(pj.PJSIP_TRANSPORT_UDP, sipTpConfig)
|
|
self.ep.transportCreate(pj.PJSIP_TRANSPORT_UDP, sipTpConfig)
|
|
# Start the library
|
|
# Start the library
|
|
self.ep.libStart()
|
|
self.ep.libStart()
|
|
-
|
|
|
|
- for user_part in self.user_part_range:
|
|
|
|
- acfg = pj.AccountConfig()
|
|
|
|
- acfg.idUri = f"sip:{user_part}@{self.host}:{self.port}"
|
|
|
|
- acfg.regConfig.registrarUri = f"sip:{self.host}:{self.port}"
|
|
|
|
- cred = pj.AuthCredInfo("digest", "*", f"{user_part}", 0, self.password)
|
|
|
|
- acfg.sipConfig.authCreds.append(cred)
|
|
|
|
-
|
|
|
|
- acfg.regConfig.timeoutSec = 86400 # 注册超时时间(秒)
|
|
|
|
- acfg.regConfig.retryIntervalSec = 10 # 重试间隔时间(秒)
|
|
|
|
- acfg.regConfig.firstRetryIntervalSec = 10 # 首次重试间隔时间(秒)
|
|
|
|
-
|
|
|
|
- # acfg.natConfig.iceEnabled = True
|
|
|
|
- # acfg.natConfig.turnEnabled = True
|
|
|
|
- # acfg.natConfig.turnServer = "stun:pbx.fuxicarbon.com:3478"
|
|
|
|
- # acfg.natConfig.turnUsername = "username"
|
|
|
|
- # acfg.natConfig.turnPassword = "password"
|
|
|
|
-
|
|
|
|
- # Create the account
|
|
|
|
- acc = Account(self, user_part=user_part)
|
|
|
|
- acc.create(acfg)
|
|
|
|
-
|
|
|
|
- self.user_part_pool.put(user_part)
|
|
|
|
- self.accounts[user_part] = acc
|
|
|
|
|
|
+ self.create_account()
|
|
|
|
|
|
while not self.is_stopping:
|
|
while not self.is_stopping:
|
|
registry.BOT_AGENT_LIVES.set(self.user_part_pool.qsize())
|
|
registry.BOT_AGENT_LIVES.set(self.user_part_pool.qsize())
|
|
- self.flush_register_expire()
|
|
|
|
|
|
+ self.register_per_hours()
|
|
self.ep.libHandleEvents(100)
|
|
self.ep.libHandleEvents(100)
|
|
|
|
|
|
- def flush_register_expire(self):
|
|
|
|
- if len(self.accounts) == self.user_part_pool.qsize():
|
|
|
|
- self.logger.info("------------------>flush register ::%s", len(self.accounts))
|
|
|
|
- user_part = self.user_part_range[0]
|
|
|
|
- self.accounts[user_part].setRegistration(renew=True)
|
|
|
|
|
|
+ def create_account(self, recreate = False):
|
|
|
|
+ start_time = time.time()
|
|
|
|
+ try:
|
|
|
|
+ _hour = datetime.now().strftime('%Y%m%d%H')
|
|
|
|
+ self.cache.set_register_per_hours(_hour)
|
|
|
|
+ if recreate:
|
|
|
|
+ for k, v in self.accounts.items():
|
|
|
|
+ try:
|
|
|
|
+ v.shutdown()
|
|
|
|
+ except:
|
|
|
|
+ traceback.print_exc()
|
|
|
|
+ while not self.user_part_pool.empty():
|
|
|
|
+ try:
|
|
|
|
+ self.user_part_pool.get_nowait()
|
|
|
|
+ except:
|
|
|
|
+ pass
|
|
|
|
+
|
|
|
|
+ for user_part in self.user_part_range:
|
|
|
|
+ acfg = pj.AccountConfig()
|
|
|
|
+ acfg.idUri = f"sip:{user_part}@{self.host}:{self.port}"
|
|
|
|
+ acfg.regConfig.registrarUri = f"sip:{self.host}:{self.port}"
|
|
|
|
+ cred = pj.AuthCredInfo("digest", "*", f"{user_part}", 0, self.password)
|
|
|
|
+ acfg.sipConfig.authCreds.append(cred)
|
|
|
|
+
|
|
|
|
+ acfg.regConfig.timeoutSec = 86400 # 注册超时时间(秒)
|
|
|
|
+ acfg.regConfig.retryIntervalSec = 10 # 重试间隔时间(秒)
|
|
|
|
+ acfg.regConfig.firstRetryIntervalSec = 10 # 首次重试间隔时间(秒)
|
|
|
|
+
|
|
|
|
+ # acfg.natConfig.iceEnabled = True
|
|
|
|
+ # acfg.natConfig.turnEnabled = True
|
|
|
|
+ # acfg.natConfig.turnServer = f"stun:{self.host}:3478"
|
|
|
|
+ # acfg.natConfig.turnUsername = "username"
|
|
|
|
+ # acfg.natConfig.turnPassword = "password"
|
|
|
|
+
|
|
|
|
+ # Create the account
|
|
|
|
+ acc = Account(self, user_part=user_part)
|
|
|
|
+ acc.create(acfg)
|
|
|
|
+
|
|
|
|
+ self.user_part_pool.put(user_part)
|
|
|
|
+ self.accounts[user_part] = acc
|
|
|
|
+ except:
|
|
|
|
+ traceback.print_exc()
|
|
|
|
+ finally:
|
|
|
|
+ latency = time.time() - start_time
|
|
|
|
+ registry.BOT_CREATE_ACCOUNT_LATENCY.observe(latency)
|
|
|
|
+ self.logger.info("create account latency: %.3fs", latency)
|
|
|
|
+
|
|
|
|
+ def register_per_hours(self):
|
|
|
|
+ _hour = datetime.now().strftime('%Y%m%d%H')
|
|
|
|
+ _lock = self.cache.lock_register_per_hours(_hour)
|
|
|
|
+ if _lock and len(self.accounts) == len(self.user_part_range):
|
|
|
|
+ self.cache.set_register_per_hours(_hour)
|
|
|
|
+ self.create_account(recreate=True)
|
|
|
|
|
|
def transfer(self, user_part, call_id, device_id, service_id='00000000000000000'):
|
|
def transfer(self, user_part, call_id, device_id, service_id='00000000000000000'):
|
|
if self.acd_service:
|
|
if self.acd_service:
|