data_handler.py 3.9 KB

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