Message.php 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | framework
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2018 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://framework.thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // +----------------------------------------------------------------------
  11. // | github开源项目:https://github.com/zoujingli/ThinkAdmin
  12. // +----------------------------------------------------------------------
  13. namespace app\admin\service;
  14. use library\tools\Data;
  15. use think\Db;
  16. /**
  17. * 系统消息管理
  18. * Class Message
  19. * @package app\admin\service
  20. */
  21. class Message
  22. {
  23. /**
  24. * 增加系统消息
  25. * @param string $title 消息标题
  26. * @param string $desc 消息描述
  27. * @param string $url 访问链接
  28. * @param string $node 权限节点
  29. * @return boolean
  30. */
  31. public static function add($title, $desc, $url, $node)
  32. {
  33. $code = Data::uniqidNumberCode(12);
  34. $data = ['title' => $title, 'desc' => $desc, 'url' => $url, 'code' => $code, 'node' => $node];
  35. return Db::name('SystemMessage')->insert($data) !== false;
  36. }
  37. /**
  38. * 系统消息状态更新
  39. * @param integer $code
  40. * @return boolean
  41. * @throws \think\Exception
  42. * @throws \think\exception\PDOException
  43. */
  44. public static function set($code)
  45. {
  46. $result = Db::name('SystemMessage')->where(['code' => $code, 'read_state' => '0'])->update([
  47. 'read_state' => '1', 'read_at' => date('Y-m-d H:i:s'), 'read_uid' => session('user.id'),
  48. ]);
  49. return $result !== false;
  50. }
  51. /**
  52. * 获取消息列表成功
  53. * @return array
  54. * @throws \think\db\exception\DataNotFoundException
  55. * @throws \think\db\exception\ModelNotFoundException
  56. * @throws \think\exception\DbException
  57. */
  58. public static function gets()
  59. {
  60. $where = ['read_state' => '0'];
  61. $list = Db::name('SystemMessage')->where($where)->order('id desc')->select();
  62. foreach ($list as $key => $vo) if (!empty($vo['node']) && !auth($vo['node'])) unset($list[$key]);
  63. return $list;
  64. }
  65. }