Review.php 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkAdmin
  4. // +----------------------------------------------------------------------
  5. // | 版权所有 2014~2019 广州楚才信息科技有限公司 [ http://www.cuci.cc ]
  6. // +----------------------------------------------------------------------
  7. // | 官方网站: http://demo.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 library\Controller;
  17. use think\Db;
  18. /**
  19. * Class Review
  20. * @package app\wechat\controller\api
  21. */
  22. class Review extends Controller
  23. {
  24. /**
  25. * 图文展示
  26. * @param integer $id 图文ID
  27. * @throws \think\db\exception\DataNotFoundException
  28. * @throws \think\db\exception\ModelNotFoundException
  29. * @throws \think\exception\DbException
  30. */
  31. public function news($id = 0)
  32. {
  33. $this->news = MediaService::news(empty($id) ? input('id') : $id);
  34. $this->fetch();
  35. }
  36. /**
  37. * 文章展示
  38. * @param integer $id 文章ID
  39. * @throws \think\Exception
  40. * @throws \think\db\exception\DataNotFoundException
  41. * @throws \think\db\exception\ModelNotFoundException
  42. * @throws \think\exception\DbException
  43. * @throws \think\exception\PDOException
  44. */
  45. public function view($id = 0)
  46. {
  47. $where = ['id' => empty($id) ? input('id') : $id];
  48. Db::name('WechatNewsArticle')->where($where)->update(['read_num' => Db::raw('read_num+1')]);
  49. $this->info = Db::name('WechatNewsArticle')->where($where)->find();
  50. $this->fetch();
  51. }
  52. /**
  53. * 文本展示
  54. */
  55. public function text()
  56. {
  57. $this->content = strip_tags(input('content', ''), '<a><img>');
  58. $this->fetch();
  59. }
  60. /**
  61. * 图片展示
  62. */
  63. public function image()
  64. {
  65. $this->content = strip_tags(input('content', ''), '<a><img>');
  66. $this->fetch();
  67. }
  68. /**
  69. * 视频展示
  70. */
  71. public function video()
  72. {
  73. $this->url = strip_tags(input('url', ''), '<a><img>');
  74. $this->title = strip_tags(input('title', ''), '<a><img>');
  75. $this->fetch();
  76. }
  77. /**
  78. * 语音展示
  79. */
  80. public function voice()
  81. {
  82. $this->url = strip_tags(input('url', ''), '<a><img>');
  83. $this->fetch();
  84. }
  85. /**
  86. * 音乐展示
  87. */
  88. public function music()
  89. {
  90. $this->url = strip_tags(input('url', ''), '<a><img>');
  91. $this->desc = strip_tags(input('desc', ''), '<a><img>');
  92. $this->title = strip_tags(input('title', ''), '<a><img>');
  93. $this->fetch();
  94. }
  95. }