截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

SystemNoticeLogic.php 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\common\logic;
  20. use app\common\basics\Logic;
  21. use app\common\enum\NoticeEnum;
  22. use app\common\model\Notice;
  23. use app\common\server\ConfigServer;
  24. use app\common\server\UrlServer;
  25. /**
  26. * 系统通知
  27. * Class NoticeLogic
  28. * @package app\api\logic
  29. */
  30. class SystemNoticeLogic extends Logic
  31. {
  32. /**
  33. * Notes: 消息主页
  34. * @param $user_id
  35. * @author 段誉(2021/6/22 1:18)
  36. * @return array
  37. * @throws \think\db\exception\DataNotFoundException
  38. * @throws \think\db\exception\DbException
  39. * @throws \think\db\exception\ModelNotFoundException
  40. */
  41. public static function index($user_id)
  42. {
  43. //最新系统消息
  44. $server = Notice::where([
  45. ['user_id', '=', $user_id],
  46. ['send_type', '=', NoticeEnum::SYSTEM_NOTICE],
  47. ['scene', 'not in', [NoticeEnum::GET_EARNINGS_NOTICE, NoticeEnum::GET_FUTURE_EARNINGS_NOTICE]],
  48. ])->order('id desc')->find();
  49. //最新收益通知
  50. $earning = Notice::where([
  51. ['user_id', '=', $user_id],
  52. ['send_type', '=', NoticeEnum::SYSTEM_NOTICE],
  53. ['scene', 'in', [NoticeEnum::GET_EARNINGS_NOTICE, NoticeEnum::GET_FUTURE_EARNINGS_NOTICE]],
  54. ])->order('id desc')->find();
  55. $data['system'] = [
  56. 'title' => '系统通知',
  57. 'content' => $server['content'] ?? '暂无系统消息',
  58. 'img' => UrlServer::getFileUrl(ConfigServer::get('website', 'system_notice')),
  59. 'type' => 'system',
  60. ];
  61. $data['earning'] = [
  62. 'title' => '收益通知',
  63. 'content' => $earning['content'] ?? '暂无收益消息',
  64. 'img' => UrlServer::getFileUrl(ConfigServer::get('website', 'earning_notice')),
  65. 'type' => 'earning',
  66. ];
  67. $res = array_values($data);
  68. return $res;
  69. }
  70. /**
  71. * Notes: 消息列表
  72. * @param $user_id
  73. * @param $type
  74. * @param $page
  75. * @param $size
  76. * @author 段誉(2021/6/22 1:18)
  77. * @return array
  78. * @throws \think\db\exception\DataNotFoundException
  79. * @throws \think\db\exception\DbException
  80. * @throws \think\db\exception\ModelNotFoundException
  81. */
  82. public static function lists($user_id, $type, $page, $size)
  83. {
  84. $where = [];
  85. $where[] = ['user_id', '=', $user_id];
  86. $where[] = ['send_type', '=', NoticeEnum::SYSTEM_NOTICE];
  87. if ($type == 'earning') {
  88. $where[] = ['scene', 'in', [NoticeEnum::GET_EARNINGS_NOTICE, NoticeEnum::GET_FUTURE_EARNINGS_NOTICE]];
  89. } else {
  90. $where[] = ['scene', 'not in', [NoticeEnum::GET_EARNINGS_NOTICE, NoticeEnum::GET_FUTURE_EARNINGS_NOTICE]];
  91. }
  92. $count = Notice::where($where)->count();
  93. $lists = Notice::where($where)
  94. ->order('id desc')
  95. ->page($page, $size)
  96. ->select();
  97. //更新为已读
  98. Notice::where($where)
  99. ->where('read', '<>', 1)
  100. ->update(['read' => 1]);
  101. return [
  102. 'list' => $lists,
  103. 'page' => $page,
  104. 'size' => $size,
  105. 'count' => $count,
  106. 'more' => is_more($count, $page, $size)
  107. ];
  108. }
  109. /**
  110. * Notes: 是否有未读的消息
  111. * @param $user_id
  112. * @author 段誉(2021/6/22 1:17)
  113. * @return bool
  114. * @throws \think\db\exception\DataNotFoundException
  115. * @throws \think\db\exception\DbException
  116. * @throws \think\db\exception\ModelNotFoundException
  117. */
  118. public static function unRead($user_id)
  119. {
  120. $un_read = Notice::where([
  121. 'user_id' => $user_id,
  122. 'read' => 0,
  123. 'send_type' => NoticeEnum::SYSTEM_NOTICE
  124. ])->find();
  125. if ($un_read) {
  126. return true;
  127. }
  128. return false;
  129. }
  130. }