News.php 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2022 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: https://thinkadmin.top
  8. // +----------------------------------------------------------------------
  9. // | 开源协议 ( https://mit-license.org )
  10. // | 免费声明 ( https://thinkadmin.top/disclaimer )
  11. // +----------------------------------------------------------------------
  12. // | gitee 代码仓库:https://gitee.com/zoujingli/ThinkAdmin
  13. // | github 代码仓库:https://github.com/zoujingli/ThinkAdmin
  14. // +----------------------------------------------------------------------
  15. namespace app\wechat\controller;
  16. use app\wechat\model\WechatNews;
  17. use app\wechat\model\WechatNewsArticle;
  18. use app\wechat\service\MediaService;
  19. use think\admin\Controller;
  20. use think\admin\helper\QueryHelper;
  21. use think\admin\service\AdminService;
  22. /**
  23. * 微信图文管理
  24. * Class News
  25. * @package app\wechat\controller
  26. */
  27. class News extends Controller
  28. {
  29. /**
  30. * 微信图文管理
  31. * @auth false
  32. * @menu false
  33. */
  34. public function index()
  35. {
  36. $this->title = '微信图文列表';
  37. WechatNews::mQuery(null, function (QueryHelper $query) {
  38. $query->where(['is_deleted' => 0])->order('id desc')->page();
  39. });
  40. }
  41. /**
  42. * 图文列表数据处理
  43. * @param array $data
  44. * @throws \think\db\exception\DataNotFoundException
  45. * @throws \think\db\exception\DbException
  46. * @throws \think\db\exception\ModelNotFoundException
  47. */
  48. protected function _page_filter(array &$data)
  49. {
  50. foreach ($data as &$vo) {
  51. $vo = MediaService::news($vo['id']);
  52. }
  53. }
  54. /**
  55. * 图文选择器
  56. * @auth false
  57. */
  58. public function select()
  59. {
  60. $this->index();
  61. }
  62. /**
  63. * 添加微信图文
  64. * @auth false
  65. */
  66. public function add()
  67. {
  68. if ($this->request->isGet()) {
  69. $this->title = '新建图文';
  70. $this->fetch('form');
  71. } else {
  72. $update = [
  73. 'create_by' => AdminService::getUserId(),
  74. 'article_id' => $this->_buildArticle($this->request->post('data', [])),
  75. ];
  76. if (WechatNews::mk()->insert($update) !== false) {
  77. $this->success('图文添加成功!', 'javascript:history.back()');
  78. } else {
  79. $this->error('图文添加失败,请稍候再试!');
  80. }
  81. }
  82. }
  83. /**
  84. * 编辑微信图文
  85. * @auth false
  86. * @throws \think\db\exception\DataNotFoundException
  87. * @throws \think\db\exception\DbException
  88. * @throws \think\db\exception\ModelNotFoundException
  89. */
  90. public function edit()
  91. {
  92. $this->id = $this->request->get('id');
  93. if (empty($this->id)) $this->error('参数错误,请稍候再试!');
  94. if ($this->request->isGet()) {
  95. if ($this->request->get('output') === 'json') {
  96. $this->success('获取数据成功!', MediaService::news($this->id));
  97. } else {
  98. $this->title = '编辑图文';
  99. $this->fetch('form');
  100. }
  101. } else {
  102. $ids = $this->_buildArticle($this->request->post('data', []));
  103. [$map, $data] = [['id' => $this->id], ['article_id' => $ids]];
  104. if (WechatNews::mk()->where($map)->update($data) !== false) {
  105. $this->success('更新成功!', 'javascript:history.back()');
  106. } else {
  107. $this->error('更新失败,请稍候再试!');
  108. }
  109. }
  110. }
  111. /**
  112. * 删除微信图文
  113. * auth false
  114. */
  115. public function remove()
  116. {
  117. WechatNews::mDelete();
  118. }
  119. /**
  120. * 图文更新操作
  121. * @param array $data
  122. * @return string
  123. */
  124. private function _buildArticle(array $data): string
  125. {
  126. $ids = [];
  127. foreach ($data as $vo) {
  128. if (empty($vo['digest'])) {
  129. $vo['digest'] = mb_substr(strip_tags(str_replace(["\s", ' '], '', $vo['content'])), 0, 120);
  130. }
  131. $vo['create_at'] = date('Y-m-d H:i:s');
  132. if (empty($vo['id'])) {
  133. $result = $id = WechatNewsArticle::mk()->insertGetId($vo);
  134. } else {
  135. $id = intval($vo['id']);
  136. $result = WechatNewsArticle::mk()->where('id', $id)->update($vo);
  137. }
  138. if ($result !== false) $ids[] = $id;
  139. }
  140. return join(',', $ids);
  141. }
  142. }