Article.php 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php
  2. namespace app\api\controller;
  3. use think\facade\Lang;
  4. /**
  5. *
  6. *
  7. * ----------------------------------------------------------------------------
  8. *
  9. * 文章控制器
  10. */
  11. class Article extends MobileMall
  12. {
  13. public function initialize()
  14. {
  15. parent::initialize();
  16. Lang::load(base_path() . 'home/lang/' . config('lang.default_lang') . '/article.lang.php');
  17. }
  18. /**
  19. * @api {POST} api/Article/article_list 文章列表
  20. * @apiVersion 1.0.0
  21. * @apiGroup Article
  22. *
  23. * @apiParam {Int} ac_id 文章分类
  24. *
  25. * @apiSuccess {String} code 返回码,10000为成功
  26. * @apiSuccess {String} message 返回消息
  27. * @apiSuccess {Object} result 返回数据
  28. * @apiSuccess {Object[]} result.article_list 文章列表
  29. * @apiSuccess {Int} result.article_list.ac_id 分类ID
  30. * @apiSuccess {String} result.article_list.article_content 文章内容
  31. * @apiSuccess {Int} result.article_list.article_id 文章ID
  32. * @apiSuccess {String} result.article_list.article_pic 文章图片
  33. * @apiSuccess {Int} result.article_list.article_show 是否显示 0否1是
  34. * @apiSuccess {Int} result.article_list.article_sort 排序
  35. * @apiSuccess {Int} result.article_list.article_time 添加时间(Unix时间戳)
  36. * @apiSuccess {String} result.article_list.article_title 文章标题
  37. * @apiSuccess {String} result.article_list.article_url 文章跳转链接
  38. * @apiSuccess {String} result.article_type_name 分类名称
  39. */
  40. public function article_list()
  41. {
  42. $ac_id = intval(input('param.ac_id'));
  43. if ($ac_id > 0) {
  44. $articleclass_model = model('articleclass');
  45. $article_model = model('article');
  46. $condition = array();
  47. $child_class_list = $articleclass_model->getChildClass($ac_id);
  48. $ac_ids = array();
  49. if (!empty($child_class_list) && is_array($child_class_list)) {
  50. foreach ($child_class_list as $v) {
  51. $ac_ids[] = $v['ac_id'];
  52. }
  53. }
  54. $ac_ids = implode(',', $ac_ids);
  55. $condition[] = array('ac_id', 'in', $ac_ids);
  56. $condition[] = array('article_show', '=', '1');
  57. $result['article_list'] = $article_model->getArticleList($condition, 20);
  58. $result['article_type_name'] = $this->article_type_name($ac_ids);
  59. $result = array_merge(array('article_list' => $result['article_list'], 'article_type_name' => $result['article_type_name']), mobile_page(is_object($article_model->page_info) ? $article_model->page_info : ''));
  60. ds_json_encode(10000, '', $result);
  61. } else {
  62. ds_json_encode(10001, lang('param_error'));
  63. }
  64. }
  65. /**
  66. * 根据类别编号获取文章类别信息
  67. */
  68. private function article_type_name()
  69. {
  70. $ac_id = intval(input('param.ac_id'));
  71. if ($ac_id > 0) {
  72. $articleclass_model = model('articleclass');
  73. $article_class = $articleclass_model->getOneArticleclass($ac_id);
  74. return ($article_class['ac_name']);
  75. } else {
  76. return (lang('param_error'));
  77. }
  78. }
  79. /**
  80. * @api {POST} api/Article/article_show 单篇文章显示
  81. * @apiVersion 1.0.0
  82. * @apiGroup Article
  83. *
  84. * @apiParam {Int} article_id 文章ID
  85. *
  86. * @apiSuccess {String} code 返回码,10000为成功
  87. * @apiSuccess {String} message 返回消息
  88. * @apiSuccess {Object} result 返回数据
  89. * @apiSuccess {Int} result.ac_id 分类ID
  90. * @apiSuccess {String} result.article_content 文章内容
  91. * @apiSuccess {Int} result.article_id 文章ID
  92. * @apiSuccess {String} result.article_pic 文章图片
  93. * @apiSuccess {Int} result.article_show 是否显示 0否1是
  94. * @apiSuccess {Int} result.article_sort 排序
  95. * @apiSuccess {Int} result.article_time 添加时间(Unix时间戳)
  96. * @apiSuccess {String} result.article_title 文章标题
  97. * @apiSuccess {String} result.article_url 文章跳转链接
  98. */
  99. public function article_show()
  100. {
  101. $article_model = model('article');
  102. $article_id = intval(input('param.article_id'));
  103. if ($article_id > 0) {
  104. $prefix = 'api-article-show-';
  105. $article = rcache($article_id, $prefix);
  106. if (empty($article)) {
  107. $condition = array();
  108. $condition[] = array('article_id', '=', $article_id);
  109. $article = $article_model->getOneArticle($condition);
  110. wcache($article_id, $article, $prefix, 3600);
  111. }
  112. if (empty($article)) {
  113. ds_json_encode(10001, lang('article_show_not_exists'));
  114. } else {
  115. $article['article_content'] = htmlspecialchars_decode($article['article_content']);
  116. ds_json_encode(10000, '', $article);
  117. }
  118. } else {
  119. ds_json_encode(10001, lang('param_error'));
  120. }
  121. }
  122. }