Нема описа
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.

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