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.

ForeignLogic.php 7.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\logic;
  14. use think\Db;
  15. use think\Cache;
  16. /**
  17. * 业务逻辑
  18. */
  19. class ForeignLogic
  20. {
  21. public function __construct()
  22. {
  23. }
  24. /**
  25. * 更新文档自定义文件名
  26. * @param [type] $aid [description]
  27. * @param array $post [description]
  28. * @param string $opt [description]
  29. * @return [type] [description]
  30. */
  31. public function update_htmlfilename($aid, $post = [], $opt = 'add')
  32. {
  33. if ('add' == $opt) {
  34. $seo_config = tpCache('seo');
  35. $seo_pseudo = !empty($seo_config['seo_pseudo']) ? intval($seo_config['seo_pseudo']) : 0;
  36. if (in_array($seo_pseudo, [2,3])) {
  37. $seo_titleurl_format = !empty($seo_config['seo_titleurl_format']) ? intval($seo_config['seo_titleurl_format']) : 0;
  38. if (!empty($seo_titleurl_format)) {
  39. $htmlfilename = $post['htmlfilename'].'_'.$aid;
  40. Db::name('archives')->where(['aid'=>$aid])->update(['htmlfilename'=>$htmlfilename]);
  41. }
  42. }
  43. }
  44. }
  45. /**
  46. * 获取标题生成外贸链接字符串
  47. * @param [type] $post [description]
  48. * @param string $opt [description]
  49. * @param array $globalConfig [description]
  50. * @return [type] [description]
  51. */
  52. public function get_new_htmlfilename(&$htmlfilename, $post, $opt = 'add', $globalConfig = [])
  53. {
  54. if (empty($globalConfig)) {
  55. $globalConfig = tpCache('global');
  56. }
  57. if (in_array($globalConfig['seo_pseudo'], [2,3])) {
  58. $seo_titleurl_format = (int)$globalConfig['seo_titleurl_format'];
  59. if (!empty($seo_titleurl_format)) {
  60. $htmlfilename = $this->get_title_htmlfilename(trim($post['title']));
  61. if ('edit' == $opt) {
  62. $htmlfilename .= '_'.$post['aid'];
  63. }
  64. }
  65. }
  66. }
  67. /**
  68. * 文章标题转成外贸指定格式字母串
  69. *
  70. * @param string $str 字符串信息
  71. * @param int $ishead 是否取头字母
  72. * @param int $isclose 是否关闭字符串资源
  73. * @return string
  74. */
  75. public function get_title_htmlfilename($str, $ishead = 0, $isclose = 1)
  76. {
  77. $str = str_replace(['—'], ' ', $str);
  78. $str = preg_replace('/(\s+)/i', ' ', $str);
  79. try{
  80. $s1 = iconv("UTF-8", "gb2312", $str);
  81. $s2 = iconv("gb2312", "UTF-8", $s1);
  82. if ($s2 == $str) {
  83. $str = $s1;
  84. }
  85. static $pinyins = null;
  86. $restr = '';
  87. $str = trim($str);
  88. $slen = strlen($str);
  89. if ($slen < 2) {
  90. $str = preg_replace('/([\-\_]+)$/i', '', $str); // 去掉结尾的符号
  91. return $str;
  92. }
  93. if (null === $pinyins) {
  94. $pinyins = [];
  95. $fp = fopen(DATA_PATH . 'conf/pinyin.dat', 'r');
  96. while (!feof($fp)) {
  97. $line = trim(fgets($fp));
  98. $pinyins[$line[0] . $line[1]] = substr($line, 3, strlen($line) - 3);
  99. }
  100. fclose($fp);
  101. }
  102. for ($i = 0; $i < $slen; $i++) {
  103. if (ord($str[$i]) > 0x80) {
  104. $c = $str[$i] . $str[$i + 1];
  105. $i++;
  106. if (isset($pinyins[$c])) {
  107. if ($ishead == 0) {
  108. $restr .= $pinyins[$c];
  109. } else {
  110. $restr .= $pinyins[$c][0];
  111. }
  112. // } else if ('_' == $str[$i]) {
  113. // $restr .= $str[$i];
  114. } else {
  115. $restr .= "-";
  116. }
  117. } else if (preg_match("/[a-z0-9]/i", $str[$i])) {
  118. $restr .= $str[$i];
  119. // } else if ('_' == $str[$i]) {
  120. // $restr .= $str[$i];
  121. } else {
  122. $restr .= "-";
  123. }
  124. }
  125. if ($isclose == 0) {
  126. unset($pinyins);
  127. }
  128. $restr = strtolower($restr);
  129. $restr = preg_replace('/([\-\_]+)$/i', '', $restr); // 去掉结尾的符号
  130. $restr = preg_replace('/([\-]+)/i', '-', $restr);
  131. $restr = preg_replace('/([\_]+)/i', '_', $restr);
  132. $restr = trim($restr, '-');
  133. return $restr;
  134. }catch (\Exception $e){
  135. return "";
  136. }
  137. }
  138. /**
  139. * 处理更新文档的自定义文件名
  140. * $achievepage 已完成文档数
  141. * $batch 是否分批次执行,true:分批,false:不分批
  142. * limit 每次执行多少条数据
  143. */
  144. public function handelUpdateArticle($foreign_htmlfilename_mode = 0, $achievepage = 0, $batch = true, $limit = '')
  145. {
  146. $msg = "";
  147. $result = $this->getArticleData($achievepage, $limit);
  148. $info = $result['info'];
  149. $data['allpagetotal'] = $pagetotal = $result['pagetotal'];
  150. $data['achievepage'] = $achievepage;
  151. $data['pagetotal'] = 0;
  152. if ($batch && $pagetotal > $achievepage) {
  153. $msg .= $msg_temp = $this->updateHtmlfilename($foreign_htmlfilename_mode, $info);
  154. $data['achievepage'] += count($info);
  155. }
  156. return [$msg, $data];
  157. }
  158. /**
  159. * 获取详情页数据
  160. */
  161. private function getArticleData($offset = 0, $limit = 0)
  162. {
  163. empty($limit) && $limit = 500;
  164. $map = [];
  165. $allow_release_channel = config('global.allow_release_channel');
  166. $map['channel'] = ['IN', $allow_release_channel];
  167. $map['arcrank'] = ['>=', -1];
  168. $info = [];
  169. $list = Db::name('archives')->field("aid,title,htmlfilename")
  170. ->where($map)
  171. ->order('aid asc')
  172. ->limit($offset, $limit)
  173. ->select();
  174. foreach ($list as $key=>$val){
  175. $info_value = [];
  176. $info_value['aid'] = $val['aid'];
  177. $info_value['title'] = trim($val['title']);
  178. $info_value['htmlfilename'] = $val['htmlfilename'];
  179. $info[] = $info_value;
  180. }
  181. // 总文档数
  182. $pagetotal = Db::name('archives')->field('aid')->where($map)->count();
  183. return ['info' => $info, 'pagetotal' => $pagetotal];
  184. }
  185. /*
  186. * 更新文档的自定义文件名
  187. */
  188. private function updateHtmlfilename($foreign_htmlfilename_mode, $result)
  189. {
  190. $msg = "";
  191. $globalConfig = tpCache('global');
  192. foreach ($result as $key => $val) {
  193. $htmlfilename = '';
  194. if (empty($foreign_htmlfilename_mode)) {
  195. $this->get_new_htmlfilename($htmlfilename, $val, 'edit', $globalConfig);
  196. }
  197. $val['htmlfilename'] = $htmlfilename;
  198. $result[$key] = $val;
  199. }
  200. $archivesModel = new \app\admin\model\Archives;
  201. $r2 = $archivesModel->saveAll($result);
  202. if ($r2 !== false) {
  203. } else {
  204. $msg .= '<span>' . '更新失败!' . $e->getMessage() . '</span><br>';
  205. }
  206. return $msg;
  207. }
  208. }