Geen omschrijving
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.

Lists.php 29KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710
  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\controller;
  14. use think\Db;
  15. use think\Verify;
  16. class Lists extends Base
  17. {
  18. // 模型标识
  19. public $nid = '';
  20. // 模型ID
  21. public $channel = '';
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. }
  26. /**
  27. * 栏目列表
  28. */
  29. public function index($tid = '')
  30. {
  31. $param = input('param.');
  32. /*获取当前栏目ID以及模型ID*/
  33. $page_tmp = input('param.page/s', 0);
  34. if (empty($tid) || !is_numeric($page_tmp)) {
  35. to_index("404");
  36. }
  37. /*
  38. * 非法动态url 直接301到首页
  39. */
  40. if(stristr($this->request->url(), '&c=Lists&a=index&')) {
  41. to_index("404");
  42. }
  43. $map = [];
  44. /*URL上参数的校验*/
  45. /* $seo_pseudo = config('ey_config.seo_pseudo');
  46. $url_screen_var = config('global.url_screen_var');
  47. if (!isset($param[$url_screen_var]) && 3 == $seo_pseudo)
  48. {
  49. if (stristr($this->request->url(), '&c=Lists&a=index&')) {
  50. to_index();
  51. }
  52. $map = array('a.dirname'=>$tid);
  53. }
  54. else if (isset($param[$url_screen_var]) || 1 == $seo_pseudo || (2 == $seo_pseudo && isMobile()))
  55. {
  56. $seo_dynamic_format = config('ey_config.seo_dynamic_format');
  57. if (1 == $seo_pseudo && 2 == $seo_dynamic_format && stristr($this->request->url(), '&c=Lists&a=index&')) {
  58. to_index();
  59. } else if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
  60. to_index();
  61. }
  62. $map = array('a.id'=>$tid);
  63. }else if (2 == $seo_pseudo){ // 生成静态页面代码
  64. $map = array('a.id'=>$tid);
  65. }*/
  66. /*--end*/
  67. if (!is_numeric($tid) || strval(intval($tid)) !== strval($tid)) {
  68. $map = array('a.dirname' => $tid);
  69. } else {
  70. $map = array('a.id' => intval($tid));
  71. }
  72. $map['a.is_del'] = 0; // 回收站功能
  73. $map['a.lang'] = $this->home_lang; // 多语言
  74. $row = Db::name('arctype')->field('a.id, a.current_channel, b.nid')
  75. ->alias('a')
  76. ->join('__CHANNELTYPE__ b', 'a.current_channel = b.id', 'LEFT')
  77. ->where($map)
  78. ->find();
  79. if (empty($row)) {
  80. to_index("404");
  81. }
  82. $tid = $row['id'];
  83. $this->nid = $row['nid'];
  84. $this->channel = intval($row['current_channel']);
  85. /*--end*/
  86. if((int)$tid === 1232){
  87. $areaname = request()->get('areaname','');
  88. if((int)$areaname > 0){
  89. return action('home/View/index', 'tid=1232&aid='.$areaname);
  90. }
  91. }
  92. $result = $this->logic($tid); // 模型对应逻辑
  93. $eyou = array(
  94. 'field' => $result,
  95. );
  96. $this->eyou = array_merge($this->eyou, $eyou);
  97. $this->assign('eyou', $this->eyou);
  98. /*模板文件*/
  99. $viewfile = !empty($result['templist'])
  100. ? str_replace('.' . $this->view_suffix, '', $result['templist'])
  101. : 'lists_' . $this->nid;
  102. /*--end*/
  103. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  104. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$this->home_site;
  105. $viewfilepath2 = TEMPLATE_PATH.$this->theme_style_path.DS.'city'.DS.$this->home_site;
  106. if (!empty($this->eyou['global']['site_template'])) {
  107. if (file_exists($viewfilepath2)) {
  108. $viewfile = "city/{$this->home_site}/{$viewfile}";
  109. } else if (file_exists($viewfilepath)) {
  110. $viewfile = "{$this->home_site}/{$viewfile}";
  111. }
  112. }
  113. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  114. $viewfilepath = TEMPLATE_PATH . $this->theme_style_path . DS . $viewfile . "_{$this->home_lang}." . $this->view_suffix;
  115. if (file_exists($viewfilepath)) {
  116. $viewfile .= "_{$this->home_lang}";
  117. }
  118. }
  119. $users_id = (int)session('users_id');
  120. $emptyhtml = $this->check_arcrank($this->eyou['field'],$users_id);
  121. if($tid === 1234){
  122. //一键测评
  123. //开始调用数据
  124. }
  125. //var_dump($emptyhtml);
  126. // /*模板文件*/
  127. // $viewfile = $filename = !empty($result['templist'])
  128. // ? str_replace('.'.$this->view_suffix, '',$result['templist'])
  129. // : 'lists_'.$this->nid;
  130. // /*--end*/
  131. // /*每个栏目内置模板文件名*/
  132. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}.".$this->view_suffix;
  133. // if (file_exists($viewfilepath)) {
  134. // $viewfile = $filename."_{$result['id']}";
  135. // }
  136. // /*--end*/
  137. // /*多语言内置模板文件名*/
  138. // if (!empty($this->home_lang)) {
  139. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$this->home_lang}.".$this->view_suffix;
  140. // if (file_exists($viewfilepath)) {
  141. // $viewfile = $filename."_{$this->home_lang}";
  142. // }
  143. // /*每个栏目内置模板文件名*/
  144. // $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$filename."_{$result['id']}_{$this->home_lang}.".$this->view_suffix;
  145. // if (file_exists($viewfilepath)) {
  146. // $viewfile = $filename."_{$result['id']}_{$this->home_lang}";
  147. // }
  148. // /*--end*/
  149. // }
  150. // /*--end*/
  151. if (!empty($emptyhtml)) {
  152. /*尝试写入静态缓存*/
  153. // write_html_cache($emptyhtml, $result);
  154. /*--end*/
  155. return $this->fetch("./public/html/empty_view.htm");
  156. } else {
  157. $view = ":{$viewfile}";
  158. if (51 == $this->channel) { // 问答模型
  159. $Ask = new \app\home\controller\Ask;
  160. return $Ask->index();
  161. }else{
  162. return $this->fetch($view);
  163. }
  164. }
  165. }
  166. /*
  167. * 判断阅读权限
  168. */
  169. private function check_arcrank($eyou_field,$users_id){
  170. $emptyhtml = "";
  171. $eyou_field['page_limit'] = empty($eyou_field['page_limit']) ? [] : explode(',', $eyou_field['page_limit']);
  172. if ($eyou_field['typearcrank'] > 0 && in_array(1,$eyou_field['page_limit']) ) { // 若需要会员权限则执行
  173. if (empty($users_id)) {
  174. $url = url('user/Users/login');
  175. if (stristr($url, '?')) {
  176. $url = $url."&referurl=".urlencode($eyou_field['arcurl']);
  177. } else {
  178. $url = $url."?referurl=".urlencode($eyou_field['arcurl']);
  179. }
  180. $this->redirect($url);
  181. }
  182. $msg = action('api/Ajax/get_arcrank', ['tid' => $eyou_field['id'], 'vars' => 1]);
  183. if (true !== $msg) {
  184. $this->error($msg);
  185. }
  186. }
  187. return $emptyhtml;
  188. }
  189. /**
  190. * 模型对应逻辑
  191. * @param intval $tid 栏目ID
  192. * @return array
  193. */
  194. private function logic($tid = '')
  195. {
  196. $result = array();
  197. if (empty($tid)) {
  198. return $result;
  199. }
  200. switch ($this->channel) {
  201. case '6': // 单页模型
  202. {
  203. $arctype_info = model('Arctype')->getInfo($tid);
  204. if ($arctype_info) {
  205. // 读取当前栏目的内容,否则读取每一级第一个子栏目的内容,直到有内容或者最后一级栏目为止。
  206. $archivesModel = new \app\home\model\Archives;
  207. $result_new = $archivesModel->readContentFirst($tid);
  208. // 阅读权限
  209. if ($result_new['arcrank'] == -1) {
  210. $this->success('待审核稿件,你没有权限阅读!');
  211. exit;
  212. }
  213. // 外部链接跳转
  214. if ($result_new['is_part'] == 1) {
  215. $result_new['typelink'] = htmlspecialchars_decode($result_new['typelink']);
  216. if (!is_http_url($result_new['typelink'])) {
  217. $typeurl = '//'.$this->request->host();
  218. if (!preg_match('#^'.ROOT_DIR.'(.*)$#i', $result_new['typelink'])) {
  219. $typeurl .= ROOT_DIR;
  220. }
  221. $typeurl .= '/'.trim($result_new['typelink'], '/');
  222. $result_new['typelink'] = $typeurl;
  223. }
  224. $this->redirect($result_new['typelink']);
  225. exit;
  226. }
  227. /*自定义字段的数据格式处理*/
  228. $result_new = $this->fieldLogic->getChannelFieldList($result_new, $this->channel);
  229. /*--end*/
  230. $result = array_merge($arctype_info, $result_new);
  231. $result['templist'] = !empty($arctype_info['templist']) ? $arctype_info['templist'] : 'lists_'. $arctype_info['nid'];
  232. $result['dirpath'] = $arctype_info['dirpath'];
  233. $result['diy_dirpath'] = $arctype_info['diy_dirpath'];
  234. $result['typeid'] = $arctype_info['typeid'];
  235. $result['rulelist'] = $arctype_info['rulelist'];
  236. }
  237. break;
  238. }
  239. default:
  240. {
  241. $result = model('Arctype')->getInfo($tid);
  242. /*外部链接跳转*/
  243. if ($result['is_part'] == 1) {
  244. $result['typelink'] = htmlspecialchars_decode($result['typelink']);
  245. if (!is_http_url($result['typelink'])) {
  246. $result['typelink'] = '//'.$this->request->host().ROOT_DIR.'/'.trim($result['typelink'], '/');
  247. }
  248. $this->redirect($result['typelink']);
  249. exit;
  250. }
  251. /*end*/
  252. break;
  253. }
  254. }
  255. if (!empty($result)) {
  256. /*自定义字段的数据格式处理*/
  257. $result = $this->fieldLogic->getTableFieldList($result, config('global.arctype_channel_id'));
  258. /*--end*/
  259. }
  260. /*是否有子栏目,用于标记【全部】选中状态*/
  261. $result['has_children'] = model('Arctype')->hasChildren($tid);
  262. /*--end*/
  263. // seo
  264. //去掉自动补充 导致模板 无法判断空
  265. //$result['seo_title'] = set_typeseotitle($result['typename'], $result['seo_title'], $this->eyou['site']);
  266. $route_param = request()->route();
  267. /*
  268. * 以后的业务逻辑重写
  269. */
  270. //var_dump($route_param);
  271. //$result['soga'] = "文案";
  272. $result['pageurl'] = typeurl('home/'.$result['ctl_name'].'/lists', $result, true, true);
  273. $result['pageurl'] = get_list_only_pageurl($result['pageurl'], $result['typeid'], $result['rulelist']);
  274. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl'], $result['typeid']); // 获取当前页面对应的移动端URL
  275. // 移动端域名
  276. $result['mobile_domain'] = '';
  277. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  278. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  279. }
  280. /*给没有type前缀的字段新增一个带前缀的字段,并赋予相同的值*/
  281. foreach ($result as $key => $val) {
  282. if (!preg_match('/^type/i', $key)) {
  283. $key_new = 'type' . $key;
  284. !array_key_exists($key_new, $result) && $result[$key_new] = $val;
  285. }
  286. }
  287. /*--end*/
  288. return $result;
  289. }
  290. /**
  291. * 留言提交
  292. */
  293. public function gbook_submit()
  294. {
  295. $typeid = input('post.typeid/d');
  296. if (IS_POST && !empty($typeid)) {
  297. $form_type = input('post.form_type/d', 0);
  298. $channel_guestbook_gourl = tpSetting('channel_guestbook.channel_guestbook_gourl');
  299. if (!empty($channel_guestbook_gourl)) {
  300. $gourl = $channel_guestbook_gourl;
  301. } else {
  302. $gourl = input('post.gourl/s');
  303. $gourl = urldecode($gourl);
  304. $gourl = str_replace(['"',"'",';'], '', $gourl);
  305. }
  306. $post = input('post.');
  307. unset($post['gourl']);
  308. $token = '__token__';
  309. foreach ($post as $key => $val) {
  310. if (preg_match('/^__token__/i', $key)) {
  311. $token = $key;
  312. continue;
  313. }
  314. // $val = htmlspecialchars_decode($val);
  315. // $preg = "/<script[\s\S]*?<\/script>/i";
  316. // $val = preg_replace($preg, "", $val);
  317. // $val = trim($val);
  318. // $val = htmlspecialchars($val);
  319. // $post[$key] = $val;
  320. }
  321. $ip = clientIP();
  322. /*留言间隔限制*/
  323. $channel_guestbook_interval = tpSetting('channel_guestbook.channel_guestbook_interval');
  324. $channel_guestbook_interval = is_numeric($channel_guestbook_interval) ? intval($channel_guestbook_interval) : 60;
  325. if (0 < $channel_guestbook_interval) {
  326. $map = array(
  327. 'typeid' => $typeid,
  328. 'form_type'=> $form_type,
  329. 'ip' => $ip,
  330. 'add_time' => array('gt', getTime() - $channel_guestbook_interval),
  331. );
  332. $count = Db::name('guestbook')->where($map)->count('aid');
  333. if ($count > 0) {
  334. $msg = sprintf(foreign_lang('gbook2', $this->home_lang), $channel_guestbook_interval);
  335. $this->error($msg);
  336. }
  337. }
  338. /*end*/
  339. $attrArr = [];
  340. /*多语言*/
  341. if (is_language()) {
  342. foreach ($post as $key => $val) {
  343. if (preg_match_all('/^attr_(\d+)$/i', $key, $matchs)) {
  344. $attr_value = intval($matchs[1][0]);
  345. $attrArr[$attr_value] = [
  346. 'attr_id' => $attr_value,
  347. ];
  348. }
  349. }
  350. if (1 == $form_type) {
  351. $attrArr = model('LanguageAttr')->getBindValue($attrArr, 'form_attribute'); // 多语言
  352. } else {
  353. $attrArr = model('LanguageAttr')->getBindValue($attrArr, 'guestbook_attribute'); // 多语言
  354. }
  355. }
  356. //判断必填项
  357. $ContentArr = []; // 添加站内信所需参数
  358. foreach ($post as $key => $value) {
  359. if (stripos($key, "attr_") !== false) {
  360. //处理得到自定义属性id
  361. $attr_id = substr($key, 5);
  362. $attr_id = intval($attr_id);
  363. if (!empty($attrArr)) {
  364. $attr_id = $attrArr[$attr_id]['attr_id'];
  365. }
  366. $ga_data = Db::name('guestbook_attribute')->where([
  367. 'attr_id' => $attr_id,
  368. ])->find();
  369. if ($ga_data['required'] == 1) {
  370. if (empty($value)) {
  371. $msg = sprintf(foreign_lang('gbook3', $this->home_lang), $ga_data['attr_name']);
  372. $this->error($msg);
  373. } else {
  374. if ($ga_data['validate_type'] == 6) {
  375. $pattern = "/^1\d{10}$/";
  376. if (!preg_match($pattern, $value)) {
  377. $msg = sprintf(foreign_lang('gbook4', $this->home_lang), $ga_data['attr_name']);
  378. $this->error($msg);
  379. }
  380. } elseif ($ga_data['validate_type'] == 7) {
  381. $pattern = "/^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/i";
  382. if (preg_match($pattern, $value) == false) {
  383. $msg = sprintf(foreign_lang('gbook4', $this->home_lang), $ga_data['attr_name']);
  384. $this->error($msg);
  385. }
  386. }
  387. }
  388. }
  389. if (is_array($value)){
  390. $value = implode(',', $value);
  391. }
  392. // 添加站内信所需参数
  393. array_push($ContentArr, $value);
  394. }
  395. }
  396. /* 处理判断验证码 */
  397. $is_vertify = 1; // 默认开启验证码
  398. $guestbook_captcha = config('captcha.guestbook');
  399. if (!function_exists('imagettftext') || empty($guestbook_captcha['is_on'])) {
  400. $is_vertify = 0; // 函数不存在,不符合开启的条件
  401. }
  402. if (1 == $is_vertify) {
  403. if (empty($post['vertify'])) {
  404. $msg = foreign_lang('gbook5', $this->home_lang);
  405. $this->error($msg);
  406. }
  407. $verify = new Verify();
  408. if (!$verify->check($post['vertify'], $token)) {
  409. $msg = foreign_lang('gbook6', $this->home_lang);
  410. $this->error($msg);
  411. }
  412. }
  413. /* END */
  414. if (1 == $form_type) {
  415. $channel = 0;
  416. } else {
  417. $channeltype_list = config('global.channeltype_list');
  418. $channel = !empty($channeltype_list['guestbook']) ? $channeltype_list['guestbook'] : 8;
  419. }
  420. $newData = array(
  421. 'typeid' => $typeid,
  422. 'form_type' => $form_type,
  423. 'channel' => $channel,
  424. 'ip' => $ip,
  425. 'source' => isMobile() ? 2 : 1,
  426. 'lang' => $this->home_lang,
  427. 'add_time' => getTime(),
  428. 'update_time' => getTime(),
  429. );
  430. $data = array_merge($post, $newData);
  431. // 查询手机验证码是否正确
  432. if (!empty($post['real_validate'])) {
  433. if (!empty($post['real_validate_phone_input']) && !empty($post['real_validate_attr_id'])) {
  434. // 匹配手机号码,若为空则返回提示
  435. $phone = !empty($post[$post['real_validate_attr_id']]) ? $post[$post['real_validate_attr_id']] : 0;
  436. if (empty($phone)) {
  437. $msg = foreign_lang('gbook7', $this->home_lang);
  438. $this->error($msg);
  439. }
  440. // 查询手机号码和验证码是否匹配正确
  441. $where = [
  442. 'source' => 7,
  443. 'mobile' => $phone,
  444. 'code' => $post['real_validate_phone_input']
  445. ];
  446. $smsLog = Db::name('sms_log')->where($where)->order('id desc')->find();
  447. if (empty($smsLog)) {
  448. $msg = foreign_lang('gbook8', $this->home_lang);
  449. $this->error($msg);
  450. }
  451. // 验证码判断
  452. $time = getTime();
  453. $smsLog['add_time'] += \think\Config::get('global.mobile_default_time_out');
  454. // 验证码不可用
  455. if (1 === intval($smsLog['is_use']) || $smsLog['add_time'] <= $time) {
  456. $msg = foreign_lang('gbook9', $this->home_lang);
  457. $this->error($msg);
  458. }
  459. // 会员所有的未使用留言验证码设为已使用
  460. $where = [
  461. 'source' => 7,
  462. 'mobile' => $phone,
  463. 'is_use' => 0,
  464. 'lang' => $this->home_lang
  465. ];
  466. $update = [
  467. 'is_use' => 1,
  468. 'update_time' => $time
  469. ];
  470. Db::name('sms_log')->where($where)->update($update);
  471. // 清理短信验证涉及的参数
  472. unset($post['real_validate_input'], $post['real_validate_phone_input'], $post['real_validate_attr_id'], $post['real_validate_token']);
  473. } else {
  474. $msg = foreign_lang('gbook10', $this->home_lang);
  475. $this->error($msg);
  476. }
  477. }
  478. // 数据验证
  479. $rule = [
  480. 'typeid' => 'require|token:' . $token,
  481. ];
  482. $message = [
  483. 'typeid.require' => foreign_lang('gbook11', $this->home_lang),
  484. ];
  485. $validate = new \think\Validate($rule, $message);
  486. if (!$validate->batch()->check($data)) {
  487. $error = $validate->getError();
  488. $error_msg = array_values($error);
  489. $this->error($error_msg[0]);
  490. } else {
  491. $guestbookRow = [];
  492. /*处理是否重复表单数据的提交*/
  493. $formdata = $data;
  494. foreach ($formdata as $key => $val) {
  495. if (in_array($key, ['typeid', 'lang']) || preg_match('/^attr_(\d+)$/i', $key)) {
  496. continue;
  497. }
  498. unset($formdata[$key]);
  499. }
  500. if (is_array($_FILES)) {
  501. $formdata = array_merge($formdata, $_FILES);
  502. }
  503. $md5data = md5(serialize($formdata));
  504. $data['md5data'] = $md5data;
  505. $users_id = session('users_id');
  506. $data['users_id'] = !empty($users_id) ? $users_id : 0;
  507. $guestbookRow = Db::name('guestbook')->field('aid')->where(['md5data' => $md5data])->find();
  508. /*--end*/
  509. $dataStr = '';
  510. if (empty($guestbookRow)) { // 非重复表单的才能写入数据库
  511. $aid = Db::name('guestbook')->insertGetId($data);
  512. if ($aid > 0) {
  513. $res = $this->saveGuestbookAttr($aid, $typeid, $post);
  514. if ($res){
  515. $this->error($res);
  516. }
  517. }
  518. $_POST['aid'] = $aid;
  519. /*插件 - 邮箱发送*/
  520. $data = [
  521. 'gbook_submit',
  522. $typeid,
  523. $aid,
  524. $form_type,
  525. ];
  526. $dataStr = implode('|', $data);
  527. /*--end*/
  528. /*发送站内信给后台*/
  529. SendNotifyMessage($ContentArr, 1, 1, 0);
  530. /* END */
  531. } else {
  532. $_POST['aid'] = $guestbookRow['aid'];
  533. // 存在重复数据的表单,将在后台显示在最前面
  534. Db::name('guestbook')->where('aid', $guestbookRow['aid'])->update([
  535. 'is_read' => 0,
  536. 'add_time' => getTime(),
  537. 'update_time' => getTime(),
  538. ]);
  539. }
  540. $msg = foreign_lang('gbook1', $this->home_lang);
  541. $channel_guestbook_time = tpSetting('channel_guestbook.channel_guestbook_time');
  542. $channel_guestbook_time = !empty($channel_guestbook_time) ? intval($channel_guestbook_time) : 5;
  543. $this->success($msg, $gourl, $dataStr, $channel_guestbook_time);
  544. }
  545. }
  546. $msg = foreign_lang('gbook11', $this->home_lang);
  547. $this->error($msg);
  548. }
  549. /**
  550. * 给指定留言添加表单值到 guestbook_attr
  551. * @param int $aid 留言id
  552. * @param int $typeid 留言栏目id
  553. */
  554. private function saveGuestbookAttr($aid, $typeid, $post)
  555. {
  556. // post 提交的属性 以 attr_id _ 和值的 组合为键名
  557. // $post = input("post.");
  558. $image_type_list = explode('|', tpCache('global.image_type'));
  559. /*上传图片或附件*/
  560. foreach ($_FILES as $fileElementId => $file) {
  561. try {
  562. if (is_array($file['name'])) {
  563. $files = $this->request->file($fileElementId);
  564. foreach ($files as $key => $value) {
  565. $ext = pathinfo($value->getInfo('name'), PATHINFO_EXTENSION);
  566. if (in_array($ext, $image_type_list)) {
  567. $uplaod_data = func_common($fileElementId, 'allimg', '', $value);
  568. } else {
  569. $uplaod_data = func_common_doc($fileElementId, 'files', '', $value);
  570. }
  571. if (0 == $uplaod_data['errcode']) {
  572. if (empty($post[$fileElementId])) {
  573. $post[$fileElementId] = $uplaod_data['img_url'];
  574. } else {
  575. $post[$fileElementId] .= ',' . $uplaod_data['img_url'];
  576. }
  577. } else {
  578. return $uplaod_data['errmsg'];
  579. }
  580. }
  581. } else {
  582. if (!empty($file['name']) && !is_array($file['name'])) {
  583. $ext = pathinfo($file['name'], PATHINFO_EXTENSION);
  584. if (in_array($ext, $image_type_list)) {
  585. $uplaod_data = func_common($fileElementId, 'allimg');
  586. } else {
  587. $uplaod_data = func_common_doc($fileElementId, 'files');
  588. }
  589. if (0 == $uplaod_data['errcode']) {
  590. $post[$fileElementId] = $uplaod_data['img_url'];
  591. } else {
  592. return $uplaod_data['errmsg'];
  593. }
  594. }
  595. }
  596. } catch (\Exception $e) {}
  597. }
  598. $attrArr = [];
  599. /*多语言*/
  600. if (is_language()) {
  601. foreach ($post as $key => $val) {
  602. if (preg_match_all('/^attr_(\d+)$/i', $key, $matchs)) {
  603. $attr_value = intval($matchs[1][0]);
  604. $attrArr[$attr_value] = [
  605. 'attr_id' => $attr_value,
  606. ];
  607. }
  608. }
  609. if (!empty($post['form_type'])) {
  610. $attrArr = model('LanguageAttr')->getBindValue($attrArr, 'form_attribute'); // 多语言
  611. } else {
  612. $attrArr = model('LanguageAttr')->getBindValue($attrArr, 'guestbook_attribute'); // 多语言
  613. }
  614. }
  615. /*--end*/
  616. foreach ($post as $k => $v) {
  617. if (!strstr($k, 'attr_')) continue;
  618. $attr_id = str_replace('attr_', '', $k);
  619. if (is_array($v)) {
  620. $v = implode(PHP_EOL, $v);
  621. } else {
  622. $ga_data = Db::name('guestbook_attribute')->where([
  623. 'attr_id' => $attr_id,
  624. ])->find();
  625. if (!empty($ga_data) && 10 == $ga_data['attr_input_type']){
  626. $v = strtotime($v);
  627. }
  628. }
  629. /*多语言*/
  630. if (!empty($attrArr)) {
  631. $attr_id = $attrArr[$attr_id]['attr_id'];
  632. }
  633. /*--end*/
  634. //$v = str_replace('_', '', $v); // 替换特殊字符
  635. //$v = str_replace('@', '', $v); // 替换特殊字符
  636. $v = trim($v);
  637. $adddata = array(
  638. 'aid' => $aid,
  639. 'form_type' => empty($post['form_type']) ? 0 : intval($post['form_type']),
  640. 'attr_id' => $attr_id,
  641. 'attr_value' => $v,
  642. 'lang' => $this->home_lang,
  643. 'add_time' => getTime(),
  644. 'update_time' => getTime(),
  645. );
  646. Db::name('guestbook_attr')->add($adddata);
  647. }
  648. }
  649. }