Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

Download.php 44KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026
  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\controller;
  14. use think\Page;
  15. use think\Db;
  16. class Download extends Base
  17. {
  18. // 模型标识
  19. public $nid = 'download';
  20. // 模型ID
  21. public $channeltype = '';
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. $channeltype_list = config('global.channeltype_list');
  26. $this->channeltype = $channeltype_list[$this->nid];
  27. empty($this->channeltype) && $this->channeltype = 4;
  28. $this->assign('nid', $this->nid);
  29. $this->assign('channeltype', $this->channeltype);
  30. // 返回页面
  31. $paramTypeid = input('param.typeid/d', 0);
  32. $this->callback_url = url('Download/index', ['lang' => $this->admin_lang, 'typeid' => $paramTypeid]);
  33. $this->assign('callback_url', $this->callback_url);
  34. }
  35. //列表
  36. public function index()
  37. {
  38. $assign_data = $condition = [];
  39. // 获取到所有GET参数
  40. $param = input('param.');
  41. $typeid = input('typeid/d', 0);
  42. // 搜索、筛选查询条件处理
  43. foreach (['keywords', 'typeid', 'flag', 'is_release','province_id','city_id','area_id'] as $key) {
  44. if ($key == 'typeid' && empty($param['typeid'])) {
  45. $typeids = Db::name('arctype')->where('current_channel', $this->channeltype)->column('id');
  46. $condition['a.typeid'] = array('IN', $typeids);
  47. }
  48. if (isset($param[$key]) && $param[$key] !== '') {
  49. if ($key == 'keywords') {
  50. $keywords = $param[$key];
  51. $condition['a.title'] = array('LIKE', "%{$param[$key]}%");
  52. } else if ($key == 'typeid') {
  53. $typeid = $param[$key];
  54. $hasRow = model('Arctype')->getHasChildren($typeid);
  55. $typeids = get_arr_column($hasRow, 'id');
  56. // 权限控制 by 小虎哥
  57. $admin_info = session('admin_info');
  58. if (0 < intval($admin_info['role_id'])) {
  59. $auth_role_info = $admin_info['auth_role_info'];
  60. if (!empty($typeid) && !empty($auth_role_info) && !empty($auth_role_info['permission']['arctype'])) {
  61. $typeids = array_intersect($typeids, $auth_role_info['permission']['arctype']);
  62. }
  63. }
  64. $condition['a.typeid'] = array('IN', $typeids);
  65. } else if ($key == 'flag') {
  66. if ('is_release' == $param[$key]) {
  67. $condition['a.users_id'] = array('gt', 0);
  68. } else {
  69. $FlagNew = $param[$key];
  70. $condition['a.'.$param[$key]] = array('eq', 1);
  71. }
  72. } else if (in_array($key, ['province_id','city_id','area_id'])) {
  73. if (!empty($param['area_id'])) {
  74. $condition['a.area_id'] = $param['area_id'];
  75. } else if (!empty($param['city_id'])) {
  76. $condition['a.city_id'] = $param['city_id'];
  77. } else if (!empty($param['province_id'])) {
  78. $condition['a.province_id'] = $param['province_id'];
  79. }
  80. } else {
  81. $condition['a.'.$key] = array('eq', $param[$key]);
  82. }
  83. }
  84. }
  85. // 权限控制 by 小虎哥
  86. $admin_info = session('admin_info');
  87. if (0 < intval($admin_info['role_id'])) {
  88. $auth_role_info = $admin_info['auth_role_info'];
  89. if (!empty($auth_role_info) && isset($auth_role_info['only_oneself']) && 1 == $auth_role_info['only_oneself']) {
  90. $condition['a.admin_id'] = $admin_info['admin_id'];
  91. }
  92. }
  93. // 时间检索条件
  94. $begin = strtotime(input('add_time_begin'));
  95. $end = strtotime(input('add_time_end'));
  96. if ($begin > 0 && $end > 0) {
  97. $condition['a.add_time'] = array('between', "$begin, $end");
  98. } else if ($begin > 0) {
  99. $condition['a.add_time'] = array('egt', $begin);
  100. } else if ($end > 0) {
  101. $condition['a.add_time'] = array('elt', $end);
  102. }
  103. // 必要条件
  104. $condition['a.channel'] = array('eq', $this->channeltype);
  105. $condition['a.lang'] = array('eq', $this->admin_lang);
  106. $condition['a.is_del'] = array('eq', 0);
  107. $conditionNew = "(a.users_id = 0 OR (a.users_id > 0 AND a.arcrank >= 0))";
  108. // 自定义排序
  109. $orderby = input('param.orderby/s');
  110. $orderway = input('param.orderway/s');
  111. if (!empty($orderby) && !empty($orderway)) {
  112. $orderby = "a.{$orderby} {$orderway}, a.aid desc";
  113. } else {
  114. $orderby = "a.aid desc";
  115. }
  116. // 数据查询,搜索出主键ID的值
  117. $SqlQuery = Db::name('archives')->alias('a')->where($condition)->where($conditionNew)->fetchSql()->count('aid');
  118. $count = Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result');
  119. $count = ($count < 0) ? 0 : $count;
  120. if (empty($count)) {
  121. $count = Db::name('archives')->alias('a')->where($condition)->where($conditionNew)->count('aid');
  122. /*添加查询执行语句到mysql缓存表*/
  123. $SqlCacheTable = [
  124. 'sql_name' => '|download|' . $this->channeltype . '|',
  125. 'sql_result' => $count,
  126. 'sql_md5' => md5($SqlQuery),
  127. 'sql_query' => $SqlQuery,
  128. 'add_time' => getTime(),
  129. 'update_time' => getTime(),
  130. ];
  131. if (!empty($FlagNew)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $FlagNew . '|';
  132. if (!empty($typeid)) $SqlCacheTable['sql_name'] = $SqlCacheTable['sql_name'] . $typeid . '|';
  133. if (!empty($keywords)) $SqlCacheTable['sql_name'] = '|download|keywords|';
  134. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  135. /*END*/
  136. }
  137. $Page = new Page($count, config('paginate.list_rows'));
  138. $list = [];
  139. if (!empty($count)) {
  140. $limit = $count > config('paginate.list_rows') ? $Page->firstRow.','.$Page->listRows : $count;
  141. $list = Db::name('archives')
  142. ->field("a.aid")
  143. ->alias('a')
  144. ->where($condition)
  145. ->where($conditionNew)
  146. ->order($orderby)
  147. ->limit($limit)
  148. ->getAllWithIndex('aid');
  149. if (!empty($list)) {
  150. $aids = array_keys($list);
  151. $fields = "b.*, a.*, a.aid as aid";
  152. $row = Db::name('archives')
  153. ->field($fields)
  154. ->alias('a')
  155. ->join('__ARCTYPE__ b', 'a.typeid = b.id', 'LEFT')
  156. ->where('a.aid', 'in', $aids)
  157. ->getAllWithIndex('aid');
  158. foreach ($list as $key => $val) {
  159. $row[$val['aid']]['arcurl'] = get_arcurl($row[$val['aid']]);
  160. $row[$val['aid']]['litpic'] = handle_subdir_pic($row[$val['aid']]['litpic']);
  161. $list[$key] = $row[$val['aid']];
  162. }
  163. }
  164. }
  165. $show = $Page->show();
  166. $assign_data['page'] = $show;
  167. $assign_data['list'] = $list;
  168. $assign_data['pager'] = $Page;
  169. $assign_data['typeid'] = $typeid;
  170. $assign_data['tab'] = input('param.tab/d', 3);// 选项卡
  171. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();// 文档属性
  172. $assign_data['arctype_info'] = $typeid > 0 ? Db::name('arctype')->field('typename')->find($typeid) : [];// 当前栏目信息
  173. $this->assign($assign_data);
  174. return $this->fetch();
  175. }
  176. /**
  177. * 添加
  178. */
  179. public function add()
  180. {
  181. $admin_info = session('admin_info');
  182. $auth_role_info = $admin_info['auth_role_info'];
  183. $this->assign('auth_role_info', $auth_role_info);
  184. $this->assign('admin_info', $admin_info);
  185. if (IS_POST) {
  186. $post = input('post.');
  187. model('Archives')->editor_auto_210607($post);
  188. /* 处理TAG标签 */
  189. if (!empty($post['tags_new'])) {
  190. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  191. unset($post['tags_new']);
  192. }
  193. $post['tags'] = explode(',', $post['tags']);
  194. $post['tags'] = array_unique($post['tags']);
  195. $post['tags'] = implode(',', $post['tags']);
  196. /* END */
  197. $content = empty($post['addonFieldExt']['content']) ? '' : htmlspecialchars_decode($post['addonFieldExt']['content']);
  198. if (!empty($post['fileupload'])){
  199. foreach ($post['fileupload']['file_url'] as $k => $v){
  200. if (is_http_url($v)){
  201. $post['fileupload']['uhash'][$k] = md5($v);
  202. }
  203. }
  204. }
  205. // 根据标题自动提取相关的关键字
  206. $seo_keywords = $post['seo_keywords'];
  207. if (!empty($seo_keywords)) {
  208. $seo_keywords = str_replace(',', ',', $seo_keywords);
  209. } else {
  210. // $seo_keywords = get_split_word($post['title'], $content);
  211. }
  212. // 自动获取内容第一张图片作为封面图
  213. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  214. $litpic = '';
  215. if ($is_remote == 1) {
  216. $litpic = $post['litpic_remote'];
  217. } else {
  218. $litpic = $post['litpic_local'];
  219. }
  220. if (empty($litpic)) {
  221. $litpic = get_html_first_imgurl($content);
  222. }
  223. $post['litpic'] = $litpic;
  224. /*是否有封面图*/
  225. if (empty($post['litpic'])) {
  226. $is_litpic = 0; // 无封面图
  227. } else {
  228. $is_litpic = 1; // 有封面图
  229. }
  230. // SEO描述
  231. $seo_description = '';
  232. if (empty($post['seo_description']) && !empty($content)) {
  233. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  234. } else {
  235. $seo_description = $post['seo_description'];
  236. }
  237. // 外部链接跳转
  238. $jumplinks = '';
  239. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  240. if (intval($is_jump) > 0) {
  241. $jumplinks = $post['jumplinks'];
  242. }
  243. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  244. if ($post['type_tempview'] == $post['tempview']) {
  245. unset($post['type_tempview']);
  246. unset($post['tempview']);
  247. }
  248. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  249. $htmlfilename = trim($post['htmlfilename']);
  250. if (!empty($htmlfilename)) {
  251. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  252. // $htmlfilename = strtolower($htmlfilename);
  253. //判断是否存在相同的自定义文件名
  254. $map = [
  255. 'htmlfilename' => $htmlfilename,
  256. 'lang' => $this->admin_lang,
  257. ];
  258. if (!empty($post['typeid'])) {
  259. $map['typeid'] = array('eq', $post['typeid']);
  260. }
  261. $filenameCount = Db::name('archives')->where($map)->count();
  262. if (!empty($filenameCount)) {
  263. $this->error("同栏目下,自定义文件名已存在!");
  264. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  265. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  266. }
  267. } else {
  268. // 处理外贸链接
  269. if (is_dir('./weapp/Waimao/')) {
  270. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  271. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'add', $this->globalConfig);
  272. }
  273. }
  274. $post['htmlfilename'] = $htmlfilename;
  275. //做自动通过审核判断
  276. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  277. $post['arcrank'] = -1;
  278. }
  279. // 副栏目
  280. if (isset($post['stypeid'])) {
  281. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  282. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  283. $post['stypeid'] = trim($post['stypeid'], ',');
  284. $post['stypeid'] = str_replace(",{$post['typeid']},", ',', ",{$post['stypeid']},");
  285. $post['stypeid'] = trim($post['stypeid'], ',');
  286. }
  287. // 付费限制模式与之前三个字段 arc_level_id、 users_price、 no_vip_pay 组合逻辑兼容
  288. $restricData = restric_type_logic($post, $this->channeltype);
  289. if (isset($restricData['code']) && empty($restricData['code'])) {
  290. $this->error($restricData['msg']);
  291. }
  292. // --存储数据
  293. $newData = array(
  294. 'typeid'=> empty($post['typeid']) ? 0 : $post['typeid'],
  295. 'channel' => $this->channeltype,
  296. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  297. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  298. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  299. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  300. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  301. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  302. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  303. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  304. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  305. 'is_jump' => $is_jump,
  306. 'is_litpic' => $is_litpic,
  307. 'jumplinks' => $jumplinks,
  308. 'origin' => empty($post['origin']) ? '网络' : $post['origin'],
  309. 'seo_keywords' => $seo_keywords,
  310. 'seo_description' => $seo_description,
  311. 'admin_id' => session('admin_info.admin_id'),
  312. 'lang' => $this->admin_lang,
  313. 'sort_order' => 100,
  314. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  315. 'add_time' => strtotime($post['add_time']),
  316. 'update_time' => strtotime($post['add_time']),
  317. );
  318. $data = array_merge($post, $newData);
  319. $aid = Db::name('archives')->insertGetId($data);
  320. $_POST['aid'] = $aid;
  321. if ($aid) {
  322. // ---------后置操作
  323. model('Download')->afterSave($aid, $data, 'add');
  324. // 添加查询执行语句到mysql缓存表
  325. model('SqlCacheTable')->InsertSqlCacheTable();
  326. // ---------end
  327. adminLog('新增下载:'.$data['title']);
  328. // 生成静态页面代码
  329. $successData = [
  330. 'aid' => $aid,
  331. 'tid' => $post['typeid'],
  332. ];
  333. $this->success("操作成功!", null, $successData);
  334. exit;
  335. }
  336. $this->error("操作失败!");
  337. exit;
  338. }
  339. $typeid = input('param.typeid/d', 0);
  340. $assign_data['typeid'] = $typeid; // 栏目ID
  341. // 栏目信息
  342. $arctypeInfo = Db::name('arctype')->find($typeid);
  343. //第三方存储空间 七牛云/oss开关信息
  344. $assign_data['qiniu_open'] = 0;
  345. $assign_data['oss_open'] = 0;
  346. $assign_data['cos_open'] = 0;
  347. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  348. if(!empty($channelRow)){
  349. $channelRow['data'] = json_decode($channelRow['data'], true);
  350. $assign_data['qiniu_open'] = !empty($channelRow['data']['qiniuyun_open']) ? $channelRow['data']['qiniuyun_open'] : 0;
  351. $assign_data['oss_open'] = !empty($channelRow['data']['oss_open']) ? $channelRow['data']['oss_open'] : 0;
  352. $assign_data['cos_open'] = !empty($channelRow['data']['cos_open']) ? $channelRow['data']['cos_open'] : 0;
  353. }
  354. $assign_data['channelRow'] = $channelRow;
  355. /*允许发布文档列表的栏目*/
  356. $arctype_html = allow_release_arctype($typeid, array($this->channeltype));
  357. $assign_data['arctype_html'] = $arctype_html;
  358. /*--end*/
  359. // 阅读权限
  360. $arcrank_list = get_arcrank_list();
  361. $assign_data['arcrank_list'] = $arcrank_list;
  362. /*模板列表*/
  363. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  364. $templateList = $archivesLogic->getTemplateList($this->nid);
  365. $this->assign('templateList', $templateList);
  366. /*--end*/
  367. /*默认模板文件*/
  368. $tempview = 'view_'.$this->nid.'.'.config('template.view_suffix');
  369. !empty($arctypeInfo['tempview']) && $tempview = $arctypeInfo['tempview'];
  370. $this->assign('tempview', $tempview);
  371. /*--end*/
  372. /*会员等级信息*/
  373. $assign_data['users_level'] = model('UsersLevel')->getList('level_id,level_name');
  374. /*--end*/
  375. /*下载模型自定义属性字段*/
  376. $attr_field = Db::name('download_attr_field')->select();
  377. $servername_use = 0;
  378. if ($attr_field) {
  379. $servername_info = [];
  380. for ($i = 0; $i < count($attr_field); $i++) {
  381. if ($attr_field[$i]['field_name'] == 'server_name') {
  382. if ($attr_field[$i]['field_use'] == 1) {
  383. $servername_use = 1;
  384. }
  385. $servername_info = $attr_field[$i];
  386. break;
  387. }
  388. }
  389. $assign_data['servername_info'] = $servername_info;
  390. }
  391. $assign_data['attr_field'] = $attr_field;
  392. $assign_data['servername_use'] = $servername_use;
  393. $servername_arr = unserialize(tpCache('global.download_select_servername'));
  394. $assign_data['default_servername'] = $servername_arr?$servername_arr[0]:'立即下载';
  395. /*--end*/
  396. // 文档默认浏览量 / 软件默认下载量
  397. $globalConfig = tpCache('global');
  398. if (isset($globalConfig['other_arcclick']) && 0 <= $globalConfig['other_arcclick']) {
  399. $arcclick_arr = explode("|", $globalConfig['other_arcclick']);
  400. if (count($arcclick_arr) > 1) {
  401. $assign_data['rand_arcclick'] = mt_rand($arcclick_arr[0], $arcclick_arr[1]);
  402. } else {
  403. $assign_data['rand_arcclick'] = intval($arcclick_arr[0]);
  404. }
  405. }else{
  406. $arcclick_config['other_arcclick'] = '500|1000';
  407. tpCache('other', $arcclick_config);
  408. $assign_data['rand_arcclick'] = mt_rand(500, 1000);
  409. }
  410. if (isset($globalConfig['other_arcdownload']) && 0 <= $globalConfig['other_arcdownload']) {
  411. $arcdownload_arr = explode("|", $globalConfig['other_arcdownload']);
  412. if (count($arcdownload_arr) > 1) {
  413. $assign_data['rand_arcdownload'] = mt_rand($arcdownload_arr[0], $arcdownload_arr[1]);
  414. } else {
  415. $assign_data['rand_arcdownload'] = intval($arcdownload_arr[0]);
  416. }
  417. }else{
  418. $arcdownload_config['other_arcdownload'] = '100|500';
  419. tpCache('other', $arcdownload_config);
  420. $assign_data['rand_arcdownload'] = mt_rand(100, 500);
  421. }
  422. /*文档属性*/
  423. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  424. // URL模式
  425. $tpcache = config('tpcache');
  426. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  427. // 系统最大上传视频的大小 限制类型
  428. $file_size = tpCache('global.file_size');
  429. $postsize = @ini_get('file_uploads') ? ini_get('post_max_size') : -1;
  430. $fileupload = @ini_get('file_uploads') ? ini_get('upload_max_filesize') : -1;
  431. $min_size = strval($file_size) < strval($postsize) ? $file_size : $postsize;
  432. $min_size = strval($min_size) < strval($fileupload) ? $min_size : $fileupload;
  433. $basic['file_size'] = intval($min_size) * 1024 * 1024;
  434. $file_type = tpCache('global.file_type');
  435. $basic['file_type'] = !empty($file_type) ? $file_type : "zip|gz|rar|iso|doc|xls|ppt|wps";
  436. $assign_data['basic'] = $basic;
  437. // 来源列表
  438. $system_originlist = tpSetting('system.system_originlist');
  439. $system_originlist = json_decode($system_originlist, true);
  440. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  441. $assign_data['system_originlist_0'] = !empty($system_originlist) ? $system_originlist[0] : "";
  442. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  443. // 多站点,当用站点域名访问后台,发布文档自动选择当前所属区域
  444. model('Citysite')->auto_location_select($assign_data);
  445. $this->assign($assign_data);
  446. return $this->fetch();
  447. }
  448. /**
  449. * 编辑
  450. */
  451. public function edit()
  452. {
  453. $admin_info = session('admin_info');
  454. $auth_role_info = $admin_info['auth_role_info'];
  455. $this->assign('auth_role_info', $auth_role_info);
  456. $this->assign('admin_info', $admin_info);
  457. if (IS_POST) {
  458. $post = input('post.');
  459. model('Archives')->editor_auto_210607($post);
  460. $post['aid'] = intval($post['aid']);
  461. /* 处理TAG标签 */
  462. if (!empty($post['tags_new'])) {
  463. $post['tags'] = !empty($post['tags']) ? $post['tags'] . ',' . $post['tags_new'] : $post['tags_new'];
  464. unset($post['tags_new']);
  465. }
  466. $post['tags'] = explode(',', $post['tags']);
  467. $post['tags'] = array_unique($post['tags']);
  468. $post['tags'] = implode(',', $post['tags']);
  469. /* END */
  470. $typeid = input('post.typeid/d', 0);
  471. $content = empty($post['addonFieldExt']['content']) ? '' : htmlspecialchars_decode($post['addonFieldExt']['content']);
  472. if (!empty($post['fileupload'])){
  473. foreach ($post['fileupload']['file_url'] as $k => $v){
  474. if (is_http_url($v)){
  475. $post['fileupload']['uhash'][$k] = md5($v);
  476. }
  477. }
  478. }
  479. // 根据标题自动提取相关的关键字
  480. $seo_keywords = $post['seo_keywords'];
  481. if (!empty($seo_keywords)) {
  482. $seo_keywords = str_replace(',', ',', $seo_keywords);
  483. } else {
  484. // $seo_keywords = get_split_word($post['title'], $content);
  485. }
  486. // 自动获取内容第一张图片作为封面图
  487. $is_remote = !empty($post['is_remote']) ? $post['is_remote'] : 0;
  488. $litpic = '';
  489. if ($is_remote == 1) {
  490. $litpic = $post['litpic_remote'];
  491. } else {
  492. $litpic = $post['litpic_local'];
  493. }
  494. if (empty($litpic)) {
  495. $litpic = get_html_first_imgurl($content);
  496. }
  497. $post['litpic'] = $litpic;
  498. /*是否有封面图*/
  499. if (empty($post['litpic'])) {
  500. $is_litpic = 0; // 无封面图
  501. } else {
  502. $is_litpic = !empty($post['is_litpic']) ? $post['is_litpic'] : 0; // 有封面图
  503. }
  504. // 勾选后SEO描述将随正文内容更新
  505. $basic_update_seo_description = empty($post['basic_update_seo_description']) ? 0 : 1;
  506. if (is_language()) {
  507. $langRow = \think\Db::name('language')->order('id asc')
  508. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  509. ->select();
  510. foreach ($langRow as $key => $val) {
  511. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description], $val['mark']);
  512. }
  513. } else {
  514. tpCache('basic', ['basic_update_seo_description'=>$basic_update_seo_description]);
  515. }
  516. /*--end*/
  517. // SEO描述
  518. $seo_description = '';
  519. if (!empty($basic_update_seo_description) || empty($post['seo_description'])) {
  520. $seo_description = @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  521. } else {
  522. $seo_description = $post['seo_description'];
  523. }
  524. // --外部链接
  525. $jumplinks = '';
  526. $is_jump = isset($post['is_jump']) ? $post['is_jump'] : 0;
  527. if (intval($is_jump) > 0) {
  528. $jumplinks = $post['jumplinks'];
  529. }
  530. // 模板文件,如果文档模板名与栏目指定的一致,默认就为空。让它跟随栏目的指定而变
  531. if ($post['type_tempview'] == $post['tempview']) {
  532. unset($post['type_tempview']);
  533. unset($post['tempview']);
  534. }
  535. //处理自定义文件名,仅由字母数字下划线和短横杆组成,大写强制转换为小写
  536. $htmlfilename = trim($post['htmlfilename']);
  537. if (!empty($htmlfilename)) {
  538. $htmlfilename = preg_replace("/[^\x{4e00}-\x{9fa5}\w\-]+/u", "-", $htmlfilename);
  539. // $htmlfilename = strtolower($htmlfilename);
  540. //判断是否存在相同的自定义文件名
  541. $map = [
  542. 'aid' => ['NEQ', $post['aid']],
  543. 'htmlfilename' => $htmlfilename,
  544. 'lang' => $this->admin_lang,
  545. ];
  546. if (!empty($post['typeid'])) {
  547. $map['typeid'] = array('eq', $post['typeid']);
  548. }
  549. $filenameCount = Db::name('archives')->where($map)->count();
  550. if (!empty($filenameCount)) {
  551. $this->error("同栏目下,自定义文件名已存在!");
  552. } else if (preg_match('/^(\d+)$/i', $htmlfilename)) {
  553. $this->error("自定义文件名不能纯数字,会与文档ID冲突!");
  554. }
  555. } else {
  556. // 处理外贸链接
  557. if (is_dir('./weapp/Waimao/')) {
  558. $waimaoLogic = new \weapp\Waimao\logic\WaimaoLogic;
  559. $waimaoLogic->get_new_htmlfilename($htmlfilename, $post, 'edit', $this->globalConfig);
  560. }
  561. }
  562. $post['htmlfilename'] = $htmlfilename;
  563. // 同步栏目切换模型之后的文档模型
  564. $channel = Db::name('arctype')->where(['id'=>$typeid])->getField('current_channel');
  565. //做未通过审核文档不允许修改文档状态操作
  566. if ($admin_info['role_id'] > 0 && $auth_role_info['check_oneself'] < 1) {
  567. $old_archives_arcrank = Db::name('archives')->where(['aid' => $post['aid']])->getField("arcrank");
  568. if ($old_archives_arcrank < 0) {
  569. unset($post['arcrank']);
  570. }
  571. }
  572. // 副栏目
  573. if (isset($post['stypeid'])) {
  574. $post['stypeid'] = preg_replace('/([^\d\,\,]+)/i', ',', $post['stypeid']);
  575. $post['stypeid'] = str_replace(',', ',', $post['stypeid']);
  576. $post['stypeid'] = trim($post['stypeid'], ',');
  577. $post['stypeid'] = str_replace(",{$typeid},", ',', ",{$post['stypeid']},");
  578. $post['stypeid'] = trim($post['stypeid'], ',');
  579. }
  580. // 付费限制模式与之前三个字段 arc_level_id、 users_price、 no_vip_pay 组合逻辑兼容
  581. $restricData = restric_type_logic($post, $this->channeltype);
  582. if (isset($restricData['code']) && empty($restricData['code'])) {
  583. $this->error($restricData['msg']);
  584. }
  585. // --存储数据
  586. $newData = array(
  587. 'typeid'=> $typeid,
  588. 'channel' => $channel,
  589. 'is_b' => empty($post['is_b']) ? 0 : $post['is_b'],
  590. 'is_head' => empty($post['is_head']) ? 0 : $post['is_head'],
  591. 'is_special' => empty($post['is_special']) ? 0 : $post['is_special'],
  592. 'is_recom' => empty($post['is_recom']) ? 0 : $post['is_recom'],
  593. 'is_roll' => empty($post['is_roll']) ? 0 : $post['is_roll'],
  594. 'is_slide' => empty($post['is_slide']) ? 0 : $post['is_slide'],
  595. 'is_diyattr' => empty($post['is_diyattr']) ? 0 : $post['is_diyattr'],
  596. 'editor_remote_img_local'=> empty($post['editor_remote_img_local']) ? 0 : $post['editor_remote_img_local'],
  597. 'editor_img_clear_link' => empty($post['editor_img_clear_link']) ? 0 : $post['editor_img_clear_link'],
  598. 'is_jump' => $is_jump,
  599. 'is_litpic' => $is_litpic,
  600. 'jumplinks' => $jumplinks,
  601. 'seo_keywords' => $seo_keywords,
  602. 'seo_description' => $seo_description,
  603. 'crossed_price' => empty($post['crossed_price']) ? 0 : floatval($post['crossed_price']),
  604. 'add_time' => strtotime($post['add_time']),
  605. 'update_time' => getTime(),
  606. );
  607. $data = array_merge($post, $newData);
  608. $r = Db::name('archives')->where([
  609. 'aid' => $data['aid'],
  610. 'lang' => $this->admin_lang,
  611. ])->update($data);
  612. if ($r) {
  613. // ---------后置操作
  614. model('Download')->afterSave($data['aid'], $data, 'edit');
  615. // ---------end
  616. adminLog('编辑下载:'.$data['title']);
  617. // 生成静态页面代码
  618. $successData = [
  619. 'aid' => $data['aid'],
  620. 'tid' => $typeid,
  621. ];
  622. $this->success("操作成功!", null, $successData);
  623. exit;
  624. }
  625. $this->error("操作失败!");
  626. exit;
  627. }
  628. $assign_data = array();
  629. $id = input('id/d');
  630. $info = model('Download')->getInfo($id);
  631. if (empty($info)) {
  632. $this->error('数据不存在,请联系管理员!');
  633. exit;
  634. }
  635. /*兼容采集没有归属栏目的文档*/
  636. if (empty($info['channel'])) {
  637. $channelRow = Db::name('channeltype')->field('id as channel')
  638. ->where('id',$this->channeltype)
  639. ->find();
  640. $info = array_merge($info, $channelRow);
  641. }
  642. /*--end*/
  643. $typeid = $info['typeid'];
  644. $assign_data['typeid'] = $typeid;
  645. // 副栏目
  646. $stypeid_arr = [];
  647. if (!empty($info['stypeid'])) {
  648. $info['stypeid'] = trim($info['stypeid'], ',');
  649. $stypeid_arr = Db::name('arctype')->field('id,typename')->where(['id'=>['IN', $info['stypeid']],'is_del'=>0])->select();
  650. }
  651. $assign_data['stypeid_arr'] = $stypeid_arr;
  652. // 栏目信息
  653. $arctypeInfo = Db::name('arctype')->find($typeid);
  654. //第三方存储空间 七牛云/oss开关信息
  655. $assign_data['qiniu_open'] = 0;
  656. $assign_data['oss_open'] = 0;
  657. $assign_data['oss_open'] = 0;
  658. $channelRow = Db::name('channeltype')->where('id', $this->channeltype)->find();
  659. if(!empty($channelRow)){
  660. $channelRow['data'] = json_decode($channelRow['data'], true);
  661. $assign_data['qiniu_open'] = !empty($channelRow['data']['qiniuyun_open']) ? $channelRow['data']['qiniuyun_open'] : 0;
  662. $assign_data['oss_open'] = !empty($channelRow['data']['oss_open']) ? $channelRow['data']['oss_open'] : 0;
  663. $assign_data['cos_open'] = !empty($channelRow['data']['cos_open']) ? $channelRow['data']['cos_open'] : 0;
  664. }
  665. $assign_data['channelRow'] = $channelRow;
  666. $info['channel'] = $arctypeInfo['current_channel'];
  667. if (is_http_url($info['litpic'])) {
  668. $info['is_remote'] = 1;
  669. $info['litpic_remote'] = handle_subdir_pic($info['litpic']);
  670. } else {
  671. $info['is_remote'] = 0;
  672. $info['litpic_local'] = handle_subdir_pic($info['litpic']);
  673. }
  674. $assign_data['field'] = $info;
  675. // 下载文件
  676. $downfile_list = model('DownloadFile')->getDownFile($id);
  677. $assign_data['downfile_list'] = $downfile_list;
  678. // 下载文件中是否存在远程链接
  679. $is_remote_file = 0;
  680. foreach ($downfile_list as $key => $value) {
  681. if (1 == $value['is_remote']) {
  682. $is_remote_file = 1;
  683. break;
  684. }
  685. }
  686. $assign_data['is_remote_file'] = $is_remote_file;
  687. /*允许发布文档列表的栏目,文档所在模型以栏目所在模型为主,兼容切换模型之后的数据编辑*/
  688. $arctype_html = allow_release_arctype($typeid, array($info['channel']));
  689. $assign_data['arctype_html'] = $arctype_html;
  690. /*--end*/
  691. // 阅读权限
  692. $arcrank_list = get_arcrank_list();
  693. $assign_data['arcrank_list'] = $arcrank_list;
  694. /*模板列表*/
  695. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  696. $templateList = $archivesLogic->getTemplateList($this->nid);
  697. $this->assign('templateList', $templateList);
  698. /*--end*/
  699. /*默认模板文件*/
  700. $tempview = $info['tempview'];
  701. empty($tempview) && $tempview = $arctypeInfo['tempview'];
  702. $this->assign('tempview', $tempview);
  703. /*--end*/
  704. /*会员等级信息*/
  705. $assign_data['users_level'] = model('UsersLevel')->getList('level_id,level_value,level_name');
  706. /*--end*/
  707. /*下载模型自定义属性字段*/
  708. $attr_field = Db::name('download_attr_field')->select();
  709. $servername_use = 0;
  710. if ($attr_field) {
  711. $servername_info = [];
  712. for ($i = 0; $i < count($attr_field); $i++) {
  713. if ($attr_field[$i]['field_name'] == 'server_name') {
  714. if ($attr_field[$i]['field_use'] == 1) {
  715. $servername_use = 1;
  716. }
  717. $servername_info = $attr_field[$i];
  718. break;
  719. }
  720. }
  721. $assign_data['servername_info'] = $servername_info;
  722. }
  723. $assign_data['attr_field'] = $attr_field;
  724. $assign_data['servername_use'] = $servername_use;
  725. $servername_arr = unserialize(tpCache('global.download_select_servername'));
  726. $assign_data['default_servername'] = $servername_arr?$servername_arr[0]:'立即下载';
  727. /*--end*/
  728. // URL模式
  729. $tpcache = config('tpcache');
  730. $assign_data['seo_pseudo'] = !empty($tpcache['seo_pseudo']) ? $tpcache['seo_pseudo'] : 1;
  731. /*文档属性*/
  732. $assign_data['archives_flags'] = model('ArchivesFlag')->getList();
  733. // 系统最大上传视频的大小 限制类型
  734. $file_size = tpCache('global.file_size');
  735. $postsize = @ini_get('file_uploads') ? ini_get('post_max_size') : -1;
  736. $fileupload = @ini_get('file_uploads') ? ini_get('upload_max_filesize') : -1;
  737. $min_size = strval($file_size) < strval($postsize) ? $file_size : $postsize;
  738. $min_size = strval($min_size) < strval($fileupload) ? $min_size : $fileupload;
  739. $basic['file_size'] = intval($min_size) * 1024 * 1024;
  740. $file_type = tpCache('global.file_type');
  741. $basic['file_type'] = !empty($file_type) ? $file_type : "zip|gz|rar|iso|doc|xls|ppt|wps";
  742. $assign_data['basic'] = $basic;
  743. // 来源列表
  744. $system_originlist = tpSetting('system.system_originlist');
  745. $system_originlist = json_decode($system_originlist, true);
  746. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  747. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  748. $this->assign($assign_data);
  749. return $this->fetch();
  750. }
  751. /**
  752. * 删除
  753. */
  754. public function del()
  755. {
  756. if (IS_POST) {
  757. $archivesLogic = new \app\admin\logic\ArchivesLogic;
  758. $archivesLogic->del([], 0, 'download');
  759. }
  760. }
  761. public function template_set()
  762. {
  763. if (IS_AJAX_POST) {
  764. $post = input('post.');
  765. // 修改是否使用
  766. if (!empty($post) && isset($post['field_use'])) {
  767. $data['field_use'] = $post['field_use'];
  768. $data['update_time'] = getTime();
  769. Db::name('download_attr_field')->where('field_id',$post['field_id'])->update($data);
  770. $this->success("更新成功!");
  771. }
  772. // 修改标题
  773. if (!empty($post) && isset($post['field_title'])) {
  774. $data['field_title'] = $post['field_title'];
  775. $data['update_time'] = getTime();
  776. Db::name('download_attr_field')->where('field_id',$post['field_id'])->update($data);
  777. $this->success("更新成功!");
  778. }
  779. }
  780. $list = Db::name('download_attr_field')->select();
  781. $assign_data['list'] = $list;
  782. $this->assign($assign_data);
  783. return $this->fetch();
  784. }
  785. public function select_servername()
  786. {
  787. $servername_arr = unserialize(tpCache('global.download_select_servername'));
  788. $param = input('param.');
  789. $assign_data['select_servername'] = $servername_arr;
  790. $assign_data['file_key'] = $param['file_key'];
  791. $assign_data['sn_type'] = $param['sn_type'];
  792. $assign_data['sn_name_sub'] = $param['sn_name_sub'];
  793. $this->assign($assign_data);
  794. return $this->fetch();
  795. }
  796. public function set_servername()
  797. {
  798. if (IS_AJAX_POST) {
  799. $post = input('param.');
  800. $servernames = htmlspecialchars($post['servername']);
  801. $servernames = str_replace("\r\n", "\n", trim($servernames));
  802. $servernames = explode("\n", $servernames);
  803. $servernames_new = array_unique($servernames);
  804. $servernames_new = serialize($servernames_new);
  805. $param = ['download_select_servername'=>$servernames_new];
  806. /*多语言*/
  807. if (is_language()) {
  808. $langRow = \think\Db::name('language')->order('id asc')
  809. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  810. ->select();
  811. foreach ($langRow as $key => $val) {
  812. tpCache('download', $param, $val['mark']);
  813. }
  814. } else {
  815. tpCache('download', $param);
  816. }
  817. /*--end*/
  818. $this->success("更新成功!");
  819. }
  820. $servername_arr = unserialize(tpCache('global.download_select_servername'));
  821. $servername_arr = implode("\n",$servername_arr);
  822. $assign_data['servernames'] = $servername_arr;
  823. $this->assign($assign_data);
  824. return $this->fetch();
  825. }
  826. public function search_servername()
  827. {
  828. if (IS_AJAX_POST) {
  829. $post = input('param.');
  830. $keyword = $post['keyword'];
  831. $servernames = tpCache('global.download_select_servername');
  832. $servernames = unserialize($servernames);
  833. $search_data = $servernames;
  834. if (!empty($keyword)) {
  835. $search_data = [];
  836. if ($servernames) {
  837. foreach ($servernames as $k => $v) {
  838. if (preg_match("/$keyword/s", $v)) $search_data[] = $v;
  839. }
  840. }
  841. }
  842. $this->success("获取成功",null,$search_data);
  843. }
  844. }
  845. public function get_template()
  846. {
  847. if (IS_AJAX_POST) {
  848. //$list = Db::name('download_attr_field')->where('field_use',1)->select();
  849. $list = Db::name('download_attr_field')->select();
  850. $this->success("查询成功!", null, $list);
  851. }
  852. }
  853. /**
  854. * 获取七牛云token
  855. */
  856. /* public function qiniu_upload()
  857. {
  858. if (IS_AJAX_POST) {
  859. $weappInfo = Db::name('weapp')->where('code','Qiniuyun')->field('id,status,data')->find();
  860. if (empty($weappInfo)) {
  861. $this->error('请先安装配置【七牛云图片加速】插件!', null, ['code'=>-1]);
  862. } else if (1 != $weappInfo['status']) {
  863. $this->error('请先启用【七牛云图片加速】插件!', null, ['code'=>-2,'id'=>$weappInfo['id']]);
  864. } else {
  865. $Qiniuyun = json_decode($weappInfo['data'], true);
  866. if (empty($Qiniuyun)) {
  867. $this->error('请先配置【七牛云图片加速】插件!', null, ['code'=>-3]);
  868. } else if (empty($Qiniuyun['domain'])) {
  869. $this->error('请先配置【七牛云图片加速】插件中的域名!', null, ['code'=>-3]);
  870. }
  871. }
  872. //引入七牛云的相关文件
  873. weapp_vendor('Qiniu.src.Qiniu.Auth', 'Qiniuyun');
  874. weapp_vendor('Qiniu.src.Qiniu.Storage.UploadManager', 'Qiniuyun');
  875. require_once ROOT_PATH.'weapp/Qiniuyun/vendor/Qiniu/autoload.php';
  876. // 配置信息
  877. $accessKey = $Qiniuyun['access_key'];
  878. $secretKey = $Qiniuyun['secret_key'];
  879. $bucket = $Qiniuyun['bucket'];
  880. $domain = '//'.$Qiniuyun['domain'];
  881. // 区域对应的上传URl
  882. $config = new \Qiniu\Config(null);
  883. $uphost = $config->getUpHost($accessKey, $bucket);
  884. $uphost = str_replace('http://', '//', $uphost);
  885. // 生成上传Token
  886. $auth = new \Qiniu\Auth($accessKey, $secretKey);
  887. $token = $auth->uploadToken($bucket);
  888. if ($token) {
  889. $filePath = UPLOAD_PATH.'soft/';
  890. // $filePath = UPLOAD_PATH.'soft/' . date('Ymd/') . session('admin_id') . '-' . dd2char(date("ymdHis") . mt_rand(100, 999));
  891. $data = [
  892. 'token' => $token,
  893. 'domain' => $domain,
  894. 'uphost' => $uphost,
  895. 'filePath' => $filePath,
  896. ];
  897. $this->success('获取token成功!', null, $data);
  898. } else {
  899. $this->error('获取token失败!');
  900. }
  901. }
  902. }*/
  903. //帮助
  904. public function help()
  905. {
  906. $system_originlist = tpSetting('system.system_originlist');
  907. $system_originlist = json_decode($system_originlist, true);
  908. $system_originlist = !empty($system_originlist) ? $system_originlist : [];
  909. $assign_data['system_originlist_str'] = implode(PHP_EOL, $system_originlist);
  910. $this->assign($assign_data);
  911. return $this->fetch();
  912. }
  913. }