截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CommunityArticleLogic.php 2.8KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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\cache\CommunityArticleCache;
  22. use app\common\enum\CommunityArticleEnum;
  23. use app\common\model\community\CommunityFollow;
  24. class CommunityArticleLogic extends Logic
  25. {
  26. /**
  27. * @notes 用户发布新文章通知粉丝
  28. * @param $user_id
  29. * @param $status
  30. * @return bool
  31. * @author 段誉
  32. * @date 2022/5/12 16:45
  33. */
  34. public static function noticeFans($user_id, $status)
  35. {
  36. if ($status != CommunityArticleEnum::STATUS_SUCCESS) {
  37. return true;
  38. }
  39. $fans = CommunityFollow::where(['follow_id' => $user_id, 'status' => 1])
  40. ->column('user_id');
  41. if (empty($fans)) {
  42. return true;
  43. }
  44. // 设置未读缓存
  45. foreach ($fans as $item) {
  46. $cache = new CommunityArticleCache('unread_user'. $item, ['has_new' => 1]);
  47. $cache->set();
  48. }
  49. return true;
  50. }
  51. /**
  52. * @notes 用户是否有未读文章
  53. * @param $user_id
  54. * @return int
  55. * @author 段誉
  56. * @date 2022/5/12 16:47
  57. */
  58. public static function hasNew($user_id)
  59. {
  60. if (empty($user_id)) {
  61. return 0;
  62. }
  63. $cache = new CommunityArticleCache('unread_user'. $user_id);
  64. $isEmpty = $cache->isEmpty();
  65. return !$isEmpty ? 1 : 0;
  66. }
  67. /**
  68. * @notes 删除未读状态
  69. * @param $user_id
  70. * @return bool
  71. * @author 段誉
  72. * @date 2022/5/12 16:51
  73. */
  74. public static function delUnRead($user_id)
  75. {
  76. $cache = new CommunityArticleCache('unread_user'. $user_id);
  77. return $cache->del();
  78. }
  79. }