enumeration.py 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477
  1. #!/usr/bin/env python3
  2. # encoding:utf-8
  3. from enum import Enum
  4. class DelayActionEnum(Enum):
  5. CALL_TIMEOUT_HANGUP = ('CALL_TIMEOUT_HANGUP', "超时挂机")
  6. PLAY_TIMEOUT_HANGUP = ('PLAY_TIMEOUT_HANGUP','播放超时挂机')
  7. NOTICE_TIMEOUT_HANGUP = ('NOTICE_TIMEOUT_HANGUP', '')
  8. CALL_TIMEOUT_DECR = ('CALL_TIMEOUT_DECR', ''),
  9. ACD_TIMEOUT_PLAY = ('ACD_TIMEOUT_PLAY','')
  10. def __init__(self, code=None, description=None):
  11. self.code = code
  12. self.description = description
  13. @classmethod
  14. def get_by_code(cls, code):
  15. return next((member for member in cls if member.code == code), None)
  16. class HumanState(Enum):
  17. DEFAULT = (0, "默认")
  18. IDLE = (1, "空闲")
  19. BUSY = (2, "忙碌")
  20. def __init__(self, code=None, description=None):
  21. self.code = code
  22. self.description = description
  23. @classmethod
  24. def get_by_code(cls, code):
  25. return next((member for member in cls if member.code == code), None)
  26. class AgentState(Enum):
  27. ENABLE = (0, '可用')
  28. DISABLE = (1, '禁用')
  29. def __init__(self, code=None, description=None):
  30. self.code = code
  31. self.description = description
  32. @classmethod
  33. def get_by_code(cls, code):
  34. return next((member for member in cls if member.code == code), None)
  35. class AgentCheck(Enum):
  36. IN = (0, "签入")
  37. OUT = (1, "签出")
  38. def __init__(self, code=None, description=None):
  39. self.code = code
  40. self.description = description
  41. @classmethod
  42. def get_by_code(cls, code):
  43. return next((member for member in cls if member.code == code), None)
  44. class AgentHeartState(Enum):
  45. DEFAULT = (0, "默认")
  46. NORMAL = (1, "正常")
  47. ABNORMAL = (2, "异常")
  48. def __init__(self, code=None, description=None):
  49. self.code = code
  50. self.description = description
  51. class AgentServiceState(Enum):
  52. LOGOUT = (0, "未登录")
  53. BUSY = (1, "忙碌")
  54. IDLE = (2, "空闲")
  55. CALLING = (3, "通话中")
  56. REPROCESSING = (4, "后处理")
  57. DIALING = (5, "拨号中")
  58. HANGING = (6, "挂机回调")
  59. def __init__(self, code=None, description=None):
  60. self.code = code
  61. self.description = description
  62. @classmethod
  63. def get_by_code(cls, code):
  64. return next((member for member in cls if member.code == code), None)
  65. class AgentLogState(Enum):
  66. CREATE = (0, "创建")
  67. UPDATE = (1, "修改")
  68. DELETE = (2, "删除")
  69. CHECKIN = (10, "签入")
  70. CHECKOUT = (11, "签出")
  71. BUSY = (12, "置忙")
  72. IDLE = (13, "置闲")
  73. CHANNEL_TURN_ON = (14, "事件接通")
  74. CHANNEL_HANG_UP = (15, "事件挂断")
  75. ENABLE = (16, "启用")
  76. DISABLE = (17, "禁用")
  77. REPROCESSING_IDLE = (18, "后处理置闲")
  78. DIALING = (19, "拨号中")
  79. BIZ_DIALING_IDLE = (21, "业务拨号中置闲")
  80. MANUAL_HANG_UP = (22, "手动挂断")
  81. TURN_ON = (23, "接通")
  82. HANG_UP = (24, "挂断")
  83. LISTEN = (25, "监听")
  84. LISTEN_TURN_ON = (26, "监听接通")
  85. LISTEN_HANG_UP = (27, "监听挂断")
  86. EVENT_CHECKOUT = (30, "事件签出")
  87. RELOAD_PHONE = (41, "重新分配分机号")
  88. DELAY_HEART_ABNORMAL = (51, "延时心跳异常")
  89. ACTIVE_HUMAN_SERVICE = (54, "人工组激活")
  90. DEL_HUMAN_SERVICE = (55, "人工组成员删除")
  91. FS_DISCONNECT = (56, "FS检测断开")
  92. def __init__(self, code, description):
  93. self.code = code
  94. self.description = description
  95. @classmethod
  96. def get_by_code(cls, code):
  97. return next((member for member in cls if member.code == code), None)
  98. class AgentScene(Enum):
  99. MANUAL = (1, "manual", "手动外呼")
  100. ROBOT = (2, "robot", "机器人外呼")
  101. MONITOR = (3, "monitor", "监听")
  102. WECHAT = (4, "wechat", "微信语音")
  103. def __init__(self, idx, code, description):
  104. self.idx = idx
  105. self.code = code
  106. self.description = description
  107. @classmethod
  108. def get_by_code(cls, code):
  109. return next((member for member in cls if member.code == code), None)
  110. class WorkStatus(Enum):
  111. NO_INIT = (-1, "没有初始化")
  112. LOGIN_SUCCESS = (0, "登录CTI 成功")
  113. AGENT_READY = (2, "座席就绪")
  114. AGENT_BUSY = (3, "座席忙碌")
  115. AGENT_DIALING = (4, "座席外拨")
  116. AGENT_RINGING = (5, "座席振铃!")
  117. AGENT_HANG_IDLE = (7, "座席挂机处于空闲状态")
  118. AGENT_HANG_REPROCESSING = (8, "座席挂机处于后处理状态")
  119. AGENT_ANSWER_INCOMING = (10, "座席接通呼入电话")
  120. AGENT_ANSWER_OUTGOING = (11, "座席接通呼出电话!")
  121. AGENT_CONSULTING = (12, "座席正在咨询中")
  122. AGENT_IN_CONFERENCE = (13, "座席在会议中")
  123. USER_HOLDING = (14, "用户处于保持中")
  124. AGENT_LISTENING = (16, "坐席正在监听中!")
  125. AGENT_ASSISTING = (17, "座席正在辅助中")
  126. AGENT_INSERTING = (18, "座席正在强插中")
  127. AGENT_CALLING_RINGING = (20, "座席外呼,对方正在振铃!")
  128. AGENT_CONSULTING_RINGING = (21, "座席咨询,对方正在振铃")
  129. ORIGINATING = (22, "桥接中,座席处于保持状态")
  130. AGENT_CALLING = (23, "座席外呼中!")
  131. AGENT_INNER_CALLING = (24, "座席内呼中")
  132. CONSULTING_FAIL = (25, "咨询失败,用户保持状态")
  133. AGENT_CALLING_RINGING_BEFORE = (26, "外呼后座席振铃前状态")
  134. AGENT_INNER_CALLING_RINGING_BEFORE = (27, "内呼后座席振铃前状态")
  135. MULTI_IN_CONFERENCE = (28, "会议后座席振铃前状态")
  136. ANSWER_COMPENSATE = (101, "坐席接通补偿!")
  137. def __init__(self, code=None, description=None):
  138. self.code = code
  139. self.description = description
  140. @classmethod
  141. def get_by_code(cls, code):
  142. return next((member for member in cls if member.code == code), None)
  143. class DownEvent(Enum):
  144. ON_INITAL_SUCCESS = ("OnInitalSuccess","初始化成功回调,无特殊逻辑")
  145. ON_INITAL_FAILURE = ("OnInitalFailure","初始化失败")
  146. ON_CALLRING = ("OnCallRing","来电振铃")
  147. ON_AGENT_WORK_REPORT = ("OnAgentWorkReport","电话条工作状态事件报告")
  148. ON_CALL_END = ("OnCallEnd","电话结束")
  149. ON_PROMPT = ("OnPrompt", "电话条提示事件报告")
  150. ON_AGENT_REPORT = ("OnAgentReport", "坐席")
  151. ON_CALL_REPORT_INFO = ("OnCallReportInfo", "获取呼叫汇总信息报告")
  152. ON_AGENT_GROUP_QUERY = ("OnAgentGroupQuery", "监控组件加载完毕通知事件")
  153. ANSWER_CALL = ("OnCallAnswer", "坐席接电话事件")
  154. ON_RING_Start = ("OnRingStart", "提示音开始")
  155. ON_RING_END = ("OnRingEnd", "提示音结束")
  156. ON_DETECTED_TONE = ("OnDetectedTone", "收到振铃")
  157. ON_METHOD_RESPONSE_EVENT = ("OnMethodResponseEvent", "方法响应"),
  158. ON_SERVER_TERMINATED = ("ServerTerminated", "服务器不可用错误,重新初始化"),
  159. ON_SERVER_ERROR = ("ServerError", "服务器普通错误")
  160. def __init__(self, code=None, description=None):
  161. self.code = code
  162. self.description = description
  163. @classmethod
  164. def get_by_code(cls, code):
  165. return next((member for member in cls if member.code == code), None)
  166. class ServiceDirect(Enum):
  167. NORMAL = (0, "正常呼叫")
  168. JQ_CALL_OUTSIDE = (1, "精确式外呼")
  169. YL_CALL_OUTSIDE = (2, "预览式外呼")
  170. MANUAL_CALL = (3, "人工外呼")
  171. ROBOT_CALL = (4, "IVR,机器人外呼")
  172. CALL_INSIDE = (5, "内部呼叫")
  173. CONSULT = (6, "咨询")
  174. SINGLE_TRANSFER = (7, "单步转移")
  175. ORIGINATE = (8, "桥接")
  176. LISTEN = (9, "监听")
  177. INTERCEPT = (10, "拦截")
  178. INSERT = (11, "强插")
  179. JJ_CALL_OUTSIDE = (12, "渐进式外呼")
  180. YC_CALL_OUTSIDE = (13, "预测式外呼")
  181. JQYL_CALL_OUTSIDE = (14, "精确预览外呼")
  182. ASSIST = (19, "辅助")
  183. FORCE_REMOVE = (20, "强拆")
  184. FORCE_IDLE = (21, "强制置闲")
  185. FORCE_BUSY = (22, "强制置忙")
  186. FORCE_LOGOUT = (23, "强制登出")
  187. def __init__(self, service_direct=None, description=None):
  188. self.service_direct = service_direct
  189. self.description = description
  190. @classmethod
  191. def get_by_code(cls, code):
  192. return next((member for member in cls if member.code == code), None)
  193. class AnswerFlag(Enum):
  194. INIT = (0, "均未拨通")
  195. USER_ANSWER = (1, "用户接通")
  196. ROBOT_ANSWER = (2, "机器人接通")
  197. USER_AND_ROBOT_BRIDGE = (3, "用户与机器人bridge")
  198. TRANSFER_TO_AGENT = (4, "开始转接到坐席")
  199. AGENT_ANSWER = (5, "坐席接通")
  200. USER_AND_AGENT_BRIDGE = (6, "用户与坐席bridge")
  201. def __init__(self, code=None, description=None):
  202. self.code = code
  203. self.description = description
  204. @classmethod
  205. def get_by_code(cls, code):
  206. return next((member for member in cls if member.code == code), None)
  207. class DeviceType(Enum):
  208. AGENT = (1, "坐席")
  209. CUSTOMER = (2, "客户")
  210. ROBOT = (4, "机器人")
  211. LISTENER = (5, "监听者")
  212. VIRTUAL_AGENT = (6, "虚拟坐席")
  213. def __init__(self, code=None, description=None):
  214. self.code = code
  215. self.description = description
  216. @classmethod
  217. def get_by_code(cls, code):
  218. return next((member for member in cls if member.code == code), None)
  219. class CallType(Enum):
  220. AGENT_CALL = (1, '手动外呼')
  221. BOT_CALL = (2, '机器人外呼')
  222. BOTH_CALL = (3, '双向外呼')
  223. def __init__(self, code=None, description=None):
  224. self.code = code
  225. self.description = description
  226. @classmethod
  227. def get_by_code(cls, code):
  228. return next((member for member in cls if member.code == code), None)
  229. class CallStage(Enum):
  230. ROBOT = (1, "机器人")
  231. AGENT = (2, "人工坐席")
  232. ALL = (3, "总")
  233. def __init__(self, code=None, description=None):
  234. self.code = code
  235. self.description = description
  236. @classmethod
  237. def get_by_code(cls, code):
  238. return next((member for member in cls if member.code == code), None)
  239. class Direction(Enum):
  240. INBOUND = (1, '呼入')
  241. OUTBOUND = (2, '外呼')
  242. def __init__(self, code=None, description=None):
  243. self.code = code
  244. self.description = description
  245. @classmethod
  246. def get_by_code(cls, code):
  247. return next((member for member in cls if member.code == code), None)
  248. class NextType(Enum):
  249. NORNAL = (1, '默认')
  250. NEXT_CALL_OTHER = (2, '呼叫另外一测')
  251. NEXT_CALL_BRIDGE = (3, '桥接')
  252. NEXT_CONSULT_AGENT = (4, '咨询坐席')
  253. NEXT_CONSULT_CALLOUT = (5, '咨询外线')
  254. NEXT_CALL_AGENT = (6, '转到坐席')
  255. NEXT_TRANSFER_SUCCESS = (7, '完成转接')
  256. NEXT_TRANSFER_BRIDGE = (8, '转接后桥接')
  257. NEXT_TRANSFER_CALL = (9, '电话转接')
  258. NEXT_INSERT_CALL = (10, '强插电话')
  259. NEXT_LISTEN_CALL = (11, '监听电话')
  260. NEXT_WHISPER_CALL = (12, '耳语电话')
  261. NEXT_VDN = (13, '进vdn')
  262. NEXT_GROUP = (14, '进技能组')
  263. NEXT_IVR = (15, '进ivr')
  264. NEXT_HANGUP = (16, '挂机处理')
  265. NEXT_QUEUE_PLAY = (17, '放音queue')
  266. NEXT_QUEUE_OVERFLOW_GROUP = (18, '溢出队列')
  267. NEXT_QUEUE_OVERFLOW_IVR = (19, '溢出进IVR')
  268. NEXT_QUEUE_OVERFLOW_VDN = (20, '溢出进vdn')
  269. NEXT_PLAY_START = (21, '播放音频')
  270. NEXT_WAIT_KEY = (22, '等待按键播放音频')
  271. NEXT_NOTICE_MUSIC_DONE = (23, '通知音频播放结束')
  272. NEXT_PLAY_KEY_MUSIC = (24, '播放音频')
  273. NEXT_QUEUE_PLAY_STOP = (25, '停止放音')
  274. def __init__(self, code=None, description=None):
  275. self.code = code
  276. self.description = description
  277. @classmethod
  278. def get_by_code(cls, code):
  279. return next((member for member in cls if member.code == code), None)
  280. class CallCause(Enum):
  281. DEFAULT = (0, "默认")
  282. RESTART = (2, "服务重启")
  283. CALL_TIMEOUT = (3, "呼叫超时")
  284. PLAY_TIMEOUT = (5, "播放音超时")
  285. WAITING_TIMEOUT = (6, "等待超时")
  286. AGENT_HANGUP_CALL = (7, "坐席挂断请求")
  287. HANGUP_EVENT = (8, "挂断事件")
  288. PLAYBACK_STOP = (9, "等待音结束")
  289. ROBOT_MONITOR = (10, "机器人挂断监听")
  290. LINE_BREAK = (11, "线路故障")
  291. ROBOT_TRANSFER = (12, "机器人转接")
  292. ROBOT_FULL = (13, "机器人话路数满额")
  293. NO_MUSIC_HANGUP = (14, "无挂断播放音挂断")
  294. PLAY_KEY_DONE_HANGUP = (15, "按键播放音播完挂断")
  295. PLAY_TIMEOUT_HANGUP = (16, "通知播放超时挂断")
  296. WAITING_KEY_TIMEOUT_HANGUP = (17, "等待按键超时挂断")
  297. def __init__(self, code=None, description=None):
  298. self.code = code
  299. self.description = description
  300. @classmethod
  301. def get_by_code(cls, code):
  302. return next((member for member in cls if member.code == code), None)
  303. class CdrType(Enum):
  304. INBOUND = (1, "呼入")
  305. OUTBOUND = (2, "外呼")
  306. INTERNAL_CALL = (3, "内呼")
  307. TRANSFER = (4, "转接")
  308. CONSULT = (5, "咨询")
  309. LISTENER = (6, "监听")
  310. INTRUSION = (7, "强插")
  311. WHISPER = (8, "耳语")
  312. ROBOT_LISTENER = (9, "机器人质检监听")
  313. def __init__(self, code=None, description=None):
  314. self.code = code
  315. self.description = description
  316. @classmethod
  317. def get_by_code(cls, code):
  318. return next((member for member in cls if member.code == code), None)
  319. class HangupDir(Enum):
  320. HOST_HANGUP = (1, "主叫挂断")
  321. CUSTOMER_HANGUP = (2, "被叫挂断")
  322. PLATFORM_HANGUP = (3, "平台挂机")
  323. def __init__(self, code=None, description=None):
  324. self.code = code
  325. self.description = description
  326. @classmethod
  327. def get_by_code(cls, code):
  328. return next((member for member in cls if member.code == code), None)
  329. class BizErrorCode(Enum):
  330. PARAM_ERROR = (10001, "参数错误")
  331. RECORD_NOT_EXIST_ERROR = (10002, "记录不存在")
  332. OUT_ID_EXIST = (10003, "外部Id已经被占用")
  333. SYSTEM_ERROR = (10004, "系统错误")
  334. NOT_ALLOW_ERROR = (10005, "不允许此操作")
  335. PHONE_NUM_USED = (20003, "分机号已经被占用")
  336. AGENT_CHECK_IN_DELETE_ERROR = (20004, "签入状态坐席不允许当前删除")
  337. AGENT_DISABLE_NOT_ALLOW_OPERATE = (20005, "禁用状态坐席不允许当前操作")
  338. AGENT_CALLING_NOT_ALLOW_OPERATE = (20006, "通话中坐席不允许当前操作")
  339. AGENT_CHECK_OUT_NOT_ALLOW_OPERATE = (20007, "签出状态坐席不允许当前操作")
  340. AGENT_ALREADY_ANOTHER_GROUP = (20008, "坐席已经在其他组")
  341. AGENT_GET_PHONE_ERROR = (20009, "获取分机号错误")
  342. AGENT_CALL_ERROR = (20010, "当前状态不允许外呼")
  343. AGENT_LISTEN_ERROR = (20011, "当前状态不允许监听")
  344. AGENT_NOT_EXIST = (20010, "坐席不存在或已删除")
  345. AGENT_CALLING_NOT_HANG = (20012, "正在通话中,请先挂断再进行当前操作")
  346. AGENT_GROUP_HAS_AGENT = (20103, "坐席组有坐席不能删除")
  347. AGENT_GROUP_AGENT_CHECK_IN = (20104, "签入状态的坐席不允许从组内删除")
  348. CIRCUIT_CAN_NOT_DELETE_ERROR = (20501, "线路存在正在执行/等待执行中的任务")
  349. CALENDARS_SUMMARY_DUPLICATE = (20500, "日常名称不能重复")
  350. CALENDARS_DATE_ERROR = (20501, "日期不能为空")
  351. CALENDARS_DATE_PERIOD_ERROR = (20502, "结束日期必须大于等于开始日期")
  352. CALENDARS_TIME_ERROR = (20503, "时间不能为空")
  353. CALENDARS_TIME_PERIOD_ERROR = (20504, "结束时间必须大于开始时间")
  354. CALENDARS_OUT_ID_NUM_DIS_ALLOW_UPDATE = (20505, "日程编号和外部日程关联不允许变更")
  355. BLACKLIST_MOBILE_EXIST = (20601, "手机号已经存在")
  356. SCHEDULE_ITEM_DATE_ERROR = (20701, "条目开始日期不能大于结束日期")
  357. SCHEDULE_ITEM_DATE_FORMAT_ERROR = (20702, "条目时间格式错误")
  358. SCHEDULE_ITEM_WEEK_NO_AVAILABLE = (20703, "条目没有可用的星期")
  359. SCHEDULE_ITEM_TIME_ERROR = (20704, "条目开始时间不能大于结束时间")
  360. CIRCUIT_POOL_PARALLEL_OVERSIZE = (20705, "并发超过限制")
  361. CIRCUIT_POOL_PARALLEL_ILLEGAL = (20706, "线路池并发不能小于0")
  362. FS_CLUSTER_PULL_SERVER_ERROR = (20801, "拉取FS集群失败")
  363. TASK_START_ERROR = (30001, "任务启动失败")
  364. ERROR_FLOW_ID_NULL = (40001, "ctiFlowId 不能为空")
  365. ERROR_FLOW_ID_NOT_CORRECT = (40002, "ctiFlowId 不正确")
  366. ERROR_FLOW_ID_CALL_ID_NOT_MATCH = (40003, "ctiFlowId callId 不匹配")
  367. DISTRIBUTE_LOCK_TIME_OUT_ERROR = (90000, "请稍等,正在为您处理中")
  368. THIRD_RESPONSE_ERROR = (90001, "外部响应异常")
  369. TERMINATED_AGENT_STATUS = (300001, "对不起,网络状况暂时不佳,请刷新后重试。")
  370. TERMINATED_LISTEN_AGENT_STATUS = (300002, "监听坐席状态错误")
  371. ERROR_ENGINE = (400001, "请求引擎错误")
  372. ERROR_NOT_FOLLOW_CHECK_IN = (400002, "禁用状态坐席不允许签入操作")
  373. WAIT_REPROCESSING = (400003, "请稍等,正在为您加载中。")
  374. WAIT_STATUS_CHANGE = (400004, "正在为您连接客户,请稍等")
  375. AGENT_NOT_CALLING = (400005, "坐席不再通话中")
  376. NOT_ALLOW_STATUS = (400006, "非可修改的状态")
  377. def __init__(self, code, message):
  378. self.code = code
  379. self.message = message
  380. @classmethod
  381. def get_by_code(cls, code):
  382. return next((member for member in cls if member.code == code), None)