msgCenterController.js 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. 'use strict';
  2. const Controller = require('egg').Controller;
  3. // 消息中心统计分析管理
  4. class MsgCenterController extends Controller {
  5. constructor(ctx) {
  6. super(ctx);
  7. // 特殊的入参校验可以重写在这,默认可以使用commonRule
  8. this.createRule = {
  9. msgType: { type: 'number', required: false },
  10. startTime: { type: 'number', min: 0 }, // 开始时间的时间戳 包含
  11. endTime: { type: 'number', min: 0 }, // 结束时间的时间戳 不包含(客户端处理结束时间 下一日 ,下一月第一日 ,下一年第一日)
  12. type: [ '0', '1', '2' ], // 类型分为 0日 1月 2年
  13. };
  14. }
  15. // 消息渠道统计
  16. async channel() {
  17. const { ctx } = this;
  18. // 校验参数 组装参数
  19. const payload = ctx.validate();
  20. // 调用 Service 进行业务处理
  21. const data = await ctx.getData(payload, {
  22. value: [ 'colorTotal', 'grayTotal' ],
  23. });
  24. // 设置响应内容和响应状态码
  25. ctx.success({ data });
  26. }
  27. // 消息查看率统计
  28. async read() {
  29. const { ctx } = this;
  30. // 校验参数 组装参数
  31. const payload = ctx.validate(this.createRule);
  32. // 调用 Service 进行业务处理
  33. const data = await ctx.getDataAdd(payload, {
  34. value: [ 'readCount', 'total' ],
  35. });
  36. // 设置响应内容和响应状态码
  37. ctx.success({ data });
  38. }
  39. // 消息抵达率统计
  40. async over() {
  41. const { ctx } = this;
  42. // 校验参数 组装参数
  43. const payload = ctx.validate();
  44. // 调用 Service 进行业务处理
  45. const data = await ctx.getData(payload, {
  46. value: [ 'readTotal', 'unReadTotal' ],
  47. });
  48. // 设置响应内容和响应状态码
  49. ctx.success({ data });
  50. }
  51. }
  52. module.exports = MsgCenterController;