News.php 5.1 KB

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