data_handler.py 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. from src.core import with_app_context
  2. from src.core.callcenter.constant import START_AGENT_NUM
  3. from src.core.callcenter.dao import *
  4. from sqlalchemy import or_
  5. class DataHandleServer:
  6. """通话记录服务"""
  7. def __init__(self,app):
  8. self.app = app
  9. @with_app_context
  10. def create_record(self, call_id, caller_number, call_type, service_category=None, destination=None):
  11. call_info = {
  12. "session_id": call_id,
  13. "time_begin": datetime.utcnow(),
  14. "category": 0,
  15. "phone": caller_number,
  16. "type": call_type,
  17. "service_category": service_category,
  18. "agent_num":destination,
  19. "user_id":destination,
  20. "user_name": f"机器人{destination}" if destination else None,
  21. }
  22. call_record = CallRecord()
  23. # 处理多余的参数
  24. for key, value in call_info.items():
  25. if hasattr(call_record, key): # 确保模型有这个属性
  26. setattr(call_record, key, value)
  27. try:
  28. if call_info.get("type") in [0, 2] or call_info.get("category") == 1: # 如果呼入类型是白名单和传统服务或者是呼出 修改用户id和用户名称
  29. agent_num = call_info.get("agent_num") # 使用 get 方法
  30. if agent_num: # 确保 agent_num 存在
  31. agent = self.get_user_name(agent_num)
  32. call_record.user_id = agent.user_id
  33. call_record.user_name = agent.agent_name
  34. db.session.add(call_record)
  35. db.session.commit()
  36. print("记录创建成功")
  37. except Exception as e:
  38. db.session.rollback()
  39. raise ValueError(f"创建记录失败: {e}")
  40. @with_app_context
  41. def update_record(self, session_id, call_info):
  42. call_record = CallRecord.query.filter(CallRecord.session_id == session_id).first()
  43. # 动态更新字段
  44. for key, value in call_info.items():
  45. if hasattr(call_record, key):
  46. setattr(call_record, key, value)
  47. db.session.commit()
  48. @with_app_context
  49. def get_user_name(self,agent_num):
  50. agent = Agent.query.filter(Agent.agent_num == agent_num).first()
  51. return agent
  52. @with_app_context
  53. def get_agent_phone(self, saas_id, agent_num):
  54. return Phone.query.filter(Phone.saas_id == saas_id, Phone.phone_num == agent_num).first()
  55. @with_app_context
  56. def get_agent(self,saas_id, agent_id=None, agent_number=None, out_id=None):
  57. agent = Agent.query.filter(
  58. Agent.saas_id == saas_id,
  59. or_(Agent.out_id == agent_id, Agent.out_id == out_id, Agent.agent_num == agent_number)
  60. ).first()
  61. return agent
  62. @with_app_context
  63. def get_newest_agent_number(self,saas_id):
  64. agent = Agent.query.filter(Agent.saas_id == saas_id).order_by(Agent.agent_num.desc()).first()
  65. agentNum = START_AGENT_NUM
  66. if agent and agent.agent_num:
  67. agentNum = str(int(agent.agent_num) + 1)
  68. return agentNum
  69. @with_app_context
  70. def get_agent_monitor(self,saas_id, agent_number):
  71. monitor = AgentMonitor.query.filter(AgentMonitor.saas_id == saas_id,
  72. AgentMonitor.agent_num == agent_number).first()
  73. return monitor
  74. @with_app_context
  75. def get_phone(self,saas_id, phone_num):
  76. phone = Phone.query.filter(Phone.saas_id == saas_id, Phone.phone_num == phone_num).first()
  77. return phone
  78. @with_app_context
  79. def get_human_service_service(self,saas_id, agent_id):
  80. human_service_map = HumanServiceMap.query.filter(HumanServiceMap.saas_id == saas_id,
  81. HumanServiceMap.agent_id == agent_id).first()
  82. return human_service_map
  83. @with_app_context
  84. def update_agent_monitor_service_state(self, agent_num,service_state):
  85. agent_monitor = AgentMonitor.query.filter(AgentMonitor.agent_num == agent_num).first()
  86. agent_monitor.service_state = service_state
  87. db.session.commit()
  88. @with_app_context
  89. def update_call_record_bussiness_type(self, session):
  90. BotRecord = BotRecords.query.filter(BotRecords.session == session).first()
  91. print("BotRecord",BotRecord.intent,session,flush=True)
  92. self.update_record(session, {"bussiness_type": BotRecord.intent})
  93. db.session.commit()