Nessuna descrizione
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.

UsersRelease.php 33KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778
  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\user\controller;
  14. use think\Db;
  15. use think\Config;
  16. use think\Verify;
  17. use think\Page;
  18. use think\Request;
  19. /**
  20. * 会员投稿发布
  21. */
  22. class UsersRelease extends Base
  23. {
  24. public function _initialize() {
  25. parent::_initialize();
  26. $this->archives_db = Db::name('archives');
  27. $this->users_menu_db = Db::name('users_menu');
  28. $this->users_level_db = Db::name('users_level');
  29. $this->channeltype_db = Db::name('channeltype');
  30. // 会员投稿功能已关闭
  31. if (empty($this->usersConfig['users_open_release'])) {
  32. $this->error('会员投稿功能已关闭', url('user/Users/index'));
  33. }
  34. // 菜单名称
  35. $this->MenuTitle = $this->users_menu_db->where([
  36. 'mca' => 'user/UsersRelease/release_centre',
  37. 'lang' => $this->home_lang,
  38. ])->getField('title');
  39. $this->assign('MenuTitle', $this->MenuTitle);
  40. // 获取传入的模型ID
  41. $typeid = input('param.typeid/d', 0);
  42. $this->channelID = input('param.channel/d', 0);
  43. if (empty($this->channelID) && !empty($typeid)) $this->channelID = Db::name('arctype')->where(['id'=>$typeid])->getField('current_channel');
  44. $this->channelData = $this->channeltype_db->where('id', $this->channelID)->field('id, table, is_release, is_litpic_users_release')->find();
  45. if (!empty($this->channelData)) {
  46. $this->assign('is_release', $this->channelData['is_release']);
  47. $this->assign('is_litpic_users_release', $this->channelData['is_litpic_users_release']);
  48. }
  49. // 当前访问的方法名
  50. $Method = request()->action();
  51. $this->assign('Method', $Method);
  52. $list = input('param.list/d', 0);
  53. if ('release_centre' == $Method && !empty($this->channelData['is_release']) && empty($list)) $this->redirect('user/UsersRelease/article_add');
  54. // 会员投稿配置
  55. $this->assign('UsersConfig', $this->usersConfig);
  56. }
  57. // 会员投稿--文章首页
  58. public function release_centre()
  59. {
  60. $result = [];
  61. $condition = [
  62. 'a.users_id' => $this->users_id,
  63. 'a.lang' => $this->home_lang,
  64. 'a.is_del' => 0,
  65. ];
  66. $typeid = input('typeid/d', 0); // 栏目ID,暂无用,预留
  67. if (!empty($typeid)) $condition['a.typeid'] = $typeid;
  68. // 文章标题搜索
  69. $keywords = input('keywords/s', '');
  70. $this->assign('keywords', $keywords);
  71. if (!empty($keywords)) $condition['title'] = ['LIKE', "%{$keywords}%"];
  72. // 全部、未审核、已审核筛选
  73. $audited = input('audited/d', 0);
  74. $this->assign('audited', $audited);
  75. if (1 === intval($audited)) {
  76. $condition['arcrank'] = ['EQ', -1];
  77. } else if (2 === intval($audited)) {
  78. $condition['arcrank'] = ['GT', -1];
  79. }
  80. $SqlQuery = $this->archives_db->alias('a')->where($condition)->fetchSql()->count('aid');
  81. $count = Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->getField('sql_result');
  82. if (!empty($count) && 0 > $count) {
  83. Db::name('sql_cache_table')->where(['sql_md5'=>md5($SqlQuery)])->delete();
  84. unset($count);
  85. }
  86. if (!isset($count)) {
  87. $count = $this->archives_db->alias('a')->where($condition)->count('aid');
  88. // 添加查询执行语句到mysql缓存表
  89. $SqlCacheTable = [
  90. 'sql_name' => '|users_release|' . $this->users_id . '|all|',
  91. 'sql_result' => $count,
  92. 'sql_md5' => md5($SqlQuery),
  93. 'sql_query' => $SqlQuery,
  94. 'add_time' => getTime(),
  95. 'update_time' => getTime()
  96. ];
  97. if (!empty($typeid)) $SqlCacheTable['sql_name'] = '|users_release|' . $this->users_id . '|' . $typeid . '|';
  98. Db::name('sql_cache_table')->insertGetId($SqlCacheTable);
  99. }
  100. $Page = new Page($count, config('paginate.list_rows'));
  101. $result['data'] = [];
  102. if (!empty($count)) {
  103. $limit = $count > config('paginate.list_rows') ? $Page->firstRow.','.$Page->listRows : $count;
  104. // 数据查询
  105. $result['data'] = $this->archives_db
  106. ->field('t.*, a.*')
  107. ->alias('a')
  108. ->join('__ARCTYPE__ t', 'a.typeid = t.id', 'LEFT')
  109. ->where($condition)
  110. ->order('a.aid desc')
  111. ->limit($limit)
  112. ->select();
  113. // 如果当前分页没有数据则去除分页参数重载
  114. if (empty($result['data']) && input('param.p/d', 0)) $this->redirect('user/UsersRelease/release_centre', ['list'=>1]);
  115. $seo_pseudo = tpCache('seo.seo_pseudo');
  116. foreach ($result['data'] as $key => $value) {
  117. $value['arcurl'] = get_arcurl($value, false);
  118. $value['typeurl'] = get_typeurl($value, false);
  119. $value['editurl'] = url('user/UsersRelease/article_edit', array('aid'=>$value['aid']));
  120. $value['litpic'] = get_default_pic($value['litpic']); // 支持子目录
  121. $result['data'][$key] = $value;
  122. }
  123. }
  124. $result['delurl'] = url('user/UsersRelease/article_del');
  125. $eyou = array(
  126. 'field' => $result,
  127. );
  128. $this->assign('eyou', $eyou);
  129. $show = $Page->show();
  130. $this->assign('page', $show);
  131. $this->assign('pager', $Page);
  132. // 会员投稿发布的文章状态
  133. $home_article_arcrank = Config::get('global.home_article_arcrank');
  134. $this->assign('home_article_arcrank', $home_article_arcrank);
  135. // 查询会员投稿数据
  136. $where = [
  137. 'is_del' => 0,
  138. 'lang' => $this->home_lang,
  139. 'users_id' => intval($this->users_id),
  140. ];
  141. $all = $isAudited = $notAudited = 0;
  142. $archives = $this->archives_db->field('aid, arcrank')->where($where)->select();
  143. $all = !empty($archives) ? count($archives) : 0;
  144. foreach ($archives as $key => $value) {
  145. if (-1 === intval($value['arcrank'])) {
  146. $notAudited++;
  147. } else {
  148. $isAudited++;
  149. }
  150. }
  151. $this->assign('all', $all);
  152. $this->assign('isAudited', $isAudited);
  153. $this->assign('notAudited', $notAudited);
  154. return $this->fetch('users/release_centre');
  155. }
  156. public function release_select()
  157. {
  158. $typeid = 0;
  159. $ids = [1, 3, 4, 5];
  160. $where = [
  161. 'is_release' => 1,
  162. 'lang' => $this->home_lang,
  163. 'current_channel' => ['IN', $ids]
  164. ];
  165. $release_typeids = Db::name('arctype')->where($where)->column('id');
  166. // 生成栏目选择下拉列表
  167. $onchange = "onchange='releaseJump(this);' data-url='" . url('user/UsersRelease/article_add') . "' ";
  168. $arctype_html = allow_release_arctype($typeid, $ids, true, $release_typeids, true);
  169. $arctype_html = str_ireplace('data-current_channel=', 'data-channel=', $arctype_html);
  170. $arctype_html = "<select name='typeid' id='typeid' style='width: 300px;height: 400px;border: 1px solid #eee;padding: 2px;' size='25' " . $onchange. " >{$arctype_html}</select>";
  171. $this->assign('arctype_html', $arctype_html);
  172. return $this->fetch('users/release_select');
  173. }
  174. // 会员投稿--文章添加
  175. public function article_add()
  176. {
  177. if (IS_AJAX_POST) {
  178. $post = input('post.');
  179. // 文档标题处理
  180. $post['title'] = !empty($post['title']) ? handleEyouFilterStr($post['title']) : '';
  181. // 文档tags处理
  182. if (!empty($post['tags'])) $post['tags'] = str_replace(",", ',', $post['tags']);
  183. // 会员投稿次数开启,查询会员投稿次数是否超过级别设置次数
  184. if (!empty($this->usersConfig['is_open_posts_count'])) {
  185. $where = [
  186. 'level_id' => $this->users['level'],
  187. 'posts_count' => ['<=', $this->GetOneDayReleaseCount()],
  188. ];
  189. $result = $this->users_level_db->where($where)->count();
  190. if (!empty($result)) $this->error('投稿次数超过会员级别限制,请先升级!');
  191. }
  192. // 判断POST参数:文章标题是否为空、所属栏目是否为空、是否重复标题、是否重复提交
  193. $this->PostParameCheck($post);
  194. // POST参数处理后返回
  195. $post = $this->PostParameDealWith($post);
  196. if (!empty($post['arc_level_id'])){
  197. $post['restric_type'] = 2;
  198. }
  199. // 拼装会员ID及用户名
  200. $post['users_id'] = $this->users['users_id'];
  201. $post['author'] = empty($this->users['nickname']) ? $this->users['username'] : $this->users['nickname'];
  202. $newData = array(
  203. 'typeid' => empty($post['typeid']) ? 0 : $post['typeid'],
  204. 'origin' => empty($post['origin']) ? '网络' : $post['origin'],
  205. 'lang' => $this->home_lang,
  206. 'sort_order' => 100,
  207. 'add_time' => getTime(),
  208. 'update_time' => getTime(),
  209. );
  210. $data = array_merge($post, $newData);
  211. $aid = $this->archives_db->insertGetId($data);
  212. if (!empty($aid)) {
  213. $_POST['aid'] = $aid;
  214. model('UsersRelease')->afterSave($aid, $data, 'add', $this->channelData['table']);
  215. // 添加查询执行语句到mysql缓存表
  216. model('SqlCacheTable')->InsertSqlCacheTable();
  217. // 发送站内信给后台
  218. SendNotifyMessage($data, 20, 1, 0);
  219. // 邮箱发送
  220. $returnData['email'] = GetEamilSendData(tpCache('smtp'), $this->users, $data, 3);
  221. // 手机发送
  222. $returnData['mobile'] = GetMobileSendData(tpCache('sms'), $this->users, $data, 3);
  223. // 返回结束
  224. $this->success("投稿成功!", url('user/UsersRelease/release_centre', ['list' => 1]), $returnData);
  225. }
  226. $this->error("投稿失败!");
  227. }
  228. $typeid = input('param.typeid/d', 0);
  229. empty($typeid) && $typeid = getUsersConfigData('users.release_default_id') ? intval(getUsersConfigData('users.release_default_id')) : 0;
  230. // 自定义字段、栏目选项、Token验证
  231. $assign_data = $this->GetAssignData($this->channelID, null, ['typeid'=>$typeid]);
  232. $assign_data['channel_id'] = $this->channelID;
  233. //视频模型 需要数据 开始
  234. // 系统最大上传视频的大小
  235. $assign_data['upload_max_filesize'] = upload_max_filesize();
  236. //视频类型
  237. $media_type = tpCache('basic.media_type');
  238. $media_type = !empty($media_type) ? $media_type : config('global.media_ext');
  239. $assign_data['media_type'] = $media_type;
  240. //文件类型
  241. $file_type = tpCache('basic.file_type');
  242. $file_type = !empty($file_type) ? $file_type : "zip|gz|rar|iso|doc|xls|ppt|wps";
  243. $assign_data['file_type'] = $file_type;
  244. // 视频模型配置信息
  245. $channelRow = Db::name('channeltype')->where('id', 5)->find();
  246. $channelRow['data'] = json_decode($channelRow['data'], true);
  247. $assign_data['channelRow'] = $channelRow;
  248. // 会员等级信息
  249. $assign_data['users_level'] = model('UsersLevel')->getList('level_id, level_name, level_value');
  250. //视频模型 需要数据 结束
  251. // 加载数据
  252. $this->assign($assign_data);
  253. $html = $this->fetch('users/article_add');
  254. $web_xss_filter = empty($this->eyou['global']['web_xss_filter']) ? 0 : intval($this->eyou['global']['web_xss_filter']);
  255. $replace = <<<EOF
  256. <script type="text/javascript">
  257. var __web_xss_filter__ = {$web_xss_filter};
  258. var __is_mobile__ = {$this->is_mobile};
  259. </script>
  260. </head>
  261. EOF;
  262. $html = str_ireplace('</head>', $replace, $html);
  263. return $html;
  264. }
  265. // 会员投稿--文章编辑
  266. public function article_edit()
  267. {
  268. if (IS_AJAX_POST) {
  269. $post = input('post.');
  270. $post['aid'] = intval($post['aid']);
  271. // 文档标题处理
  272. $post['title'] = !empty($post['title']) ? handleEyouFilterStr($post['title']) : '';
  273. // 文档tags处理
  274. if (!empty($post['tags'])) $post['tags'] = str_replace(",", ',', $post['tags']);
  275. // 判断POST参数:文章标题是否为空、所属栏目是否为空、是否重复标题、是否重复提交
  276. $this->PostParameCheck($post);
  277. // POST参数处理后返回
  278. $post = $this->PostParameDealWith($post, 'edit');
  279. // 更新数据
  280. $newData = array(
  281. 'typeid' => empty($post['typeid']) ? 0 : $post['typeid'],
  282. 'update_time' => getTime(),
  283. );
  284. if (!empty($post['arc_level_id'])){
  285. $post['restric_type'] = 2;
  286. }
  287. $data = array_merge($post, $newData);
  288. // 更新条件
  289. $where = [
  290. 'aid' => $data['aid'],
  291. 'lang' => $this->home_lang,
  292. 'users_id' => $this->users_id,
  293. ];
  294. $ResultID = $this->archives_db->where($where)->update($data);
  295. if (!empty($ResultID)) {
  296. /*后置操作*/
  297. $data['attr']['typeid'] = $data['old_typeid'];
  298. model('UsersRelease')->afterSave($data['aid'], $data, 'edit', $this->channelData['table']);
  299. /* END */
  300. $url = url('user/UsersRelease/release_centre',['list'=>1]);
  301. $this->success("编辑成功!", $url);
  302. }
  303. $this->error("编辑失败!");
  304. }
  305. // 文章ID
  306. $aid = input('param.aid/d');
  307. $channel_id = Db::name('archives')->where('aid', $aid)->getField('channel');
  308. $info = model('UsersRelease')->getInfo($aid, null, false);
  309. if (!empty($info['users_id']) && intval($info['users_id']) !== intval($this->users_id)) {
  310. $this->error('文档不存在!');
  311. }
  312. $is_remote_file = 0;
  313. $imgupload_list = $downfile_list = [];
  314. $video_list = '';
  315. // 图集模型
  316. if ($channel_id == 3) {
  317. $imgupload_list = model('UsersRelease')->getImgUpload($aid);
  318. foreach ($imgupload_list as $key => $val) {
  319. $imgupload_list[$key]['image_url'] = handle_subdir_pic($val['image_url']);
  320. }
  321. }else if ($channel_id == 4) {
  322. // 下载模型
  323. $downfile_list = model('DownloadFile')->getDownFile($aid);
  324. // 下载文件中是否存在远程链接
  325. foreach ($downfile_list as $key => $value) {
  326. if (1 == $value['is_remote']) {
  327. $is_remote_file = 1;
  328. break;
  329. }
  330. }
  331. }else if ($channel_id == 5){
  332. $video_list = Db::name('media_file')
  333. ->where('aid', $aid)
  334. ->order('file_id asc')
  335. ->select();
  336. $video_list = json_encode($video_list);
  337. }
  338. // 自定义字段、栏目选项、Token验证
  339. $assign_data = $this->GetAssignData($channel_id, $aid, $info);
  340. // 文章列表
  341. $assign_data['ArchivesData'] = $info;
  342. // 图集列表
  343. $assign_data['imgupload_list'] = $imgupload_list;
  344. // 是否远程链接
  345. $assign_data['is_remote_file'] = $is_remote_file;
  346. // 下载列表
  347. $assign_data['downfile_list'] = !empty($downfile_list) ? json_encode($downfile_list) : '';
  348. //视频模型视频列表
  349. $assign_data['video_list'] = $video_list;
  350. // 加载数据
  351. $assign_data['aid'] = $aid;
  352. $assign_data['channel_id'] = $channel_id;
  353. //视频模型 需要数据 开始
  354. // 系统最大上传视频的大小
  355. $assign_data['upload_max_filesize'] = upload_max_filesize();
  356. //视频类型
  357. $media_type = tpCache('basic.media_type');
  358. $media_type = !empty($media_type) ? $media_type : config('global.media_ext');
  359. $assign_data['media_type'] = $media_type;
  360. //文件类型
  361. $file_type = tpCache('basic.file_type');
  362. $file_type = !empty($file_type) ? $file_type : "zip|gz|rar|iso|doc|xls|ppt|wps";
  363. $assign_data['file_type'] = $file_type;
  364. // 视频模型配置信息
  365. $channelRow = Db::name('channeltype')->where('id', 5)->find();
  366. $channelRow['data'] = json_decode($channelRow['data'], true);
  367. $assign_data['channelRow'] = $channelRow;
  368. // 会员等级信息
  369. $assign_data['users_level'] = model('UsersLevel')->getList('level_id, level_name, level_value');
  370. //视频模型 需要数据 结束
  371. $this->assign($assign_data);
  372. $html = $this->fetch('users/article_edit');
  373. $web_xss_filter = empty($this->eyou['global']['web_xss_filter']) ? 0 : intval($this->eyou['global']['web_xss_filter']);
  374. $replace = <<<EOF
  375. <script type="text/javascript">
  376. var __web_xss_filter__ = {$web_xss_filter};
  377. var __is_mobile__ = {$this->is_mobile};
  378. </script>
  379. </head>
  380. EOF;
  381. $html = str_ireplace('</head>', $replace, $html);
  382. return $html;
  383. }
  384. // 会员投稿--文章删除
  385. public function article_del()
  386. {
  387. if(IS_AJAX_POST){
  388. $del_id = input('del_id/a');
  389. $aids = eyIntval($del_id);
  390. if(!empty($del_id)){
  391. $Where = [
  392. 'aid' => ['IN', $aids],
  393. 'lang' => $this->home_lang,
  394. 'users_id' => $this->users_id,
  395. ];
  396. $field = 'a.aid, a.typeid, a.channel, a.arcrank, a.is_recom, a.is_special, a.is_b, a.is_head, a.is_litpic, a.is_jump, a.is_slide, a.is_roll, a.is_diyattr, a.users_id, b.table';
  397. $archives = $this->archives_db
  398. ->alias('a')
  399. ->field($field)
  400. ->join('__CHANNELTYPE__ b', 'a.channel = b.id', 'LEFT')
  401. ->where($Where)
  402. ->select();
  403. $typeids = [];
  404. $del_content = [];
  405. foreach ($archives as $key => $value) {
  406. $del_content[$value['table']][] = $value['aid'];
  407. if (-1 === $value['arcrank']) {
  408. array_push($typeids, $value['typeid']);
  409. unset($archives[$key]);
  410. }
  411. }
  412. $return = $this->archives_db->where($Where)->delete();
  413. if (!empty($return)) {
  414. foreach ($del_content as $k => $v){
  415. Db::name($k.'_content')->where('aid','in',$v)->delete();
  416. if ('media' == $k){
  417. model('MediaFile')->delVideoFile($v);
  418. }elseif ('download' == $k){
  419. model('DownloadFile')->delDownFile($v);
  420. }elseif ('images' == $k){
  421. $image_url = Db::name('images_upload')->where('aid','in',$v)->column('image_url');
  422. Db::name('images_upload')->where('aid','in',$v)->delete();
  423. foreach ($image_url as $key => $val) {
  424. $file_url_tmp = preg_replace('#^(/[/\w\-]+)?(/uploads/)#i', '.$2', $val);
  425. if (!is_http_url($val) && file_exists($file_url_tmp)) {
  426. @unlink($file_url_tmp);
  427. }
  428. }
  429. }
  430. }
  431. if (!empty($typeids)) model('SqlCacheTable')->UpdateDraftSqlCacheTable($typeids, 'del');
  432. if (!empty($archives)) model('SqlCacheTable')->UpdateSqlCacheTable($archives, 'del', '', true);
  433. $this->success('删除成功');
  434. } else {
  435. $this->error('删除失败');
  436. }
  437. }
  438. }
  439. }
  440. public function get_addonextitem()
  441. {
  442. $typeid = input('post.typeid/d', 0);
  443. if (!empty($typeid)) {
  444. // 模型ID
  445. $channel_id = !empty($this->channelID) ? $this->channelID : Db::name('arctype')->where('id', $typeid)->getField('current_channel');
  446. // 获取加载到页面的数据
  447. $aid = input('post.aid/d', 0);
  448. $info['typeid'] = $typeid;
  449. $assign_data = $this->GetAssignData($channel_id, $aid, $info, true);
  450. $assign_data['channel_id'] = $channel_id;
  451. $this->assign($assign_data);
  452. // 加载模板处理
  453. $filename = 'users_release_field';
  454. if (isMobile()) $filename .= '_m';
  455. // 模板版本号处理
  456. $usersTpl2xVersion = getUsersTpl2xVersion();
  457. if ($usersTpl2xVersion == 'v2.x') {
  458. $web_users_tpl_theme = tpCache('web.web_users_tpl_theme') ? tpCache('web.web_users_tpl_theme') : 'users';
  459. if (isMobile()) {
  460. if (is_dir('./template/mobile/')) {
  461. $html = $this->fetch("./template/".TPL_THEME."mobile/{$web_users_tpl_theme}/{$filename}.htm");
  462. } else {
  463. $html = $this->fetch("./template/".TPL_THEME."pc/{$web_users_tpl_theme}/wap/{$filename}.htm");
  464. }
  465. } else {
  466. $html = $this->fetch("./template/".TPL_THEME."pc/{$web_users_tpl_theme}/{$filename}.htm");
  467. }
  468. } else {
  469. $web_users_tpl_theme = 'users';
  470. if ($this->usersTplVersion != 'v1') $web_users_tpl_theme .= '_' . $this->usersTplVersion;
  471. $html = $this->fetch("./public/static/template/{$web_users_tpl_theme}/{$filename}.htm");
  472. }
  473. } else {
  474. $html = '';
  475. $assign_data['htmltextField'] = '';
  476. }
  477. // 返回页面数据
  478. $result = [
  479. 'html' => $html,
  480. 'htmltextField' => $assign_data['htmltextField'],
  481. 'is_litpic_users_release' => $this->channelData['is_litpic_users_release']
  482. ];
  483. $channel_id = !empty($channel_id) ? $channel_id : 0;
  484. $channel_data = $this->channel_addonextitem($channel_id);
  485. if (!empty($channel_data)) $result = array_merge($result, $channel_data);
  486. // sleep(1);
  487. $this->success('请求成功', null, $result);
  488. }
  489. //get_addonextitem一些模型后续处理
  490. public function channel_addonextitem($channel=0)
  491. {
  492. $data = [];
  493. if (4 == $channel) {
  494. $data['download']['users_level'] = model('UsersLevel')->getList('level_id, level_name');
  495. //下载模型自定义属性字段
  496. $attr_field = Db::name('download_attr_field')->select();
  497. $servername_use = 0;
  498. if ($attr_field) {
  499. $servername_info = [];
  500. for ($i = 0; $i < count($attr_field); $i++) {
  501. if ($attr_field[$i]['field_name'] == 'server_name') {
  502. if ($attr_field[$i]['field_use'] == 1) {
  503. $servername_use = 1;
  504. }
  505. $servername_info = $attr_field[$i];
  506. break;
  507. }
  508. }
  509. $data['download']['servername_info'] = $servername_info;
  510. }
  511. $data['download']['attr_field'] = $attr_field;
  512. $data['download']['servername_use'] = $servername_use;
  513. $servername_arr = unserialize(tpCache('download.download_select_servername'));
  514. $data['download']['default_servername'] = $servername_arr?$servername_arr[0]:'立即下载';
  515. $weapp = Db::name('weapp')->where('code','in',['Qiniuyun','AliyunOss','Cos'])->where('status',1)->getAllWithIndex('code');
  516. $config = Db::name('channeltype')->where('nid','download')->value('data');
  517. $config = json_decode($config,true);
  518. $upload_flag_name = '';
  519. if (!empty($config['qiniuyun_open']) && '1' == $config['qiniuyun_open'] && !empty($weapp['Qiniuyun'])) {
  520. $upload_flag = 'qny';
  521. $upload_flag_name = '七牛云';
  522. } else if (!empty($config['oss_open']) && '1' == $config['oss_open'] && !empty($weapp['AliyunOss'])) {
  523. $upload_flag = 'oss';
  524. $upload_flag_name = '阿里云';
  525. } else if (!empty($config['cos_open']) && '1' == $config['cos_open'] && !empty($weapp['Cos'])) {
  526. $upload_flag = 'cos';
  527. $upload_flag_name = '腾讯云';
  528. }else{
  529. $upload_flag = 'local';
  530. }
  531. $data['download']['upload_flag'] = $upload_flag;
  532. $data['download']['upload_flag_name'] = $upload_flag_name;
  533. // 系统最大上传大小 限制类型
  534. $file_size = tpCache('basic.file_size');
  535. $postsize = @ini_get('file_uploads') ? ini_get('post_max_size') : -1;
  536. $fileupload = @ini_get('file_uploads') ? ini_get('upload_max_filesize') : -1;
  537. $min_size = strval($file_size) < strval($postsize) ? $file_size : $postsize;
  538. $min_size = strval($min_size) < strval($fileupload) ? $min_size : $fileupload;
  539. $basic['file_size'] = intval($min_size) * 1024 * 1024;
  540. $file_type = tpCache('basic.file_type');
  541. $basic['file_type'] = !empty($file_type) ? $file_type : "zip|gz|rar|iso|doc|xls|ppt|wps";
  542. $data['download']['basic'] = $basic;
  543. }
  544. return $data;
  545. }
  546. // 处理加载到页面的数据
  547. private function GetAssignData($channel_id = null, $aid = null, $info = array(), $is_if = false)
  548. {
  549. /* 自定义字段 */
  550. if (!empty($aid) && !empty($info) && !empty($channel_id)) {
  551. $addonFieldExtList = model('UsersRelease')->GetUsersReleaseData($channel_id, $info['typeid'], $aid, 'edit');
  552. } else if (!empty($channel_id) && !empty($info)){
  553. $addonFieldExtList = model('UsersRelease')->GetUsersReleaseData($channel_id, $info['typeid']);
  554. } else {
  555. $addonFieldExtList = model('UsersRelease')->GetUsersReleaseData($channel_id);
  556. }
  557. // 匹配显示的自定义字段
  558. $htmltextField = []; // 富文本的字段名
  559. foreach ($addonFieldExtList as $key => $val) {
  560. if ($val['dtype'] == 'htmltext') {
  561. array_push($htmltextField, $val['name']);
  562. }
  563. }
  564. $assign_data['addonFieldExtList'] = $addonFieldExtList;
  565. $assign_data['htmltextField'] = $htmltextField;
  566. /* END */
  567. if (empty($is_if)) {
  568. /*允许发布文档列表的栏目*/
  569. $typeid = 0;
  570. if (!empty($info['typeid'])) $typeid = $info['typeid'];
  571. $arctype_html = $this->allow_release_arctype($typeid);
  572. $assign_data['arctype_html'] = $arctype_html;
  573. /* END */
  574. /*封装表单验证隐藏域*/
  575. static $request = null;
  576. if (null == $request) { $request = Request::instance(); }
  577. $token = $request->token();
  578. $assign_data['TokenValue'] = " <input type='hidden' name='__token__' value='{$token}'/> ";
  579. /* END */
  580. }
  581. return $assign_data;
  582. }
  583. // 判断POST参数:文章标题是否为空、所属栏目是否为空、是否重复标题、是否重复提交
  584. private function PostParameCheck($post = array(), $channel_id = 1)
  585. {
  586. if (empty($post)) $this->error('提交错误!', null, 'title');
  587. // 判断文章标题是否为空
  588. if (empty($post['title'])) $this->error('请填写文章标题!', null, 'title');
  589. // 判断所属栏目是否为空
  590. if (empty($post['typeid'])) $this->error('请选择所属栏目!', null, 'typeid');
  591. // 如果模型不允许重复标题则执行
  592. $is_repeat_title = $this->channeltype_db->where('id', $channel_id)->getField('is_repeat_title');
  593. if (empty($is_repeat_title)) {
  594. $where = [
  595. 'title' => $post['title'],
  596. // 'channel' => $channel_id,
  597. ];
  598. if (!empty($post['aid'])) $where['aid'] = ['NOT IN', $post['aid']];
  599. $count = $this->archives_db->where($where)->count();
  600. if(!empty($count)) $this->error('文档标题不允许重复!', null, 'title');
  601. }
  602. // 数据验证
  603. $rule = [
  604. 'title' => 'require|token',
  605. ];
  606. $message = [
  607. 'title.require' => '不可为空!',
  608. ];
  609. $validate = new \think\Validate($rule, $message);
  610. if(!$validate->check($post)) $this->error('不允许连续提交!');
  611. }
  612. // POST参数处理后返回
  613. private function PostParameDealWith($post = array(), $type = 'add')
  614. {
  615. // 内容详情
  616. $content = input('post.addonFieldExt.content', '', null);
  617. // 自动获取内容第一张图片作为封面图
  618. $post['litpic'] = !empty($post['litpic_inpiut']) ? $post['litpic_inpiut'] : get_html_first_imgurl($content);
  619. // 是否有封面图
  620. $post['is_litpic'] = !empty($post['litpic']) ? 1 : 0;
  621. // SEO描述
  622. if ('add' == $type && !empty($content)) {
  623. $post['seo_description']= @msubstr(checkStrHtml($content), 0, config('global.arc_seo_description_length'), false);
  624. }
  625. $post['addonFieldExt']['content'] = htmlspecialchars(strip_sql($content));
  626. if (empty($this->usersConfig['is_automatic_review'])) {
  627. // 自动审核关闭,文章默认待审核
  628. $post['arcrank'] = -1; // 待审核
  629. } else {
  630. // 自动审核开启,文章默认已审核
  631. $post['arcrank'] = 0; // 已审核
  632. }
  633. return $post;
  634. }
  635. // 计算获取一天内的投稿文档合计次数
  636. private function GetOneDayReleaseCount()
  637. {
  638. $time1 = strtotime(date('Y-m-d', time()));
  639. $time2 = $time1 + 86399;
  640. $where = [
  641. 'lang' => $this->home_lang,
  642. 'users_id' => $this->users_id,
  643. 'add_time' => ['between time', [$time1, $time2]],
  644. ];
  645. $AidCount = $this->archives_db->where($where)->count();
  646. return $AidCount;
  647. }
  648. /**
  649. * 允许会员投稿发布的栏目列表
  650. */
  651. private function allow_release_arctype($typeid = 0)
  652. {
  653. // 查询会员投稿设置的投稿栏目
  654. $ids = [1, 3, 4, 5];
  655. $where = [
  656. 'is_release' => 1,
  657. 'lang' => $this->home_lang,
  658. 'current_channel' => ['IN', $ids]
  659. ];
  660. $release_typeids = Db::name('arctype')->where($where)->column('id');
  661. // 生成栏目选择下拉列表
  662. $arctype_html = allow_release_arctype($typeid, $ids, true, $release_typeids, true);
  663. $arctype_html = str_ireplace('data-current_channel=', 'data-channel=', $arctype_html);
  664. $arctype_html = "<select name='typeid' id='typeid'><option value='0'>请选择栏目…</option>{$arctype_html}</select>";
  665. return $arctype_html;
  666. }
  667. /**
  668. * 模型字段 - 删除多图字段的图集
  669. */
  670. public function del_channelimgs()
  671. {
  672. if (IS_AJAX_POST) {
  673. $aid = input('aid/d', '0');
  674. $channel = input('channel/d', ''); // 模型ID
  675. if (!empty($aid) && !empty($channel)) {
  676. $path = input('param.filename/s', ''); // 图片路径
  677. $fieldid = input('param.fieldid/d'); // 多图字段
  678. $fieldname = Db::name('channelfield')->where(['id'=>$fieldid])->value('name');
  679. if (!empty($fieldname)) {
  680. /*模型附加表*/
  681. $table = M('channeltype')->where('id', $channel)->getField('table');
  682. $tableExt = $table . '_content';
  683. /*--end*/
  684. /*除去多图字段值中的图片*/
  685. $info = M($tableExt)->field("{$fieldname}")->where("aid", $aid)->find();
  686. $valueArr = explode(',', $info[$fieldname]);
  687. foreach ($valueArr as $key => $val) {
  688. if ($path == $val) {
  689. unset($valueArr[$key]);
  690. }
  691. }
  692. $value = implode(',', $valueArr);
  693. M($tableExt)->where('aid', $aid)->update(array($fieldname => $value, 'update_time' => getTime()));
  694. /*--end*/
  695. }
  696. }
  697. }
  698. }
  699. }