Brak opisu
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.

Foreign.php 8.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239
  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\controller;
  14. use think\Db;
  15. use think\Page;
  16. use think\Cache;
  17. use app\admin\logic\ForeignLogic;
  18. class Foreign extends Base {
  19. /**
  20. * 实例化模型
  21. */
  22. private $logic;
  23. /**
  24. * 构造方法
  25. */
  26. public function __construct() {
  27. parent::__construct();
  28. $this->logic = new ForeignLogic;
  29. $functionLogic = new \app\common\logic\FunctionLogic;
  30. $functionLogic->validate_authorfile(1);
  31. }
  32. /**
  33. * 基本设置
  34. * @return [type] [description]
  35. */
  36. public function index()
  37. {
  38. $assign_data = [];
  39. // 基本设置
  40. $foreignData = tpSetting('foreign', [], 'cn');
  41. // 外贸助手插件的配置同步到内置里
  42. $admin_logic_1693909371 = tpSetting('syn.admin_logic_1693909371', [], 'cn');
  43. if (empty($admin_logic_1693909371)) {
  44. if (is_dir('./weapp/Waimao/')) {
  45. $row = Db::name('weapp')->where(['code'=>'Waimao'])->find();
  46. $row['data'] = !empty($$row['data']) ? json_decode($$row['data'], true) : [];
  47. $foreignData['foreign_is_status'] = (!empty($row['status']) && 1 == $row['status']) ? 1 : 0;
  48. $foreignData['foreign_clear_htmlfilename'] = empty($row['data']['clear_htmlfilename']) ? 0 : $row['data']['clear_htmlfilename'];
  49. tpSetting('foreign', $foreignData, 'cn');
  50. }
  51. tpSetting('syn', ['admin_logic_1693909371'=>1], 'cn');
  52. }
  53. $assign_data['foreignData'] = empty($foreignData) ? [] : $foreignData;
  54. $this->assign($assign_data);
  55. return $this->fetch();
  56. }
  57. /**
  58. * 保存基本设置
  59. * @return [type] [description]
  60. */
  61. public function conf_save()
  62. {
  63. if (IS_POST) {
  64. $post = input('post.');
  65. if (!empty($this->globalConfig['seo_pseudo']) && 1 == $this->globalConfig['seo_pseudo']) {
  66. $post['seo_titleurl_format'] = 0;
  67. $post['foreign_clear_htmlfilename'] = 0;
  68. }
  69. $seoData = [
  70. 'seo_titleurl_format' => intval($post['seo_titleurl_format']),
  71. ];
  72. tpCache('seo', $seoData);
  73. $basicData = [
  74. 'basic_indexname' => $post['basic_indexname'],
  75. ];
  76. tpCache('basic', $basicData);
  77. // 清空文档的自定义文件名
  78. if (empty($post['seo_titleurl_format'])) {
  79. if (!empty($post['foreign_clear_htmlfilename'])) {
  80. Db::name('archives')->where(['aid'=>['gt', 0]])->update(['htmlfilename'=>'']);
  81. }
  82. }
  83. // 基本设置
  84. $foreignData = tpSetting('foreign', [], 'cn');
  85. $foreignData['foreign_is_status'] = intval($post['foreign_is_status']);
  86. $foreignData['foreign_clear_htmlfilename'] = intval($post['foreign_clear_htmlfilename']);
  87. tpSetting('foreign', $foreignData, 'cn');
  88. // 插件配置
  89. if (is_dir('./weapp/Waimao/')) {
  90. $weappData = Db::name('weapp')->where(['code'=>'Waimao'])->value('data');
  91. $weappData = !empty($weappData) ? json_decode($weappData, true) : [];
  92. $weappData['clear_htmlfilename'] = intval($post['foreign_clear_htmlfilename']);
  93. $saveData = [
  94. 'data' => json_encode($weappData),
  95. 'update_time' => getTime(),
  96. ];
  97. Db::name('weapp')->where(['code'=>'Waimao'])->update($saveData);
  98. }
  99. $this->success("操作成功");
  100. }
  101. $this->error("操作失败");
  102. }
  103. /**
  104. * 批量更新文档URL
  105. */
  106. // public function htmlfilename_index()
  107. // {
  108. // $foreignData = tpSetting('foreign', [], 'cn');
  109. // if (empty($foreignData['foreign_is_status'])) {
  110. // $this->error('尚未启用外贸助手功能', url('Foreign/index'));
  111. // }
  112. // $seo_titleurl_format = empty($this->globalConfig['seo_titleurl_format']) ? 0 : $this->globalConfig['seo_titleurl_format'];
  113. // if (empty($seo_titleurl_format)) {
  114. // $this->error('文档URL尚未开启外贸格式', url('Foreign/index'));
  115. // }
  116. // // 基本设置
  117. // $assign_data = [];
  118. // $foreignData = tpSetting('foreign', [], 'cn');
  119. // $assign_data['foreignData'] = empty($foreignData) ? [] : $foreignData;
  120. // $this->assign($assign_data);
  121. // return $this->fetch();
  122. // }
  123. /**
  124. * 执行 - 批量更新文档URL
  125. */
  126. public function htmlfilename_handel()
  127. {
  128. @ini_set('memory_limit', '-1');
  129. function_exists('set_time_limit') && set_time_limit(0);
  130. if (!empty($this->globalConfig['seo_pseudo']) && 1 == $this->globalConfig['seo_pseudo']) {
  131. $this->error("动态模式下不支持外贸链接格式");
  132. }
  133. if (IS_POST) {
  134. $foreignData = tpSetting('foreign', [], 'cn');
  135. if (empty($foreignData['foreign_is_status'])) {
  136. $this->error('外贸助手已关闭', url('Foreign/index'));
  137. }
  138. $seo_titleurl_format = empty($this->globalConfig['seo_titleurl_format']) ? 0 : $this->globalConfig['seo_titleurl_format'];
  139. if (empty($seo_titleurl_format)) {
  140. $this->error('请勾选文档URL格式为外贸链接', url('Foreign/index'));
  141. }
  142. $foreign_htmlfilename_mode = input('param.foreign_htmlfilename_mode/d');
  143. if (!empty($foreign_htmlfilename_mode)) {
  144. Db::name('archives')->where(['aid'=>['gt', 0]])->update(['htmlfilename'=>'']);
  145. $this->success('', null, ['achievepage'=>0,'allpagetotal'=>0,'pagetotal'=>0]);
  146. } else {
  147. $achievepage = input("param.achieve/d", 0); // 已完成文档数
  148. $data = $this->logic->handelUpdateArticle($foreign_htmlfilename_mode, $achievepage);
  149. $this->success($data[0], null, $data[1]);
  150. }
  151. }
  152. $foreign_htmlfilename_mode = input('param.foreign_htmlfilename_mode/d');
  153. $this->assign('foreign_htmlfilename_mode', $foreign_htmlfilename_mode);
  154. // 批量更新URL的配置
  155. $foreignData = tpSetting('foreign', [], 'cn');
  156. $foreignData['foreign_htmlfilename_mode'] = $foreign_htmlfilename_mode;
  157. tpSetting('foreign', $foreignData, 'cn');
  158. return $this->fetch();
  159. }
  160. /**
  161. * 清除数据缓存+页面缓存
  162. * @return [type] [description]
  163. */
  164. public function clear_cache_htmlfilename()
  165. {
  166. Cache::clear();
  167. delFile(RUNTIME_PATH);
  168. }
  169. /**
  170. * 语言包变量
  171. * @return [type] [description]
  172. */
  173. public function official_pack_index()
  174. {
  175. $foreign_is_status = tpSetting('foreign.foreign_is_status', '', 'cn');
  176. if (empty($foreign_is_status)) {
  177. $this->error('先启用外贸助手并保存');
  178. }
  179. $list = [];
  180. $packList = Db::name('foreign_pack')->field('id,type,name,value,lang')->order('type asc, lang asc, id asc')->select();
  181. foreach ($packList as $key => $val) {
  182. $list[$val['type']][$val['name']][$val['lang']] = $val;
  183. }
  184. $this->assign('list', $list);
  185. return $this->fetch();
  186. }
  187. /**
  188. * 保存语言包变量
  189. * @return [type] [description]
  190. */
  191. public function official_pack_save()
  192. {
  193. if (IS_POST) {
  194. $post = input('post.');
  195. $data = empty($post['data']) ? [] : $post['data'];
  196. $saveData = [];
  197. foreach ($data as $key => $val) {
  198. $saveData[] = [
  199. 'id' => intval($key),
  200. 'value' => htmlspecialchars_decode($val),
  201. 'update_time' => getTime(),
  202. ];
  203. }
  204. $r = true;
  205. if (!empty($saveData)) {
  206. $r = model('ForeignPack')->saveAll($saveData);
  207. }
  208. if ($r !== false) {
  209. Cache::clear('foreign_pack');
  210. $this->success("操作成功");
  211. }
  212. }
  213. $this->error("操作失败");
  214. }
  215. }