View.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  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\api;
  15. use app\wechat\service\MediaService;
  16. use think\admin\Controller;
  17. /**
  18. * 微信图文显示
  19. * Class View
  20. * @package app\wechat\controller\api
  21. */
  22. class View extends Controller
  23. {
  24. /**
  25. * 图文列表展示
  26. * @param integer $id 图文ID编号
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\DbException
  29. * @throws \think\db\exception\ModelNotFoundException
  30. */
  31. public function news($id = 0)
  32. {
  33. $this->id = $id ?: input('id', 0);
  34. $this->news = MediaService::instance()->news($this->id);
  35. $this->fetch();
  36. }
  37. /**
  38. * 文章内容展示
  39. * @param integer $id 文章ID编号
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\DbException
  42. * @throws \think\db\exception\ModelNotFoundException
  43. */
  44. public function item($id = 0)
  45. {
  46. $map = ['id' => $id ?: input('id', 0)];
  47. $this->app->db->name('WechatNewsArticle')->where($map)->update([
  48. 'read_num' => $this->app->db->raw('read_num+1'),
  49. ]);
  50. $this->info = $this->app->db->name('WechatNewsArticle')->where($map)->find();
  51. $this->fetch();
  52. }
  53. /**
  54. * 文本展示
  55. */
  56. public function text()
  57. {
  58. $this->content = strip_tags(input('content', ''), '<a><img>');
  59. $this->fetch();
  60. }
  61. /**
  62. * 图片展示
  63. */
  64. public function image()
  65. {
  66. $this->content = strip_tags(input('content', ''), '<a><img>');
  67. $this->fetch();
  68. }
  69. /**
  70. * 视频展示
  71. */
  72. public function video()
  73. {
  74. $this->url = strip_tags(input('url', ''), '<a><img>');
  75. $this->title = strip_tags(input('title', ''), '<a><img>');
  76. $this->fetch();
  77. }
  78. /**
  79. * 语音展示
  80. */
  81. public function voice()
  82. {
  83. $this->url = strip_tags(input('url', ''), '<a><img>');
  84. $this->fetch();
  85. }
  86. /**
  87. * 音乐展示
  88. */
  89. public function music()
  90. {
  91. $this->url = strip_tags(input('url', ''), '<a><img>');
  92. $this->desc = strip_tags(input('desc', ''), '<a><img>');
  93. $this->title = strip_tags(input('title', ''), '<a><img>');
  94. $this->fetch();
  95. }
  96. }