Açıklama Yok
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Archives.php 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\home\model;
  14. use think\Model;
  15. use think\Page;
  16. use think\Db;
  17. use app\home\logic\FieldLogic;
  18. /**
  19. * 文档主表
  20. */
  21. class Archives extends Model
  22. {
  23. //初始化
  24. protected function initialize()
  25. {
  26. // 需要调用`Model`的`initialize`方法
  27. parent::initialize();
  28. $this->fieldLogic = new FieldLogic();
  29. }
  30. /**
  31. * 获取单条文档记录
  32. * @author wengxianhu by 2017-7-26
  33. */
  34. public function getViewInfo($aid, $litpic_remote = false, $where = [])
  35. {
  36. $result = array();
  37. $row = Db::name('archives')->field('*')->where($where)->find($aid);
  38. if (!empty($row)) {
  39. /*封面图*/
  40. if (empty($row['litpic'])) {
  41. $row['is_litpic'] = 0; // 无封面图
  42. } else {
  43. $row['is_litpic'] = 1; // 有封面图
  44. }
  45. $row['litpic'] = get_default_pic($row['litpic'], $litpic_remote); // 默认封面图
  46. /*文档基本信息*/
  47. if (1 == $row['channel']) { // 文章模型
  48. $articleModel = new \app\home\model\Article();
  49. $extFields = Db::name('article_content')->getTableFields();
  50. $extFields = array_flip($extFields);
  51. unset($extFields['id']);
  52. $rowExt = $articleModel->getInfo($aid);
  53. $rowExt = array_diff_key($extFields, $row);
  54. } else if (2 == $row['channel']) { // 产品模型
  55. /*产品参数*/
  56. $productAttrModel = new \app\home\model\ProductAttr();
  57. $attr_list = $productAttrModel->getProAttr($aid);
  58. $row['attr_list'] = !empty($attr_list[$aid]) ? $attr_list[$aid] : [];
  59. // 产品相册
  60. $image_list = [];
  61. $productImgModel = new \app\home\model\ProductImg();
  62. $image_list_tmp = $productImgModel->getProImg($aid);
  63. if (!empty($image_list_tmp[$aid])) {
  64. foreach ($image_list_tmp[$aid] as $key => $val) {
  65. $val['image_url'] = get_default_pic($val['image_url'], $litpic_remote);
  66. isset($val['intro']) && $val['intro'] = htmlspecialchars_decode($val['intro']);
  67. $image_list[$key] = $val;
  68. }
  69. }
  70. $row['image_list'] = $image_list;
  71. $productModel = new \app\home\model\Product();
  72. $extFields = Db::name('product_content')->getTableFields();
  73. $extFields = array_flip($extFields);
  74. unset($extFields['id']);
  75. $rowExt = $productModel->getInfo($aid);
  76. $rowExt = array_diff_key($extFields, $row);
  77. } else if (3 == $row['channel']) { // 图集模型
  78. // 图集相册
  79. $image_list = [];
  80. $imagesUploadModel = new \app\home\model\ImagesUpload();
  81. $image_list_tmp = $imagesUploadModel->getImgUpload($aid);
  82. if (!empty($image_list_tmp[$aid])) {
  83. foreach ($image_list_tmp[$aid] as $key => $val) {
  84. $val['image_url'] = get_default_pic($val['image_url'], $litpic_remote);
  85. isset($val['intro']) && $val['intro'] = htmlspecialchars_decode($val['intro']);
  86. $image_list[$key] = $val;
  87. }
  88. }
  89. $row['image_list'] = $image_list;
  90. $imagesModel = new \app\home\model\Images();
  91. $extFields = Db::name('images_content')->getTableFields();
  92. $extFields = array_flip($extFields);
  93. unset($extFields['id']);
  94. $rowExt = $imagesModel->getInfo($aid);
  95. $rowExt = array_diff_key($extFields, $row);
  96. } else if (4 == $row['channel']) { // 下载模型
  97. $downloadModel = new \app\home\model\Download();
  98. $extFields = Db::name('download_content')->getTableFields();
  99. $extFields = array_flip($extFields);
  100. unset($extFields['id']);
  101. $rowExt = $downloadModel->getInfo($aid);
  102. $rowExt = array_diff_key($extFields, $row);
  103. }
  104. $rowExt = $this->fieldLogic->getChannelFieldList($rowExt, $row['channel']); // 自定义字段的数据格式处理
  105. /*--end*/
  106. $result = array_merge($rowExt, $row);
  107. }
  108. return $result;
  109. }
  110. /**
  111. * 获取单页栏目记录
  112. * @author wengxianhu by 2017-7-26
  113. */
  114. public function getSingleInfo($typeid, $litpic_remote = false)
  115. {
  116. $result = array();
  117. /*文档基本信息*/
  118. $row = $this->readContentFirst($typeid);
  119. /*--end*/
  120. if (!empty($row)) {
  121. /*封面图*/
  122. if (empty($row['litpic'])) {
  123. $row['is_litpic'] = 0; // 无封面图
  124. } else {
  125. $row['is_litpic'] = 1; // 有封面图
  126. }
  127. $row['litpic'] = get_default_pic($row['litpic'], $litpic_remote); // 默认封面图
  128. /*--end*/
  129. $row = $this->fieldLogic->getTableFieldList($row, config('global.arctype_channel_id')); // 自定义字段的数据格式处理
  130. /*--end*/
  131. $row = $this->fieldLogic->getChannelFieldList($row, $row['channel']); // 自定义字段的数据格式处理
  132. $result = $row;
  133. }
  134. return $result;
  135. }
  136. /**
  137. * 读取指定栏目ID下有内容的栏目信息,只读取每一级的第一个栏目
  138. * @param intval $typeid 栏目ID
  139. * @return array
  140. */
  141. public function readContentFirst($typeid)
  142. {
  143. $result = false;
  144. while (true)
  145. {
  146. $singleModel = new \app\home\model\Single;
  147. $result = $singleModel->getInfoByTypeid($typeid);
  148. if (!empty($result['empty_logic']) && empty($result['content']) && preg_match('/^lists_single(_(.*))?\.htm$/i', $result['templist'])) {
  149. $map = array(
  150. 'parent_id' => $result['typeid'],
  151. 'current_channel' => 6,
  152. 'is_hidden' => 0,
  153. 'status' => 1,
  154. 'is_del' => 0,
  155. );
  156. $row = \think\Db::name('arctype')->where($map)->field('*')->order('sort_order asc')->find(); // 查找下一级的单页模型栏目
  157. if (empty($row)) { // 不存在并返回当前栏目信息
  158. break;
  159. } elseif (6 == $row['current_channel']) { // 存在且是单页模型,则进行继续往下查找,直到有内容为止
  160. $typeid = $row['id'];
  161. }
  162. } else {
  163. break;
  164. }
  165. }
  166. return $result;
  167. }
  168. }