Ei kuvausta
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.

Download.php 7.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 下载文章
  18. */
  19. class Download extends Model
  20. {
  21. // 模型标识
  22. public $nid = 'download';
  23. // 模型ID
  24. public $channeltype = '';
  25. //初始化
  26. protected function initialize()
  27. {
  28. // 需要调用`Model`的`initialize`方法
  29. parent::initialize();
  30. $channeltype_list = config('global.channeltype_list');
  31. $this->channeltype = $channeltype_list[$this->nid];
  32. }
  33. /**
  34. * 后置操作方法
  35. * 自定义的一个函数 用于数据保存后做的相应处理操作, 使用时手动调用
  36. * @param int $aid 产品id
  37. * @param array $post post数据
  38. * @param string $opt 操作
  39. */
  40. public function afterSave($aid, $post, $opt)
  41. {
  42. $post['aid'] = $aid;
  43. $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
  44. model('Field')->dealChannelPostData($post['channel'], $post, $addonFieldExt);
  45. // 处理外贸链接
  46. if (is_dir('./weapp/Waimao/')) {
  47. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  48. $waimaoLogic->update_htmlfilename($aid, $post, $opt);
  49. }
  50. // ---------多文件
  51. model('DownloadFile')->savefile($aid, $post);
  52. // ---------end
  53. // --处理TAG标签
  54. model('Taglist')->savetags($aid, $post['typeid'], $post['tags'], $post['arcrank'], $opt);
  55. if ('edit' == $opt) {
  56. // 清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表
  57. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  58. model('SqlCacheTable')->InsertSqlCacheTable(true);
  59. } else {
  60. // 处理mysql缓存表数据
  61. if (isset($post['arcrank']) && -1 == $post['arcrank'] && -1 == $post['old_arcrank'] && !empty($post['users_id'])) {
  62. // 待审核
  63. model('SqlCacheTable')->UpdateDraftSqlCacheTable($post, $opt);
  64. } else if (isset($post['arcrank'])) {
  65. // 已审核
  66. $post['old_typeid'] = intval($post['attr']['typeid']);
  67. model('SqlCacheTable')->UpdateSqlCacheTable($post, $opt, 'download');
  68. }
  69. }
  70. }
  71. /**
  72. * 获取单条记录
  73. * @author wengxianhu by 2017-7-26
  74. */
  75. public function getInfo($aid, $field = '', $isshowbody = true)
  76. {
  77. $result = array();
  78. $field = !empty($field) ? $field : '*';
  79. $result = Db::name('archives')->field($field)
  80. ->where([
  81. 'aid' => $aid,
  82. 'lang' => get_admin_lang(),
  83. ])
  84. ->find();
  85. if ($isshowbody) {
  86. $tableName = Db::name('channeltype')->where('id','eq',$result['channel'])->getField('table');
  87. $result['addonFieldExt'] = Db::name($tableName.'_content')->where('aid',$aid)->find();
  88. }
  89. // 文章TAG标签
  90. if (!empty($result)) {
  91. $typeid = isset($result['typeid']) ? $result['typeid'] : 0;
  92. $tags = model('Taglist')->getListByAid($aid, $typeid);
  93. $result['tags'] = $tags['tag_arr'];
  94. $result['tag_id'] = $tags['tid_arr'];
  95. }
  96. return $result;
  97. }
  98. /**
  99. * 获取多条记录
  100. * @author lindaoyun by 2017-9-18
  101. */
  102. public function getListByLimit($map = array(), $limit = 15, $field = '*', $order = 'a.aid desc')
  103. {
  104. $data = array();
  105. $field_arr = explode(',', $field);
  106. foreach ($field_arr as $key => $val) {
  107. array_push($data, 'a.'.trim($val));
  108. }
  109. $field = implode(',', $data);
  110. $field .= ', b.typename, b.dirname';
  111. if (!empty($map) && is_array($map)) {
  112. foreach ($map as $key => $val) {
  113. if (preg_match("/^(a\.)/i", $val) == 0) {
  114. $map['a.'.$key] = $val;
  115. unset($map[$key]);
  116. }
  117. }
  118. }
  119. $map['a.channel'] = $this->channeltype;
  120. $result = Db::name('archives')
  121. ->field($field)
  122. ->alias('a')
  123. ->join('__ARCTYPE__ b', 'b.id = a.typeid', 'LEFT')
  124. ->where($map)
  125. ->order($order)
  126. ->limit($limit)
  127. ->select();
  128. return $result;
  129. }
  130. /**
  131. * 获取多条记录
  132. * @author wengxianhu by 2017-7-26
  133. */
  134. public function getListByClick($limit = 10, $map = array(), $field = '*')
  135. {
  136. $map['channel'] = $this->channeltype;
  137. $map['status'] = 1;
  138. $result = Db::name('archives')
  139. ->field($field)
  140. ->where($map)
  141. // ->cache(true,EYOUCMS_CACHE_TIME)
  142. ->order('click desc')
  143. ->limit($limit)
  144. ->select();
  145. return $result;
  146. }
  147. /**
  148. * 获取当前文章的所有上下级分类
  149. */
  150. public function getAllCateByTypeid($typeid)
  151. {
  152. $result = Db::name('arctype')->field('id,parent_id,typename')
  153. ->where(array('id|parent_id'=>$typeid, 'status'=>1))
  154. ->order('parent_id asc, sort_order asc')
  155. ->getAllWithIndex('id');
  156. return $result;
  157. }
  158. /**
  159. * 删除的后置操作方法
  160. * 自定义的一个函数 用于数据删除后做的相应处理操作, 使用时手动调用
  161. * @param int $aid
  162. */
  163. public function afterDel($aidArr = array())
  164. {
  165. if (is_string($aidArr)) {
  166. $aidArr = explode(',', $aidArr);
  167. }
  168. // 同时删除内容
  169. Db::name('download_content')->where(
  170. array(
  171. 'aid'=>array('IN', $aidArr)
  172. )
  173. )
  174. ->delete();
  175. // 同时删除软件
  176. $result = Db::name('download_file')->field('file_url')
  177. ->where(
  178. array(
  179. 'aid'=>array('IN', $aidArr)
  180. )
  181. )
  182. ->select();
  183. if (!empty($result)) {
  184. foreach ($result as $key => $val) {
  185. $file_url = preg_replace('#^(/[/\w\-]+)?(/public/upload/|/uploads/)#i', '$2', $val['file_url']);
  186. if (!is_http_url($file_url) && file_exists('.'.$file_url) && preg_match('#^(/uploads/|/public/upload/)(.*)/([^/]+)\.([a-z]+)$#i', $file_url)) {
  187. @unlink(realpath('.'.$file_url));
  188. }
  189. }
  190. $r = Db::name('download_file')->where(
  191. array(
  192. 'aid'=>array('IN', $aidArr)
  193. )
  194. )->delete();
  195. if ($r !== false) {
  196. Db::name('download_log')->where(array('aid'=>array('IN', $aidArr)))->delete();
  197. }
  198. }
  199. // 同时删除TAG标签
  200. model('Taglist')->delByAids($aidArr);
  201. }
  202. }