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.

Buildhtml.php 66KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376
  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\Cache;
  16. use think\template\driver\File;
  17. use app\common\logic\BuildhtmlLogic;
  18. class Buildhtml extends Base
  19. {
  20. public $php_sessid;
  21. public $buildhtmlLogic;
  22. public function _initialize()
  23. {
  24. parent::_initialize();
  25. @ini_set('memory_limit','-1');
  26. $this->php_sessid = !empty($_COOKIE['PHPSESSID']) ? $_COOKIE['PHPSESSID'] : '';
  27. if (!session('?admin_id')) {
  28. $this->error("只允许后台管理员操作!");
  29. } else {
  30. $seo_pseudo = tpCache('seo.seo_pseudo');
  31. if (2 != $seo_pseudo) {
  32. $this->error('当前不是静态页面模式!');
  33. }
  34. }
  35. $this->buildhtmlLogic = new BuildhtmlLogic;
  36. }
  37. /*
  38. * 清理缓存
  39. */
  40. private function clearCache()
  41. {
  42. cache("channel_page_total_serialize".$this->php_sessid, null);
  43. cache("channel_info_serialize".$this->php_sessid, null);
  44. cache("has_children_Row_serialize".$this->php_sessid, null);
  45. cache("aid_arr_serialize".$this->php_sessid, null);
  46. cache("channel_arr_serialize".$this->php_sessid, null);
  47. cache("article_info_serialize".$this->php_sessid, null);
  48. cache("article_page_total_serialize".$this->php_sessid, null);
  49. cache("article_tags_serialize".$this->php_sessid, null);
  50. cache("article_attr_info_serialize".$this->php_sessid, null);
  51. cache("article_children_row_serialize".$this->php_sessid, null);
  52. }
  53. /*
  54. * 获取全站生成时,需要生成的页面的个数
  55. */
  56. public function buildIndexAll()
  57. {
  58. \think\Session::pause(); // 暂停session,防止session阻塞机制
  59. $this->clearCache();
  60. $uphtmltype = input('param.uphtmltype/d');
  61. if (!empty($uphtmltype)) { // 指定文档后全部生成
  62. $this->buildAppointAll($uphtmltype);
  63. }
  64. else { // 更新全部
  65. $channelData = $this->getChannelData(0);
  66. $archivesArr = getAllArchivesAid(0, $this->home_lang);
  67. $articleData_pagetotal = count($archivesArr['aid_arr']);
  68. $allpagetotal = 1 + $channelData['pagetotal'] + $articleData_pagetotal;
  69. $msg = $this->handleBuildIndex();
  70. $data = [
  71. 'achievepage' => 1,
  72. 'channelpagetotal' => $channelData['pagetotal'],
  73. 'articlepagetotal' => $articleData_pagetotal,
  74. 'allpagetotal' => $allpagetotal,
  75. ];
  76. $this->success($msg, null, $data);
  77. }
  78. }
  79. /*
  80. * 指定文档生成全部(涉及栏目、首页)
  81. */
  82. private function buildAppointAll($uphtmltype = 0)
  83. {
  84. if (1 == $uphtmltype) { // 指定时间的文档更新
  85. $seo_start_time = $this->eyou['global']['seo_start_time'];
  86. $seo_start_time = !empty($seo_start_time) ? strtotime($seo_start_time) : 0;
  87. $startid = Db::name('archives')->where([
  88. 'add_time' => ['egt', $seo_start_time],
  89. ])->order('aid asc')->limit(1)->value('aid');
  90. if (empty($startid)) {
  91. $startid = Db::name('archives')->max('aid');
  92. $startid += 1;
  93. }
  94. }
  95. else if (2 == $uphtmltype) { // 指定ID文档的全部更新
  96. $startid = $this->eyou['global']['seo_startid2'];
  97. }
  98. $archivesArr = getAllArchivesAid(0, $this->home_lang, $startid);
  99. $articleData_pagetotal = count($archivesArr['aid_arr']);
  100. $channelpagetotal = 0;
  101. $typeid_arr = [];
  102. $counts_arr = [];
  103. if (!empty($articleData_pagetotal)) {
  104. $typeid_arr = $archivesArr['typeid_arr'];
  105. foreach ($archivesArr['typeid_arr'] as $key => $val) {
  106. // 包含所有的上级栏目
  107. $allParentRow = model('Arctype')->getAllPid($val);
  108. $typeid_arr = array_merge($typeid_arr, get_arr_column($allParentRow, 'id'));
  109. }
  110. $typeid_arr = array_unique($typeid_arr);
  111. foreach ($typeid_arr as $val){
  112. $channelData = $this->getChannelData($val, false);
  113. $temp_c = intval($channelData['pagetotal']);
  114. $counts_arr[] = $temp_c;
  115. $channelpagetotal += $temp_c;
  116. }
  117. }
  118. $allpagetotal = 1 + $channelpagetotal + $articleData_pagetotal;
  119. $msg = $this->handleBuildIndex();
  120. $data = [
  121. 'achievepage' => 1,
  122. 'channelpagetotal' => $channelpagetotal,
  123. 'articlepagetotal' => $articleData_pagetotal,
  124. 'allpagetotal' => $allpagetotal,
  125. 'startid' => $startid,
  126. 'typeids' => implode(',', $typeid_arr),
  127. 'counts' => implode(',',$counts_arr),
  128. ];
  129. $this->success($msg, null, $data);
  130. }
  131. /*
  132. * 生成首页静态页面
  133. */
  134. public function buildIndex()
  135. {
  136. \think\Session::pause(); // 暂停session,防止session阻塞机制
  137. $param = input('param.');
  138. if (isset($param['seo_showmod'])) { // 是否要保存生成静态的配置
  139. $this->eyou['global']['seo_showmod'] = $param['seo_showmod'];
  140. /*多语言*/
  141. if (is_language()) {
  142. $langRow = \think\Db::name('language')->order('id asc')
  143. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  144. ->select();
  145. foreach ($langRow as $key => $val) {
  146. tpCache('seo', ['seo_showmod'=>$param['seo_showmod']], $val['mark']);
  147. }
  148. } else {
  149. tpCache('seo', ['seo_showmod'=>$param['seo_showmod']]);
  150. }
  151. /*--end*/
  152. }
  153. $msg = $this->handleBuildIndex();
  154. $this->success($msg);
  155. }
  156. /*
  157. * 处理生成首页
  158. */
  159. private function handleBuildIndex()
  160. {
  161. $msg = '';
  162. $indexurl = $this->request->domain().$this->root_dir;
  163. // 保存的文件名
  164. $seo_html_position_arr = explode('/', $this->eyou['global']['seo_html_position']);
  165. if (!empty($seo_html_position_arr)) {
  166. $savefilename = end($seo_html_position_arr);
  167. } else {
  168. $savefilename = 'index.html';
  169. }
  170. if (!empty($this->eyou['global']['seo_showmod'])){
  171. $seo_html_position = !empty($this->eyou['global']['seo_html_position']) ? $this->eyou['global']['seo_html_position'] : '';
  172. if ($seo_html_position) {
  173. $seo_html_position = preg_replace('/^\.{1,}([\\\\\/]+)/i', '', $seo_html_position);
  174. $seo_html_position = ltrim($seo_html_position, '/');
  175. $seo_html_position = ROOT_PATH.$seo_html_position;
  176. $seo_html_position_path = dirname($seo_html_position);
  177. tp_mkdir($seo_html_position_path);
  178. clearstatcache(); // 清除文件夹权限缓存
  179. if (!is_writeable($seo_html_position_path)) {
  180. $msg = "目录 {$seo_html_position_path} 没有权限写入,生成失败";
  181. return $msg;
  182. }
  183. }
  184. $result['pageurl'] = $this->request->domain() . ROOT_DIR; // 获取当前页面URL
  185. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl']); // 获取当前页面对应的移动端URL
  186. // 移动端域名
  187. $result['mobile_domain'] = '';
  188. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  189. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  190. }
  191. $eyou = array(
  192. 'field' => $result,
  193. );
  194. $this->eyou = array_merge($this->eyou, $eyou);
  195. $this->assign('eyou', $this->eyou);
  196. try {
  197. $savepath = './'.$savefilename;
  198. $tpl = 'index';
  199. $seo_html_templet = !empty($this->eyou['global']['seo_html_templet']) ? $this->eyou['global']['seo_html_templet'] : '';
  200. $seo_html_templet_arr = explode('.',$seo_html_templet);
  201. if(!empty($seo_html_templet_arr[0])){
  202. $tpl = $seo_html_templet_arr[0];
  203. }
  204. $this->request->get(['m' => 'Index']); // 首页焦点
  205. $this->filePutContents($savepath, $tpl, 'pc', 0, '/', 0, 1, $result);
  206. if ($seo_html_position){
  207. @copy($savepath, $seo_html_position);
  208. @copy($savepath, './index.html');
  209. $msg .= "成功更新主页HTML:<a href='".$indexurl."' target='_blank' onclick='layer.closeAll();'>浏览...</a><br />";
  210. }else{
  211. $msg .= "成功更新主页HTML:".$savepath."<br /><a href='$savepath' target='_blank' onclick='layer.closeAll();'>浏览...</a><br />";
  212. }
  213. } catch (\Exception $e) {
  214. $msg .= '<span>index.html生成失败!' . $e->getMessage() . '</span><br>';
  215. }
  216. }else{
  217. @unlink('index.html');
  218. @unlink($savefilename);
  219. $msg .= "采用动态浏览模式:<a href='".$indexurl."' target='_blank' onclick='layer.closeAll();'>浏览...</a><br />";
  220. }
  221. return $msg;
  222. }
  223. /*
  224. * 写入静态页面
  225. */
  226. private function filePutContents($savepath, $tpl, $model = 'pc', $pages = 0, $dir = '/', $tid = 0, $top = 1, $result = [])
  227. {
  228. ob_start();
  229. static $templateConfig = null;
  230. null === $templateConfig && $templateConfig = \think\Config::get('template');
  231. $templateConfig['view_path'] = "./template/".TPL_THEME."pc/";
  232. $template = "./template/".TPL_THEME."{$model}/{$tpl}.{$templateConfig['view_suffix']}";
  233. $content = $this->fetch($template, [], [], $templateConfig);
  234. /*解决模板里没有设置编码的情况*/
  235. if (!stristr($content, 'utf-8')) {
  236. $content = str_ireplace('<head>', "<head>\n<meta charset='utf-8'>", $content);
  237. }
  238. /*end*/
  239. if ($pages > 0) {
  240. $page = "/<a(.*?)href(\s*)=(\s*)[\'|\"](.*?)page=([0-9]*)(.*?)data-ey_fc35fdc=[\'|\"]html[\'|\"](.*?)>/i";
  241. preg_match_all($page, $content, $matchpage);
  242. $dir = trim($dir, '.');
  243. $seo_html_listname = $this->eyou['global']['seo_html_listname'];
  244. foreach ($matchpage[0] as $key1 => $value1) {
  245. if ($matchpage[5][$key1] == 1) {
  246. if ($top == 1) {
  247. $url = $dir;
  248. } elseif ($top == 2) {
  249. $url = $dir . '/lists_' . $tid . '.html';
  250. } else {
  251. $url = $dir . '/lists_' . $tid . '.html';
  252. }
  253. } else {
  254. if ($seo_html_listname == 4) {
  255. if (!empty($result['rulelist'])) {
  256. if (!preg_match('/{page}/i', $result['rulelist'])) { // 没有分页变量的情况
  257. $rulelist_filename = '';
  258. } else {
  259. $rulelist = trim($result['rulelist'], '/');
  260. $rulelist_filename = preg_replace('/^((.*)\/)?([^\/]+)$/i', '${3}', $rulelist);
  261. $rulelist_filename = str_replace("{tid}", $tid, $rulelist_filename);
  262. $rulelist_filename = str_replace("{page}", $matchpage[5][$key1], $rulelist_filename);
  263. }
  264. $url = $dir;
  265. if (!empty($rulelist_filename)) {
  266. $url .= '/' . $rulelist_filename;
  267. }
  268. }else{
  269. $url = $dir . '/list_' . $tid . '_' . $matchpage[5][$key1] . '.html';
  270. }
  271. } else {
  272. $url = $dir . '/lists_' . $tid . '_' . $matchpage[5][$key1] . '.html';
  273. }
  274. }
  275. $url = ROOT_DIR . '/' . trim($url, '/');
  276. if (!preg_match('/^(.*)\.([^\/\.]+)$/i', $url)) {
  277. $url .= '/';
  278. }
  279. $value1_new = preg_replace('/href(\s*)=(\s*)[\'|\"]([^\'\"]*)[\'|\"]/i', '', $value1);
  280. $value1_new = str_replace('data-ey_fc35fdc=', " href=\"{$url}\" data-ey_fc35fdc=", $value1_new);
  281. $content = str_ireplace($value1, $value1_new, $content);
  282. }
  283. }
  284. $content = $this->pc_to_mobile_js($content, $result); // 生成静态模式下,自动加上PC端跳转移动端的JS代码
  285. echo $content;
  286. $_cache = ob_get_contents();
  287. ob_end_clean();
  288. static $File = null;
  289. null === $File && $File = new File;
  290. $savepath = $this->transcoding($savepath); //转码
  291. $File->fwrite($savepath, $_cache);
  292. }
  293. /**
  294. *文件名含有中文才转码
  295. *@param savepath 文件名
  296. */
  297. private function transcoding($savepath)
  298. {
  299. if (preg_match('/[\x{4e00}-\x{9fa5}]+/u', $savepath))
  300. {
  301. $encoding = mb_detect_encoding($savepath,['UTF-8','GBK','BIG5','CP936']);
  302. if (DIRECTORY_SEPARATOR == '/'){ //linux
  303. $savepath = iconv($encoding,'UTF-8',$savepath);
  304. }else{ //win
  305. $savepath = iconv($encoding,'GBK',$savepath);
  306. }
  307. }
  308. return $savepath;
  309. }
  310. /*
  311. * 生成文档静态页面
  312. */
  313. public function buildArticle()
  314. {
  315. function_exists('set_time_limit') && set_time_limit(0);
  316. \think\Session::pause(); // 暂停session,防止session阻塞机制
  317. $typeid = input("param.id/d", 0); // 栏目ID
  318. $findex = input("param.findex/d", 0);
  319. $achievepage = input("param.achieve/d", 0); // 已完成文档数
  320. if (empty($findex) && empty($achievepage)){
  321. $this->clearCache();
  322. }
  323. $data = $this->handelBuildArticleList($typeid, $findex, $achievepage,true,20);
  324. $this->success($data[0], null, $data[1]);
  325. }
  326. /*
  327. * 批量生成文档静态页面时候生成
  328. ** $typeid 栏目id
  329. * $aid 内容页id
  330. * $achievepage 已完成文档数
  331. * $batch 是否分批次执行,true:分批,false:不分批
  332. * limit 每次执行多少条数据
  333. * type 执行类型,0:aid指定的文档页,1:上一篇,2:下一篇
  334. */
  335. private function handelBuildArticleList($typeid, $nextid = 0, $achievepage = 0, $batch = true, $limit = 20)
  336. {
  337. !empty($this->eyou['global']['seo_pagesize']) && $limit = $this->eyou['global']['seo_pagesize'];
  338. $startid = 0;
  339. $endid = 0;
  340. $uphtmltype = input('param.uphtmltype/d');
  341. if (!empty($uphtmltype)) { // 更新选项/指定时间或者文档ID,最后都是转为以文档起始ID
  342. $startid = input('param.startid/d');
  343. empty($startid) && $startid = !empty($this->eyou['global']['seo_startid']) ? intval($this->eyou['global']['seo_startid']) : 0;
  344. $endid = !empty($this->eyou['global']['seo_endid']) ? intval($this->eyou['global']['seo_endid']) : 0;
  345. }
  346. $msg = "";
  347. $globalConfig = $this->eyou['global'];
  348. $result = $this->getArticleAidData($typeid,$startid,$endid);
  349. $aid_arr = $result['aid_arr'];
  350. $channel_arr = $result['channel_arr'];
  351. $allAttrInfo = getAllAttrInfo($channel_arr);
  352. $allTags = $result['allTags'];
  353. $has_children_Row = $result['has_children_Row'];
  354. $data['allpagetotal'] = $pagetotal = $result['pagetotal'];
  355. $data['achievepage'] = $achievepage;
  356. $data['pagetotal'] = 0;
  357. if ($batch && $pagetotal > $achievepage) {
  358. while ($limit && isset($aid_arr[$nextid])) {
  359. $archives = getAllArchives($this->home_lang, 0, $aid_arr[$nextid]);
  360. try{
  361. $row = $archives['info'][0];
  362. $arctypeRow = $archives['arctypeRow'];
  363. $attrInfo = getOneAttrInfo($allAttrInfo, $aid_arr[$nextid]);
  364. $msg .= $msg_temp = $this->createArticle($row, $globalConfig, $arctypeRow, $allTags, $has_children_Row, $attrInfo);
  365. }catch (\Exception $e){}
  366. $data['achievepage'] += 1;
  367. $limit--;
  368. $nextid++;
  369. }
  370. $data['findex'] = $nextid;
  371. } else if (!$batch) {
  372. foreach ($aid_arr as $key => $val) {
  373. $archives = getAllArchives($this->home_lang, 0, $val);
  374. $row = $archives['info'][0];
  375. $arctypeRow = $archives['arctypeRow'];
  376. $attrInfo = getOneAttrInfo($allAttrInfo, $val);
  377. $msg .= $msg_temp = $this->createArticle($row, $globalConfig, $arctypeRow, $allTags, $has_children_Row, $attrInfo);
  378. $data['achievepage'] += 1;
  379. $data['findex'] = $key;
  380. }
  381. }
  382. if ($data['allpagetotal'] == $data['achievepage']) { //生成完全部页面,删除缓存
  383. cache("aid_arr_serialize".$this->php_sessid, null);
  384. cache("channel_arr_serialize".$this->php_sessid, null);
  385. cache("article_page_total_serialize".$this->php_sessid, null);
  386. cache("article_tags_serialize".$this->php_sessid, null);
  387. cache("article_attr_info_serialize".$this->php_sessid, null);
  388. cache("article_children_row_serialize".$this->php_sessid, null);
  389. }
  390. return [$msg, $data];
  391. }
  392. /*
  393. * 获取所有需要生成静态的文档页面aid集合及相关信息
  394. * $typeid 栏目id,0:表示生成全部
  395. * $startid 起始ID(空或0表示从头开始)
  396. * $endid 结束ID(空或0表示直到结束ID)
  397. */
  398. private function getArticleAidData($typeid = 0,$startid = 0,$endid = 0){
  399. $aid_arr_serialize = cache("aid_arr_serialize".$this->php_sessid);
  400. if (empty($aid_arr_serialize)){
  401. $archivesArr = getAllArchivesAid($typeid, $this->home_lang,$startid,$endid);
  402. $aid_arr = $archivesArr['aid_arr'];
  403. $channel_arr = $archivesArr['channel_arr'];
  404. $pagetotal = count($aid_arr);
  405. $allTags = getAllTags();
  406. /*获取所有栏目是否有子栏目的数组*/
  407. $has_children_Row = Db::name('Arctype')->field('parent_id, count(id) AS total')->where([
  408. 'current_channel'=>['neq', 51], // 过滤问答模型
  409. 'is_del' => 0,
  410. ])->group('parent_id')->getAllWithIndex('parent_id');
  411. cache("aid_arr_serialize".$this->php_sessid, serialize($aid_arr), null, 'buildhtml');
  412. cache("channel_arr_serialize".$this->php_sessid, serialize($channel_arr), null, 'buildhtml');
  413. cache("article_page_total_serialize".$this->php_sessid, $pagetotal, null, 'buildhtml');
  414. cache("article_tags_serialize".$this->php_sessid, serialize($allTags), null, 'buildhtml');
  415. cache("article_children_row_serialize".$this->php_sessid, serialize($has_children_Row), null, 'buildhtml');
  416. }else{
  417. $aid_arr = unserialize($aid_arr_serialize);
  418. $channel_arr = cache("channel_arr_serialize".$this->php_sessid);
  419. $channel_arr = unserialize($channel_arr);
  420. $pagetotal = cache("article_page_total_serialize".$this->php_sessid);
  421. $allTags = unserialize(cache("article_tags_serialize".$this->php_sessid));
  422. $has_children_Row = unserialize(cache("article_children_row_serialize".$this->php_sessid));
  423. }
  424. return [
  425. 'aid_arr' => $aid_arr,
  426. 'channel_arr' => $channel_arr,
  427. 'pagetotal' => $pagetotal,
  428. 'allTags' => $allTags,
  429. 'has_children_Row' => $has_children_Row
  430. ];
  431. }
  432. /**
  433. * 获取所有详情页数据
  434. * $typeid 栏目id
  435. * $aid 文章id
  436. * $type 类型,0:aid指定的内容,1:上一篇,2:下一篇
  437. */
  438. private function getArticleData($typeid, $aid, $type = 0)
  439. {
  440. $info_serialize = cache("article_info_serialize".$this->php_sessid);
  441. if (empty($info_serialize)) {
  442. if ($type == 0) {
  443. $data = getAllArchives($this->home_lang, $typeid, $aid);
  444. } else if ($type == 1) {
  445. $data = getPreviousArchives($this->home_lang, $typeid, $aid);
  446. } else if ($type == 2) {
  447. $data = getNextArchives($this->home_lang, $typeid, $aid);
  448. }
  449. $info = $data['info'];
  450. $aid_arr = $typeid_arr = $channel_arr = [];
  451. foreach ($info as $key => $val) {
  452. $aid_arr[] = $val['aid'];
  453. $typeid_arr[] = $val['typeid'];
  454. $channel_arr[$val['channel']][] = $val['aid'];
  455. }
  456. $pagetotal = count($info);
  457. $allTags = getAllTags($aid_arr);
  458. $allAttrInfo = getAllAttrInfo($channel_arr);
  459. /*获取所有栏目是否有子栏目的数组*/
  460. $has_children_Row = model('Arctype')->hasChildren($typeid_arr);
  461. cache("article_info_serialize".$this->php_sessid, serialize($data), null, 'buildhtml');
  462. cache("article_page_total_serialize".$this->php_sessid, $pagetotal, null, 'buildhtml');
  463. cache("article_tags_serialize".$this->php_sessid, serialize($allTags), null, 'buildhtml');
  464. cache("article_attr_info_serialize".$this->php_sessid, serialize($allAttrInfo), null, 'buildhtml');
  465. cache("article_children_row_serialize".$this->php_sessid, serialize($has_children_Row), null, 'buildhtml');
  466. } else {
  467. $data = unserialize($info_serialize);
  468. $pagetotal = cache("article_page_total_serialize".$this->php_sessid);
  469. $allTags = unserialize(cache("article_tags_serialize".$this->php_sessid));
  470. $allAttrInfo = unserialize(cache("article_attr_info_serialize".$this->php_sessid));
  471. $has_children_Row = unserialize(cache("article_children_row_serialize".$this->php_sessid));
  472. }
  473. return ['data' => $data, 'pagetotal' => $pagetotal, 'allTags' => $allTags, 'allAttrInfo' => $allAttrInfo, 'has_children_Row' => $has_children_Row];
  474. }
  475. /**
  476. * 更新文档内容时候生成处理生成内容页
  477. * $typeid 栏目id
  478. * $aid 内容页id
  479. * $findex 下一次执行栏目id
  480. * $achievepage 已完成文档数
  481. * $batch 是否分批次执行,true:分批,false:不分批
  482. * limit 每次执行多少条数据
  483. * type 执行类型,0:aid指定的文档页,1:上一篇,2:下一篇
  484. *
  485. */
  486. private function handelBuildArticle($typeid, $aid = 0, $nextid = 0, $achievepage = 0, $batch = true, $limit = 20, $type = 0)
  487. {
  488. $msg = "";
  489. $globalConfig = $this->eyou['global'];
  490. $result = $this->getArticleData($typeid, $aid, $type);
  491. $info = $result['data']['info'];
  492. $arctypeRow = $result['data']['arctypeRow'];
  493. $allTags = $result['allTags'];
  494. $has_children_Row = $result['has_children_Row'];
  495. $allAttrInfo = $result['allAttrInfo'];
  496. $data['allpagetotal'] = $pagetotal = $result['pagetotal'];
  497. $data['achievepage'] = $achievepage;
  498. $data['pagetotal'] = 0;
  499. if ($batch && $pagetotal > $achievepage) {
  500. while ($limit && isset($info[$nextid])) {
  501. $row = $info[$nextid];
  502. $msg .= $msg_temp = $this->createArticle($row, $globalConfig, $arctypeRow, $allTags, $has_children_Row, $allAttrInfo);
  503. $data['achievepage'] += 1;
  504. $limit--;
  505. $nextid++;
  506. }
  507. $data['findex'] = $nextid;
  508. } else if (!$batch) {
  509. foreach ($info as $key => $row) {
  510. $msg .= $msg_temp = $this->createArticle($row, $globalConfig, $arctypeRow, $allTags, $has_children_Row, $allAttrInfo);
  511. $data['achievepage'] += 1;
  512. $data['findex'] = $key;
  513. }
  514. }
  515. if ($data['allpagetotal'] == $data['achievepage']) { //生成完全部页面,删除缓存
  516. cache("article_info_serialize".$this->php_sessid, null);
  517. cache("article_page_total_serialize".$this->php_sessid, null);
  518. cache("article_tags_serialize".$this->php_sessid, null);
  519. cache("article_attr_info_serialize".$this->php_sessid, null);
  520. cache("article_children_row_serialize".$this->php_sessid, null);
  521. }
  522. return [$msg, $data];
  523. }
  524. /*
  525. * 生成详情页静态页面
  526. */
  527. private function createArticle($result, $globalConfig, $arctypeRow, $allTags, $has_children_Row, $allAttrInfo)
  528. {
  529. $msg = "";
  530. $aid = $result['aid'];
  531. static $arc_seo_description_length = null;
  532. null === $arc_seo_description_length && $arc_seo_description_length = config('global.arc_seo_description_length');
  533. $this->request->get(['aid' => $aid]); // post
  534. $this->request->get(['tid' => $result['typeid']]); // post
  535. $arctypeInfo = $arctypeRow[$result['typeid']];
  536. /*排除文档模型与栏目模型对不上的文档 \ 问答模型 \ 外部链接跳转 | 阅读权限限制的文档*/
  537. if (empty($result) || $arctypeInfo['current_channel'] != $result['channel'] || 51 == $result['channel'] || (!empty($result['arcrank']) && $result['arcrank'] >0) || (!empty($arctypeInfo['typearcrank']) && $arctypeInfo['typearcrank'] > 0)) {
  538. return false;
  539. }
  540. /*--end*/
  541. $arctypeInfo = model('Arctype')->parentAndTopInfo($result['typeid'], $arctypeInfo);
  542. /*自定义字段的数据格式处理*/
  543. $arctypeInfo = $this->fieldLogic->getTableFieldList($arctypeInfo, config('global.arctype_channel_id'));
  544. /*是否有子栏目,用于标记【全部】选中状态*/
  545. $arctypeInfo['has_children'] = !empty($has_children_Row[$result['typeid']]) ? 1 : 0;
  546. /*--end*/
  547. // 文档模板文件,不指定文档模板,默认以栏目设置的为主
  548. empty($result['tempview']) && $result['tempview'] = $arctypeInfo['tempview'];
  549. /*给没有type前缀的字段新增一个带前缀的字段,并赋予相同的值*/
  550. foreach ($arctypeInfo as $key => $val) {
  551. if (!preg_match('/^type/i', $key)) {
  552. $key_new = 'type' . $key;
  553. !array_key_exists($key_new, $arctypeInfo) && $arctypeInfo[$key_new] = $val;
  554. }
  555. }
  556. /*--end*/
  557. $result = array_merge($arctypeInfo, $result);
  558. // 获取当前页面URL
  559. $result['arcurl'] = $result['pageurl'] = $result['pageurl_m'] = '';
  560. if ($result['is_jump'] != 1) {
  561. $result['arcurl'] = $result['pageurl'] = arcurl('home/View/index', $result, true, true);
  562. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl'], $result['typeid'], $result['aid']); // 获取当前页面对应的移动端URL
  563. }
  564. /*--end*/
  565. // 移动端域名
  566. $result['mobile_domain'] = '';
  567. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  568. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  569. }
  570. $result['seo_title'] = set_arcseotitle($result['title'], $result['seo_title'], $result['typename'], $result['typeid'], $this->eyou['site']);
  571. $result['seo_description'] = checkStrHtml($result['seo_description']);
  572. $result['tags'] = empty($allTags[$aid]) ? '' : implode(',', $allTags[$aid]);
  573. $result['litpic'] = handle_subdir_pic($result['litpic']); // 支持子目录
  574. $result = view_logic($aid, $result['channel'], $result, $allAttrInfo); // 模型对应逻辑
  575. $result = $this->fieldLogic->getChannelFieldList($result, $result['channel']); // 自定义字段的数据格式处理
  576. if (!empty($result['users_id'])){
  577. $users_where['a.users_id'] = $result['users_id'];
  578. }elseif (!empty($result['admin_id'])){
  579. $users_where['a.admin_id'] = $result['admin_id'];
  580. }else {
  581. $users_where['a.admin_id'] = ['>',0];
  582. }
  583. $users = Db::name('users')->alias('a')->field('a.username,a.nickname,a.head_pic,b.level_name,b.level_value')->where($users_where)->join('users_level b','a.level = b.level_id','left')->find();
  584. if (!empty($users)) {
  585. $users['head_pic'] = get_default_pic($users['head_pic']);
  586. empty($users['nickname']) && $users['nickname'] = $users['username'];
  587. }
  588. $eyou = array(
  589. 'type' => $arctypeInfo,
  590. 'field' => $result,
  591. 'users' => $users,
  592. );
  593. $this->eyou = array_merge($this->eyou, $eyou);
  594. $this->assign('eyou', $this->eyou);
  595. // 模板文件
  596. $tpl = '';
  597. if (!empty($result['tempview']) && file_exists("./template/".TPL_THEME."pc/{$result['tempview']}")) {
  598. $tpl = str_replace('.' . $this->view_suffix, '', $result['tempview']);
  599. } else {
  600. $tpl = 'view_' . $result['nid'];
  601. }
  602. $dir = $this->buildhtmlLogic->getArticleDir($result);
  603. if (!empty($result['htmlfilename'])) {
  604. $aid = $result['htmlfilename'];
  605. }
  606. if (4 == $this->eyou['global']['seo_html_pagename']) {
  607. if (!empty($result['ruleview'])) {
  608. $savepath = $dir;
  609. }else{
  610. $savepath = $dir . '/' . $aid . '.html';
  611. }
  612. } else {
  613. $savepath = $dir . '/' . $aid . '.html';
  614. }
  615. try {
  616. $this->filePutContents($savepath, $tpl, 'pc', 0, '/', 0, 1, $result);
  617. } catch (\Exception $e) {
  618. $msg .= '<span>' . $savepath . '生成失败!' . $e->getMessage() . '</span><br>';
  619. }
  620. return $msg;
  621. }
  622. /*
  623. * 生成栏目静态页面
  624. * $id tpyeid 栏目id
  625. * $findex 下一次执行栏目id
  626. * $achievepage 已完成页数
  627. *$batch 是否分批次执行,true:分批,false:不分批
  628. *
  629. */
  630. public function buildChannel()
  631. {
  632. function_exists('set_time_limit') && set_time_limit(0);
  633. \think\Session::pause(); // 暂停session,防止session阻塞机制
  634. $id = input("param.id/d", 0); // 选中栏目ID(需要生成静态的栏目,需要生成全部时候为0)
  635. $findex = input("param.findex/d", 0); //栏目下标
  636. $index = input("param.index/d", 0); //本栏目本次执行下标
  637. $achievepage = input("param.achieve/d", 0); //已经执行完成的条数
  638. $type_index = input("param.type_index/d", 0); //指定时间或者指定ID更新模式下,栏目集合的下标
  639. $parent = true;
  640. if (empty($findex) && empty($achievepage)){
  641. $this->clearCache();
  642. }
  643. // 指定文档后,生成的相关栏目
  644. $uphtmltype = input('param.uphtmltype/d');
  645. if (!empty($uphtmltype)) {
  646. $typeids = input("param.typeids/s");
  647. $counts = input("param.counts/s");
  648. $typeid_arr = explode(',', $typeids);
  649. $count_arr = explode(',', $counts);
  650. $id = $typeid_arr[$type_index];
  651. $count = $count_arr[$type_index]; //预计本栏目的页数
  652. $findex = 0;
  653. $parent = false;
  654. }
  655. $data = $this->handleBuildChannelList($id, $findex, $achievepage,true,$parent,$index);
  656. $result = $data[1];
  657. if (!empty($uphtmltype)){
  658. $result['type_index'] = $type_index;
  659. $result['achievepage'] = 0;
  660. if ($result['findex'] > 0){ //上一个栏目执行完成,执行下一个
  661. $result['type_index'] += 1;
  662. $result['achievepage'] = intval($count);
  663. }
  664. $result['uphtmltype'] = $uphtmltype;
  665. }
  666. $this->success($data[0], null,$result);
  667. }
  668. /*
  669. * 获取栏目数据
  670. * $id 栏目id
  671. * $parent 是否获取下级栏目 true:获取,false:不获取
  672. */
  673. private function getChannelData($id, $parent = true, $aid = 0)
  674. {
  675. $info_serialize = cache("channel_info_serialize".$this->php_sessid);
  676. if (empty($info_serialize)) {
  677. $result = getAllArctype($this->home_lang, $id, $this->view_suffix, $parent, $aid);
  678. $info = $result["info"];
  679. $pagetotal = intval($result["pagetotal"]);
  680. $has_children_Row = model('Arctype')->hasChildren(get_arr_column($info, 'typeid'));
  681. /***********2020 05 19 过滤并删除外部链接生成的静态页面 本操作内容已经放置到common=>getAllArctypeCount方法处理 *************/
  682. // $seo_upnext = !empty($this->eyou['global']['seo_upnext']) ? true : false; // 是否更新子栏目
  683. // foreach ($info as $k => $v) {
  684. // if (empty($seo_upnext)) {
  685. // if (!empty($id) && $id != $v['typeid']) { // 指定栏目ID生成
  686. // unset($info[$k]);
  687. // continue;
  688. // } else if (empty($id) && !empty($v['parent_id'])) { // 全部生成栏目
  689. // unset($info[$k]);
  690. // continue;
  691. // }
  692. // }
  693. // if ($v['is_part'] == 1 || $v['nid'] == 'ask') {//外部链接或问答模型
  694. // unset($info[$k]);//从数组里移除
  695. // $dir = ROOT_PATH . trim($v['dirpath'], '/');
  696. // if (!empty($v['dirpath']) && true == is_dir($dir)) {//判断是否生成过文件夹,文件夹存在则删除
  697. // $this->deldir($dir);
  698. // }
  699. // }
  700. // }
  701. // $info = array_values($info);//重组数组
  702. /***********2020 05 19 新增 e*************/
  703. cache("channel_page_total_serialize".$this->php_sessid, $pagetotal, null, 'buildhtml');
  704. cache("channel_info_serialize".$this->php_sessid, serialize($info), null, 'buildhtml');
  705. cache("has_children_Row_serialize".$this->php_sessid, serialize($has_children_Row), null, 'buildhtml');
  706. } else {
  707. $info = unserialize($info_serialize);
  708. $pagetotal = cache("channel_page_total_serialize".$this->php_sessid);
  709. $has_children_Row = unserialize(cache("has_children_Row_serialize".$this->php_sessid));
  710. }
  711. return ['info' => $info, 'pagetotal' => $pagetotal, 'has_children_Row' => $has_children_Row];
  712. }
  713. /*
  714. * 处理生成栏目页
  715. * $id 栏目id
  716. * $findex 本次次执行栏目id
  717. * $achievepage 已完成页数
  718. * $batch 是否分批次执行,true:分批,false:不分批
  719. * $parent 是否获取下级栏目 true:获取,false:不获取
  720. * $index 本栏目本次执行第一条下标
  721. * $limit 单个栏目一次执行最多生成页数
  722. */
  723. private function handleBuildChannelList($id, $findex = 0, $achievepage = 0, $batch = true, $parent = true,$index = 0, $limit = 50){
  724. !empty($this->eyou['global']['seo_maxpagesize']) && $limit = $this->eyou['global']['seo_maxpagesize'];
  725. $msg = '';
  726. $result = $this->getChannelData($id, $parent);
  727. $info = $result['info'];
  728. $has_children_Row = $result['has_children_Row'];
  729. $data['allpagetotal'] = $pagetotal = $result['pagetotal'];
  730. $data['achievepage'] = $achievepage;
  731. $data['index'] = 0;
  732. $data['findex'] = $findex;
  733. $data['pagetotal'] = 1;
  734. $data['typeid'] = 0;
  735. $data['typename'] = "";
  736. $info = array_values($info);//重组数组
  737. if ($batch && $data['allpagetotal'] > $data['achievepage']) {
  738. $row = !empty($info[$findex]) ? $info[$findex] : [];
  739. if (!empty($row)){
  740. list($msg_temp,$return_data) = $this->createChannelList($row, $has_children_Row,$index,$limit);
  741. $msg .= $msg_temp;
  742. $data['achievepage'] += !empty($return_data['achieve']) ? $return_data['achieve'] : 1;
  743. $data['index'] = !empty($return_data['index']) ? $return_data['index'] : 0;
  744. if (empty($return_data['index'])){
  745. $data['findex'] = $findex + 1;
  746. }else{
  747. $data['findex'] = $findex ;
  748. }
  749. }else{
  750. $data['findex'] = $findex + 1;
  751. }
  752. $data['pagetotal'] = !empty($row['pagetotal']) ? $row['pagetotal'] : 1;
  753. $data['typeid'] = !empty($row['typeid']) ? $row['typeid'] : 0;
  754. $data['typename'] = !empty($row['typename']) ? $row['typename'] :"";
  755. } else if (!$batch) {
  756. foreach ($info as $key => $row) {
  757. $msg .= $this->createChannel($row, $has_children_Row);
  758. $data['pagetotal'] = $row['pagetotal'];
  759. $data['achievepage'] += $row['pagetotal'];
  760. $data['findex'] = $key;
  761. $data['typeid'] = !empty($row['typeid']) ? $row['typeid'] : 0;
  762. $data['typename'] = !empty($row['typename']) ? $row['typename'] :"";
  763. }
  764. }
  765. if ($data['allpagetotal'] == $data['achievepage']) { //生成完全部页面,删除缓存
  766. cache("channel_page_total_serialize".$this->php_sessid, null);
  767. cache("channel_info_serialize".$this->php_sessid, null);
  768. cache("has_children_Row_serialize".$this->php_sessid, null);
  769. }
  770. return [$msg, $data];
  771. }
  772. /*
  773. * 处理生成栏目页
  774. * $id typeid
  775. * $findex 下一次执行栏目id
  776. * $achievepage 已完成页数
  777. * $batch 是否分批次执行,true:分批,false:不分批
  778. * $parent 是否获取下级栏目 true:获取,false:不获取
  779. * $aid 文章页id,不等于0时,表示只获取文章页所在的列表页重新生成静态(在添加或者编辑文档内容时使用)
  780. */
  781. private function handleBuildChannel($id, $findex = 0, $achievepage = 0, $batch = true, $parent = true, $aid = 0)
  782. {
  783. $msg = '';
  784. $result = $this->getChannelData($id, $parent, $aid);
  785. $info = $result['info'];
  786. $has_children_Row = $result['has_children_Row'];
  787. $data['allpagetotal'] = $pagetotal = $result['pagetotal'];
  788. $data['achievepage'] = $achievepage;
  789. /***********2020 05 19 过滤并删除外部链接生成的静态页面 s*************/
  790. // foreach ($info as $k => $v) {
  791. // if ($v['is_part'] == 1 || $v['nid'] == 'ask') {//外部链接或问答模型
  792. // unset($info[$k]);//从数组里移除
  793. // $dir = ROOT_PATH . trim($v['dirpath'], '/');
  794. // if (!empty($v['dirpath']) && true == is_dir($dir)) {//判断是否生成过文件夹,文件夹存在则删除
  795. // $this->deldir($dir);
  796. // }
  797. // }
  798. // }
  799. // $info = array_values($info);//重组数组
  800. /***********2020 05 19 新增 e*************/
  801. if ($batch && $data['allpagetotal'] > $data['achievepage']) {
  802. $row = !empty($info[$findex]) ? $info[$findex] : [];
  803. !empty($row) && $msg .= $msg_temp = $this->createChannel($row, $has_children_Row);
  804. $data['pagetotal'] = !empty($row['pagetotal']) ? $row['pagetotal'] : 1;
  805. $data['achievepage'] += !empty($row['pagetotal']) ? $row['pagetotal'] : 1;
  806. $data['findex'] = $findex + 1;
  807. $data['typeid'] = !empty($row['typeid']) ? $row['typeid'] : 0;
  808. } else if (!$batch) {
  809. foreach ($info as $key => $row) {
  810. $msg .= $msg_temp = $this->createChannel($row, $has_children_Row, $aid);
  811. $data['pagetotal'] = $row['pagetotal'];
  812. $data['achievepage'] += $row['pagetotal'];
  813. $data['findex'] = $key;
  814. $data['typeid'] = !empty($row['typeid']) ? $row['typeid'] : 0;
  815. }
  816. }
  817. if ($data['allpagetotal'] == $data['achievepage']) { //生成完全部页面,删除缓存
  818. cache("channel_page_total_serialize".$this->php_sessid, null);
  819. cache("channel_info_serialize".$this->php_sessid, null);
  820. cache("has_children_Row_serialize".$this->php_sessid, null);
  821. }
  822. return [$msg, $data];
  823. }
  824. /*
  825. * 分批生成栏目页面
  826. * $index 当前执行的页码下标
  827. * $limit 每次最多生成个数
  828. */
  829. private function createChannelList($row, $has_children_Row,$index = 0, $limit = 10)
  830. {
  831. $msg = "";
  832. $data = [
  833. 'achieve' => 0,
  834. 'index' => 0
  835. ];
  836. $seo_html_listname = $this->eyou['global']['seo_html_listname'];
  837. $seo_html_arcdir = $this->eyou['global']['seo_html_arcdir'];
  838. $tid = $row['typeid'];
  839. $this->request->get(['tid' => $tid]); // post
  840. $row = $this->lists_logic($row, $has_children_Row); // 模型对应逻辑
  841. $eyou = array(
  842. 'field' => $row,
  843. );
  844. $this->eyou = array_merge($this->eyou, $eyou);
  845. $this->assign('eyou', $this->eyou);
  846. // 模板文件
  847. $tpl = '';
  848. if (!empty($row['templist']) && file_exists("./template/".TPL_THEME."pc/{$row['templist']}")) {
  849. $tpl = str_replace('.' . $this->view_suffix, '', $row['templist']);
  850. } else {
  851. $tpl = 'lists_' . $row['nid'];
  852. }
  853. if (in_array($row['current_channel'], [6, 8])) { //留言模型或单页模型,不存在多页
  854. $this->request->get(['page' => '']);
  855. $dirpath = explode('/', $eyou['field']['dirpath']);
  856. $dirpath_end = end($dirpath);
  857. if ($seo_html_listname == 1) { //存放顶级目录
  858. $savepath = '.' . $seo_html_arcdir . '/' . $dirpath[1] . "/lists_" . $eyou['field']['typeid'] . ".html";
  859. } else if ($seo_html_listname == 3) { //存放子级目录
  860. $savepath = '.' . $seo_html_arcdir . '/' . $dirpath_end . "/lists_" . $eyou['field']['typeid'] . ".html";
  861. } else if ($seo_html_listname == 4) { //自定义存放目录
  862. $savepath = '.' . $seo_html_arcdir;
  863. $diy_dirpath = !empty($eyou['field']['diy_dirpath']) ? $eyou['field']['diy_dirpath'] : '';
  864. if (!empty($eyou['field']['rulelist'])) {
  865. $rulelist = ltrim($eyou['field']['rulelist'], '/');
  866. $rulelist = str_replace("{tid}", $eyou['field']['typeid'], $rulelist);
  867. $rulelist = str_replace("{page}", '', $rulelist);
  868. $rulelist = preg_replace('/{(栏目目录|typedir)}(\/?)/i', $diy_dirpath.'/', $rulelist);
  869. $rulelist = '/'.ltrim($rulelist, '/');
  870. $rulelist = preg_replace('/([\/]+)/i', '/', $rulelist);
  871. $savepath .= $rulelist;
  872. }else{
  873. $eyou['field']['rulelist'] = '{栏目目录}/list_{tid}_{page}.html';
  874. $savepath .= $diy_dirpath . '/' . 'list_' . $eyou['field']['typeid'] . ".html";
  875. }
  876. } else {
  877. $savepath = '.' . $seo_html_arcdir . $eyou['field']['dirpath'] . '/' . 'lists_' . $eyou['field']['typeid'] . ".html";
  878. }
  879. try {
  880. $this->filePutContents($savepath, $tpl, 'pc', 0, '/', 0, 1, $row);
  881. if ($seo_html_listname == 3) {
  882. @copy($savepath, '.' . $seo_html_arcdir . '/' . $dirpath_end . '/index.html');
  883. @unlink($savepath);
  884. } else if ($seo_html_listname == 4) {
  885. if (preg_match('/^{(栏目目录|typedir)}\/list_{tid}_{page}\.html$/i', $eyou['field']['rulelist'])) {
  886. $dst_savepath = preg_replace('/\/([^\/]+)$/i', '/index.html', $savepath);
  887. @copy($savepath, $dst_savepath);
  888. @unlink($savepath);
  889. }
  890. } else if ($seo_html_listname == 2 || count($dirpath) < 3) {
  891. @copy($savepath, '.' . $seo_html_arcdir . $eyou['field']['dirpath'] . '/index.html');
  892. @unlink($savepath);
  893. }
  894. } catch (\Exception $e) {
  895. $msg .= '<span>' . $savepath . '生成失败!' . $e->getMessage() . '</span><br>';
  896. }
  897. $data['achieve'] += 1;
  898. }else { //多条信息的栏目
  899. $totalpage = $row['pagetotal'];
  900. $lastPage = cache("eyou-TagList-lastPage_".md5("{$tid}_{$this->php_sessid}")); //本栏目真实条数
  901. $differ = 0; //实际页数和预计页数的差集
  902. while ($limit && $totalpage > $index) {
  903. $msg .= $this->createMultipageChannel($index+1, $tid, $row, $has_children_Row, $seo_html_listname, $seo_html_arcdir, $tpl);
  904. $limit--;
  905. $index++;
  906. $data['achieve'] += 1;
  907. if (!empty($lastPage)) {
  908. if ($totalpage > $lastPage) {
  909. $differ = $totalpage - $lastPage;
  910. $totalpage = $lastPage;
  911. }
  912. }
  913. }
  914. if ($totalpage <= $index){ //已经执行完成本栏目
  915. $data['index'] = 0;
  916. $data['achieve'] += $differ;
  917. }else{
  918. $data['index'] = $index;
  919. }
  920. }
  921. return [$msg,$data];
  922. }
  923. /*
  924. * 生成栏目页面
  925. */
  926. private function createChannel($row, $has_children_Row, $aid = 0)
  927. {
  928. $msg = "";
  929. $seo_html_listname = $this->eyou['global']['seo_html_listname'];
  930. $seo_html_arcdir = $this->eyou['global']['seo_html_arcdir'];
  931. $tid = $row['typeid'];
  932. $this->request->get(['tid' => $tid]); // post
  933. $row = $this->lists_logic($row, $has_children_Row); // 模型对应逻辑
  934. $eyou = array(
  935. 'field' => $row,
  936. );
  937. $this->eyou = array_merge($this->eyou, $eyou);
  938. $this->assign('eyou', $this->eyou);
  939. // 模板文件
  940. $tpl = '';
  941. if (!empty($row['templist']) && file_exists("./template/".TPL_THEME."pc/{$row['templist']}")) {
  942. $tpl = str_replace('.' . $this->view_suffix, '', $row['templist']);
  943. } else {
  944. $tpl = 'lists_' . $row['nid'];
  945. }
  946. if (in_array($row['current_channel'], [6, 8])) { //留言模型或单页模型,不存在多页
  947. $this->request->get(['page' => '']);
  948. $dirpath = explode('/', $eyou['field']['dirpath']);
  949. $dirpath_end = end($dirpath);
  950. if ($seo_html_listname == 1) { //存放顶级目录
  951. $savepath = '.' . $seo_html_arcdir . '/' . $dirpath[1] . "/lists_" . $eyou['field']['typeid'] . ".html";
  952. } else if ($seo_html_listname == 3) { //存放子级目录
  953. $savepath = '.' . $seo_html_arcdir . '/' . $dirpath_end . "/lists_" . $eyou['field']['typeid'] . ".html";
  954. } else if ($seo_html_listname == 4) { //自定义存放目录
  955. $savepath = '.' . $seo_html_arcdir;
  956. $diy_dirpath = !empty($eyou['field']['diy_dirpath']) ? $eyou['field']['diy_dirpath'] : '';
  957. if (!empty($eyou['field']['rulelist'])) {
  958. $rulelist = ltrim($eyou['field']['rulelist'], '/');
  959. $rulelist = str_replace("{tid}", $eyou['field']['typeid'], $rulelist);
  960. $rulelist = str_replace("{page}", '', $rulelist);
  961. $rulelist = preg_replace('/{(栏目目录|typedir)}(\/?)/i', $diy_dirpath.'/', $rulelist);
  962. $rulelist = '/'.ltrim($rulelist, '/');
  963. $rulelist = preg_replace('/([\/]+)/i', '/', $rulelist);
  964. $savepath .= $rulelist;
  965. }else{
  966. $eyou['field']['rulelist'] = '{栏目目录}/lists_{tid}_{page}.html';
  967. $savepath .= $diy_dirpath . '/' . 'list_' . $eyou['field']['typeid'] . ".html";
  968. }
  969. } else {
  970. $savepath = '.' . $seo_html_arcdir . $eyou['field']['dirpath'] . '/' . 'lists_' . $eyou['field']['typeid'] . ".html";
  971. }
  972. try {
  973. $this->filePutContents($savepath, $tpl, 'pc', 0, '/', 0, 1, $row);
  974. if ($seo_html_listname == 3) {
  975. @copy($savepath, '.' . $seo_html_arcdir . '/' . $dirpath_end . '/index.html');
  976. @unlink($savepath);
  977. } else if ($seo_html_listname == 4) {
  978. if (preg_match('/^{(栏目目录|typedir)}\/list_{tid}_{page}\.html$/i', $eyou['field']['rulelist'])) {
  979. $dst_savepath = preg_replace('/\/([^\/]+)$/i', '/index.html', $savepath);
  980. @copy($savepath, $dst_savepath);
  981. @unlink($savepath);
  982. }
  983. } else if ($seo_html_listname == 2 || count($dirpath) < 3) {
  984. @copy($savepath, '.' . $seo_html_arcdir . $eyou['field']['dirpath'] . '/index.html');
  985. @unlink($savepath);
  986. }
  987. } catch (\Exception $e) {
  988. $msg .= '<span>' . $savepath . '生成失败!' . $e->getMessage() . '</span><br>';
  989. }
  990. } else if (!empty($aid)) { //只更新aid所在的栏目页码
  991. $orderby = getOrderBy($row['orderby'], $row['ordermode']);
  992. $limit = getLocationPages($tid, $aid, $orderby);
  993. $i = !empty($limit) ? ceil($limit / $row['pagesize']) : 1;
  994. $msg .= $this->createMultipageChannel($i, $tid, $row, $has_children_Row, $seo_html_listname, $seo_html_arcdir, $tpl);
  995. } else { //多条信息的栏目
  996. $totalpage = $row['pagetotal'];
  997. for ($i = 1; $i <= $totalpage; $i++) {
  998. $msg .= $this->createMultipageChannel($i, $tid, $row, $has_children_Row, $seo_html_listname, $seo_html_arcdir, $tpl);
  999. $lastPage = cache("eyou-TagList-lastPage_".md5("{$tid}_{$this->php_sessid}"));
  1000. if (!empty($lastPage)) {
  1001. $totalpage = $lastPage;
  1002. }
  1003. }
  1004. }
  1005. return $msg;
  1006. }
  1007. /*
  1008. * 创建有文档列表模型的静态栏目页面
  1009. */
  1010. private function createMultipageChannel($i, $tid, $row, $has_children_Row, $seo_html_listname, $seo_html_arcdir, $tpl)
  1011. {
  1012. $msg = "";
  1013. $this->request->get(['page' => $i]);
  1014. $row['seo_title'] = set_typeseotitle($row['typename'], $row['seo_title_tmp'], $this->eyou['site']);
  1015. // $row = $this->lists_logic($row, $has_children_Row); // 模型对应逻辑
  1016. $row['pageurl'] = get_list_only_pageurl($row['pageurl'], $row['typeid'], $row['rulelist'], $i);
  1017. $eyou = array(
  1018. 'field' => $row,
  1019. );
  1020. $this->eyou = array_merge($this->eyou, $eyou);
  1021. $this->assign('eyou', $this->eyou);
  1022. $dirpath = explode('/', $eyou['field']['dirpath']);
  1023. $dirpath_end = end($dirpath);
  1024. if ($seo_html_listname == 1) { //存放顶级目录
  1025. $dir = '.' . $seo_html_arcdir . '/' . $dirpath[1];
  1026. $savepath = '.' . $seo_html_arcdir . '/' . $dirpath[1] . "/lists_" . $eyou['field']['typeid'];
  1027. } else if ($seo_html_listname == 3) { //存放子级目录
  1028. $dir = '.' . $seo_html_arcdir . '/' . $dirpath_end;
  1029. $savepath = '.' . $seo_html_arcdir . '/' . $dirpath_end . "/lists_" . $eyou['field']['typeid'];
  1030. } else if ($seo_html_listname == 4) { //自定义存放目录
  1031. $dir = $savepath = '.' . $seo_html_arcdir;
  1032. $diy_dirpath = !empty($eyou['field']['diy_dirpath']) ? $eyou['field']['diy_dirpath'] : '';
  1033. if (!empty($eyou['field']['rulelist'])) {
  1034. $rulelist = ltrim($eyou['field']['rulelist'], '/');
  1035. $rulelist = str_replace("{tid}", $eyou['field']['typeid'], $rulelist);
  1036. $rulelist = str_replace("{page}", $i, $rulelist);
  1037. $rulelist = preg_replace('/{(栏目目录|typedir)}(\/?)/i', $diy_dirpath.'/', $rulelist);
  1038. $rulelist = '/'.ltrim($rulelist, '/');
  1039. $dir .= preg_replace('/\/([\/]*)([^\/]*)$/i', '', $rulelist);
  1040. $savepath .= $rulelist;
  1041. }else{
  1042. $dir .= $diy_dirpath;
  1043. $savepath .= $diy_dirpath . '/' . 'list_' . $eyou['field']['typeid'];
  1044. }
  1045. } else {
  1046. $dir = '.' . $seo_html_arcdir . $eyou['field']['dirpath'];
  1047. $savepath = '.' . $seo_html_arcdir . $eyou['field']['dirpath'] . '/' . 'lists_' . $eyou['field']['typeid'];
  1048. }
  1049. if ($seo_html_listname != 4 || empty($eyou['field']['rulelist'])) {
  1050. if ($i > 1) {
  1051. $savepath .= '_' . $i . '.html';
  1052. } else {
  1053. $savepath .= '.html';
  1054. }
  1055. }
  1056. $top = 1;
  1057. if ($i > 1 && $seo_html_listname == 1 && count($dirpath) > 2) {
  1058. $top = 2;
  1059. } else if ($i > 1 && $seo_html_listname == 3) {
  1060. $top = 1;
  1061. } else if ($i > 1 && $seo_html_listname == 4) {
  1062. $top = 1;
  1063. }
  1064. try {
  1065. $this->filePutContents($savepath, $tpl, 'pc', $i, $dir, $tid, $top, $row);
  1066. if ($i == 1 && $seo_html_listname == 3) {
  1067. @copy($savepath, '.' . $seo_html_arcdir . '/' . $dirpath_end . '/index.html');
  1068. @unlink($savepath);
  1069. } else if ($seo_html_listname == 4) {
  1070. if ($i == 1) {
  1071. $dst_savepath = preg_replace('/\/([^\/]+)$/i', '/index.html', $savepath);
  1072. @copy($savepath, $dst_savepath);
  1073. @unlink($savepath);
  1074. } else if ($i > 1) {
  1075. if (!empty($eyou['field']['rulelist']) && !preg_match('/{page}/i', $eyou['field']['rulelist'])) { // 没有分页变量的情况
  1076. @unlink($savepath);
  1077. }
  1078. }
  1079. } else if ($i == 1 && ($seo_html_listname == 2 || count($dirpath) < 3)) {
  1080. @copy($savepath, '.' . $seo_html_arcdir . $eyou['field']['dirpath'] . '/index.html');
  1081. @unlink($savepath);
  1082. }
  1083. } catch (\Exception $e) {
  1084. $msg .= '<span>' . $savepath . '生成失败!' . $e->getMessage() . '</span><br>';
  1085. }
  1086. return $msg;
  1087. }
  1088. /**
  1089. * 更新静态生成页
  1090. * @param int $aid 文章id
  1091. * @param int $typeid 栏目id
  1092. * @return boolean
  1093. * $del_ids 删除的文章数组
  1094. */
  1095. public function upHtml()
  1096. {
  1097. \think\Session::pause(); // 暂停session,防止session阻塞机制
  1098. $aid = input("param.id/d");
  1099. $typeid = input("param.t_id/d");
  1100. $del_ids = input('param.del_ids/a');
  1101. $type = input('param.type/s');
  1102. $lang = input("param.lang/s", 'cn');
  1103. $seo_uphtml_after_pernext = input("param.seo_uphtml_after_pernext/d");
  1104. $param = input('param.');
  1105. $this->php_sessid .= 'upHtml'.json_encode($param);
  1106. /*由于全站共用删除JS代码,这里排除不能发布文档的模型的控制器*/
  1107. if ('index' != $type) {
  1108. $ctl_name = input("param.ctl_name/s");
  1109. $channeltypeRow = Db::name('channeltype')
  1110. ->where('nid', 'NOT IN', ['guestbook', 'single'])
  1111. ->column('ctl_name');
  1112. array_push($channeltypeRow, 'Archives', 'Arctype', 'Custom');
  1113. if (!in_array($ctl_name, $channeltypeRow)) {
  1114. $this->error("排除非发布文档的模型");
  1115. }
  1116. }
  1117. /*end*/
  1118. $seo_pseudo = $this->eyou['global']['seo_pseudo'];
  1119. $seo_html_pagename = $this->eyou['global']['seo_html_pagename'];
  1120. $this->clearCache();
  1121. if ($seo_pseudo != 2) {
  1122. $this->error("当前非静态模式,不做静态处理");
  1123. }
  1124. Cache::clear('archives');
  1125. if (!empty($del_ids)) { //删除文章页面
  1126. $this->buildhtmlLogic->delViewHtml($del_ids, $this->eyou['global']);
  1127. } else if (!empty($aid) && !empty($typeid)) { //变更文档信息,更新文档页及相关的栏目页
  1128. if ('view' == $type) {
  1129. $this->handelBuildArticle($typeid, $aid, 0, 0, false, 1, 0);
  1130. if (1 == $seo_uphtml_after_pernext) {
  1131. $this->handelBuildArticle($typeid, $aid, 0, 0, false, 1, 1); // 更新上篇
  1132. $this->handelBuildArticle($typeid, $aid, 0, 0, false, 1, 2); // 更新下篇
  1133. }
  1134. } else if ('lists' == $type) {
  1135. $this->handleBuildChannel($typeid, 0, 0, false, false);
  1136. } else {
  1137. $this->handleBuildChannel($typeid, 0, 0, false, false, $aid);
  1138. $this->handelBuildArticle($typeid, $aid, 0, 0, false);
  1139. }
  1140. } else if (!empty($typeid)) { //变更栏目信息,更新栏目页
  1141. $this->handleBuildIndex();
  1142. $data = $this->handleBuildChannel($typeid, 0, 0, false, false);
  1143. } else if ('index' == $type) {
  1144. $this->handleBuildIndex();
  1145. }
  1146. $this->success("静态页面生成完成");
  1147. }
  1148. /*
  1149. * 拓展页面相关信息
  1150. */
  1151. private function lists_logic($result = [], $has_children_Row = [])
  1152. {
  1153. if (empty($result)) {
  1154. return [];
  1155. }
  1156. $tid = $result['typeid'];
  1157. switch ($result['current_channel']) {
  1158. case '6': // 单页模型
  1159. {
  1160. $arctype_info = model('Arctype')->parentAndTopInfo($tid, $result);
  1161. if ($arctype_info) {
  1162. // 读取当前栏目的内容,否则读取每一级第一个子栏目的内容,直到有内容或者最后一级栏目为止。
  1163. $archivesModel = new \app\home\model\Archives();
  1164. $result_new = $archivesModel->readContentFirst($tid);
  1165. // 阅读权限 或 外部链接跳转
  1166. if ($result_new['arcrank'] == -1 || $result_new['is_part'] == 1) {
  1167. return false;
  1168. }
  1169. /*自定义字段的数据格式处理*/
  1170. $result_new = $this->fieldLogic->getChannelFieldList($result_new, $result_new['current_channel']);
  1171. /*--end*/
  1172. $result = array_merge($arctype_info, $result_new);
  1173. $result['templist'] = !empty($arctype_info['templist']) ? $arctype_info['templist'] : 'lists_' . $arctype_info['nid'];
  1174. $result['dirpath'] = $arctype_info['dirpath'];
  1175. $result['diy_dirpath'] = $arctype_info['diy_dirpath'];
  1176. $result['typeid'] = $arctype_info['typeid'];
  1177. $result['rulelist'] = $arctype_info['rulelist'];
  1178. }
  1179. break;
  1180. }
  1181. default:
  1182. {
  1183. $result = model('Arctype')->parentAndTopInfo($tid, $result);
  1184. break;
  1185. }
  1186. }
  1187. if (!empty($result)) {
  1188. /*自定义字段的数据格式处理*/
  1189. $result = $this->fieldLogic->getTableFieldList($result, config('global.arctype_channel_id'));
  1190. /*--end*/
  1191. }
  1192. /*是否有子栏目,用于标记【全部】选中状态*/
  1193. $result['has_children'] = !empty($has_children_Row[$tid]) ? 1 : 0;
  1194. /*--end*/
  1195. // seo
  1196. if (!isset($result['seo_title_tmp'])) {
  1197. $result['seo_title_tmp'] = $result['seo_title'];
  1198. }
  1199. $result['seo_title'] = set_typeseotitle($result['typename'], $result['seo_title_tmp']);
  1200. $result['pageurl'] = $result['typeurl']; // 获取当前页面URL
  1201. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl'], $result['typeid']); // 获取当前页面对应的移动端URL
  1202. // 移动端域名
  1203. $result['mobile_domain'] = '';
  1204. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  1205. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  1206. }
  1207. /*给没有type前缀的字段新增一个带前缀的字段,并赋予相同的值*/
  1208. foreach ($result as $key => $val) {
  1209. if (!preg_match('/^type/i', $key)) {
  1210. $key_new = 'type' . $key;
  1211. !array_key_exists($key_new, $result) && $result[$key_new] = $val;
  1212. }
  1213. }
  1214. /*--end*/
  1215. return $result;
  1216. }
  1217. /**
  1218. * 生成静态模式下且PC和移动端模板分离,就自动给PC端加上跳转移动端的JS代码
  1219. * @access public
  1220. */
  1221. private function pc_to_mobile_js($html = '', $result = [])
  1222. {
  1223. static $other_pcwapjs = null;
  1224. null === $other_pcwapjs && $other_pcwapjs = tpCache('other.other_pcwapjs');
  1225. if (!empty($other_pcwapjs)) {
  1226. return $html;
  1227. }
  1228. if (file_exists('./template/'.TPL_THEME.'mobile')) { // 分离式模板
  1229. /*是否开启手机站域名,并且配置*/
  1230. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  1231. $domain = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  1232. } else {
  1233. $domain = true;
  1234. }
  1235. /*end*/
  1236. $aid = input('param.aid/d');
  1237. $tid = input('param.tid/d');
  1238. if (!empty($aid)) { // 内容页
  1239. $url = url('home/View/index', ['aid' => $aid], true, $domain, 1, 1, 0);
  1240. } else if (!empty($tid)) { // 列表页
  1241. $url = url('home/Lists/index', ['tid' => $tid], true, $domain, 1, 1, 0);
  1242. } else { // 首页
  1243. $url = $this->request->scheme().'://'. $this->request->host(true) . ROOT_DIR . '/index.php';
  1244. }
  1245. $jsStr = <<<EOF
  1246. <meta http-equiv="mobile-agent" content="format=xhtml;url={$url}">
  1247. <script type="text/javascript">if(window.location.toString().indexOf('pref=padindex') != -1){}else{if(/applewebkit.*mobile/i.test(navigator.userAgent.toLowerCase()) || (/midp|symbianos|nokia|samsung|lg|nec|tcl|alcatel|bird|dbtel|dopod|philips|haier|lenovo|mot-|nokia|sonyericsson|sie-|amoi|zte/.test(navigator.userAgent.toLowerCase()))){try{if(/android|windows phone|webos|iphone|ipod|blackberry/i.test(navigator.userAgent.toLowerCase())){window.location.href="{$url}";}else if(/ipad/i.test(navigator.userAgent.toLowerCase())){}else{}}catch(e){}}}</script>
  1248. EOF;
  1249. $html = str_ireplace('</head>', $jsStr . "\n</head>", $html);
  1250. } else { // 响应式模板
  1251. // 开启手机站域名,且配置
  1252. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  1253. if (empty($result['pageurl'])) {
  1254. $url = $this->request->subDomain($this->eyou['global']['web_mobile_domain']) . ROOT_DIR . '/index.php';
  1255. } else {
  1256. $url = !preg_match('/^(http(s?):)?\/\/(.*)$/i', $result['pageurl']) ? $this->request->domain() . $result['pageurl'] : $result['pageurl'];
  1257. $url = preg_replace('/^(.*)(\/\/)([^\/]*)(\.?)(' . $this->request->rootDomain() . ')(.*)$/i', '${1}${2}' . $this->eyou['global']['web_mobile_domain'] . '.${5}${6}', $url);
  1258. }
  1259. $mobileDomain = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  1260. $jsStr = <<<EOF
  1261. <meta http-equiv="mobile-agent" content="format=xhtml;url={$url}">
  1262. <script type="text/javascript">if(window.location.toString().indexOf('pref=padindex') != -1){}else{if(/applewebkit.*mobile/i.test(navigator.userAgent.toLowerCase()) || (/midp|symbianos|nokia|samsung|lg|nec|tcl|alcatel|bird|dbtel|dopod|philips|haier|lenovo|mot-|nokia|sonyericsson|sie-|amoi|zte/.test(navigator.userAgent.toLowerCase()))){try{if(/android|windows phone|webos|iphone|ipod|blackberry/i.test(navigator.userAgent.toLowerCase())){if(window.location.toString().indexOf('{$mobileDomain}') == -1){window.location.href="{$url}";}}else if(/ipad/i.test(navigator.userAgent.toLowerCase())){}else{}}catch(e){}}}</script>
  1263. EOF;
  1264. $html = str_ireplace('</head>', $jsStr . "\n</head>", $html);
  1265. }
  1266. }
  1267. return $html;
  1268. }
  1269. /**
  1270. * 删除文件夹
  1271. * @param $dir
  1272. * @return bool
  1273. */
  1274. private function deldir($dir)
  1275. {
  1276. //先删除目录下的文件:
  1277. $fileArr = glob($dir.'/*.html');
  1278. if (!empty($fileArr)) {
  1279. foreach ($fileArr as $key => $val) {
  1280. !empty($val) && @unlink($val);
  1281. }
  1282. }
  1283. $fileArr = glob($dir.'/*');
  1284. if(empty($fileArr)){ //目录为空
  1285. rmdir($dir); // 删除空目录
  1286. }
  1287. return true;
  1288. }
  1289. }