No Description
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.

ArchivesLogic.php 40KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  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\Model;
  15. use think\Db;
  16. /**
  17. * 文档逻辑定义
  18. * Class CatsLogic
  19. * @package admin\Logic
  20. */
  21. load_trait('controller/Jump');
  22. class ArchivesLogic extends Model
  23. {
  24. use \traits\controller\Jump;
  25. private $admin_lang = 'cn';
  26. /**
  27. * 析构函数
  28. */
  29. function __construct() {
  30. $this->admin_lang = get_admin_lang();
  31. }
  32. /**
  33. * 删除文档
  34. */
  35. public function del($del_id = array(), $thorough = 0, $table = '')
  36. {
  37. $del_id = !empty($del_id) ? $del_id : input('del_id/a');
  38. $id_arr = eyIntval($del_id);
  39. $_POST['aids'] = $id_arr;
  40. $thorough = !empty($thorough) ? $thorough : input('thorough/d');
  41. if (!empty($id_arr)) {
  42. /*分离并组合相同模型下的文档ID*/
  43. $field = 'a.aid, a.typeid, a.channel, a.arcrank, a.is_recom, a.is_special, a.is_b, a.is_head, a.is_litpic, a.is_jump, a.is_slide, a.is_roll, a.is_diyattr, a.users_id, b.table, b.ctl_name, b.ifsystem';
  44. $row = Db::name('archives')
  45. ->alias('a')
  46. ->field($field)
  47. ->join('__CHANNELTYPE__ b', 'a.channel = b.id', 'LEFT')
  48. ->where([
  49. 'a.aid' => ['IN', $id_arr],
  50. 'a.lang' => $this->admin_lang,
  51. ])
  52. ->select();
  53. $data = array();
  54. foreach ($row as $key => $val) {
  55. $data[$val['channel']]['aid'][] = $val['aid'];
  56. $data[$val['channel']]['table'] = $val['table'];
  57. if (empty($val['ifsystem'])) {
  58. $ctl_name = 'Custom';
  59. } else {
  60. $ctl_name = $val['ctl_name'];
  61. }
  62. $data[$val['channel']]['ctl_name'] = $ctl_name;
  63. }
  64. /*--end*/
  65. // 删除静态文件
  66. $buildhtmlLogic = new \app\common\logic\BuildhtmlLogic;
  67. $buildhtmlLogic->delViewHtml($id_arr);
  68. if (1 == $thorough) { // 直接删除,跳过回收站
  69. $err = 0;
  70. foreach ($data as $key => $val) {
  71. $r = Db::name('archives')->where('aid','IN',$val['aid'])->delete();
  72. if ($r) {
  73. if (empty($val['ifsystem'])) {
  74. model($val['ctl_name'])->afterDel($val['aid'], $val['table']);
  75. } else {
  76. model($val['ctl_name'])->afterDel($val['aid']);
  77. }
  78. adminLog('删除文档-id:'.implode(',', $val['aid']));
  79. } else {
  80. $err++;
  81. }
  82. }
  83. } else {
  84. $info['is_del'] = 1; // 伪删除状态
  85. $info['update_time']= getTime(); // 更新修改时间
  86. $info['del_method'] = 1; // 恢复删除方式为默认
  87. $numinfo = [
  88. 'is_del' => 1,
  89. ];
  90. $err = 0;
  91. foreach ($data as $key => $val) {
  92. $r = Db::name('archives')->where('aid','IN',$val['aid'])->update($info);
  93. if ($r) {
  94. adminLog('删除文档-id:'.implode(',', $val['aid']));
  95. } else {
  96. $err++;
  97. }
  98. //文档aid 对应 序列号aid
  99. Db::name('seo_number')->where('aid','IN',$val['aid'])->update($numinfo);
  100. }
  101. }
  102. if (0 == $err) {
  103. // 处理mysql缓存表数据
  104. $DraftData = [
  105. 'TypeID' => [],
  106. 'UsersID' => [],
  107. ];
  108. foreach ($row as $key => $value) {
  109. if (-1 === $value['arcrank'] && !empty($value['users_id'])) {
  110. array_push($DraftData['TypeID'], $value['typeid']);
  111. array_push($DraftData['UsersID'], $value['users_id']);
  112. unset($row[$key]);
  113. }
  114. }
  115. if (!empty($row)) model('SqlCacheTable')->UpdateSqlCacheTable($row, 'del', $table);
  116. if (!empty($DraftData)) model('SqlCacheTable')->UpdateDraftSqlCacheTable($DraftData, 'admin_del');
  117. // 系统商品操作时,积分商品的被动处理
  118. model('ShopPublicHandle')->pointsGoodsPassiveHandle($id_arr);
  119. $this->success('删除成功!');
  120. } else if ($err < count($data)) {
  121. // 系统商品操作时,积分商品的被动处理
  122. model('ShopPublicHandle')->pointsGoodsPassiveHandle($id_arr);
  123. $this->success('删除部分成功!');
  124. } else {
  125. $this->error('删除失败!');
  126. }
  127. }else{
  128. $this->error('文档不存在!');
  129. }
  130. }
  131. /**
  132. * 获取文档模板文件列表
  133. */
  134. public function getTemplateList($nid = 'article')
  135. {
  136. $planPath = 'template/'.TPL_THEME.'pc';
  137. $dirRes = opendir($planPath);
  138. $view_suffix = config('template.view_suffix');
  139. /*模板PC目录文件列表*/
  140. $templateArr = array();
  141. while($filename = readdir($dirRes))
  142. {
  143. if (in_array($filename, array('.','..'))) {
  144. continue;
  145. }
  146. array_push($templateArr, $filename);
  147. }
  148. /*--end*/
  149. /*多语言全部标识*/
  150. $markArr = Db::name('language_mark')->column('mark');
  151. /*--end*/
  152. $templateList = array();
  153. foreach ($templateArr as $k2 => $v2) {
  154. $v2 = iconv('GB2312', 'UTF-8', $v2);
  155. preg_match('/^(view)_'.$nid.'(_(.*))?(_'.$this->admin_lang.')?\.'.$view_suffix.'/i', $v2, $matches1);
  156. $langtpl = preg_replace('/\.'.$view_suffix.'$/i', "_{$this->admin_lang}.{$view_suffix}", $v2);
  157. if (file_exists(realpath($planPath.DS.$langtpl))) {
  158. continue;
  159. } else if (preg_match('/^(.*)_([a-zA-z]{2,2})\.'.$view_suffix.'$/i',$v2,$matches2)) {
  160. if (in_array($matches2[2], $markArr) && $matches2[2] != $this->admin_lang) {
  161. continue;
  162. }
  163. }
  164. if (!empty($matches1)) {
  165. if ('view' == $matches1[1]) {
  166. array_push($templateList, $v2);
  167. }
  168. }
  169. }
  170. return $templateList;
  171. }
  172. /**
  173. * 复制文档
  174. */
  175. public function batch_copy($aids = [], $typeid = 0, $channel = 0, $num = 1)
  176. {
  177. // 获取复制栏目的模型ID
  178. $channeltypeRow = Db::name('channeltype')->field('nid,table')
  179. ->where([
  180. 'id' => $channel,
  181. ])->find();
  182. if (!empty($channeltypeRow)) {
  183. // 主表数据
  184. $archivesRow = Db::name('archives')->where(['aid'=>['IN', $aids]])->select();
  185. // 内容扩展表数据
  186. $tableExt = $channeltypeRow['table']."_content";
  187. $contentRow = Db::name($tableExt)->field('id', true)->where(['aid'=>['IN', $aids]])->getAllWithIndex('aid');
  188. // 拥有特性模型的其他数据处理
  189. if ('images' == $channeltypeRow['nid']) { // 图集模型的特性表数据
  190. $imgUploadRow = Db::name('images_upload')->field('img_id', true)->where(['aid'=>['IN', $aids]])->select();
  191. $imgUploadRow = group_same_key($imgUploadRow, 'aid');
  192. }
  193. else if ('download' == $channeltypeRow['nid']) { // 下载模型的特性表数据
  194. // 附件表
  195. $downloadFileRow = Db::name('download_file')->field('file_id', true)->where(['aid'=>['IN', $aids]])->select();
  196. $downloadFileRow = group_same_key($downloadFileRow, 'aid');
  197. }
  198. else if ('product' == $channeltypeRow['nid']) { // 产品模型的特性表数据
  199. // 属性值表
  200. $productAttrRow = Db::name('product_attr')->field('product_attr_id', true)->where(['aid'=>['IN', $aids]])->select();
  201. $productAttrRow = group_same_key($productAttrRow, 'aid');
  202. // 产品图集表
  203. $productImgRow = Db::name('product_img')->field('img_id', true)->where(['aid'=>['IN', $aids]])->select();
  204. $productImgRow = group_same_key($productImgRow, 'aid');
  205. // 产品虚拟表
  206. $productNetdiskRow = Db::name('product_netdisk')->field('nd_id', true)->where(['aid'=>['IN', $aids]])->select();
  207. $productNetdiskRow = group_same_key($productNetdiskRow, 'aid');
  208. // 产品规格数据表
  209. $productSpecRow = Db::name('product_spec_data')->field('spec_id', true)->where(['aid'=>['IN', $aids]])->select();
  210. $productSpecRow = group_same_key($productSpecRow, 'aid');
  211. // 产品多规格组装表
  212. $productSpecValueRow = Db::name('product_spec_value')->field('value_id', true)->where(['aid'=>['IN', $aids]])->select();
  213. $productSpecValueRow = group_same_key($productSpecValueRow, 'aid');
  214. }
  215. else if ('media' == $channeltypeRow['nid']) { // 视频模型的特性表数据
  216. // 附件表
  217. $mediaFileRow = Db::name('media_file')->field('file_id', true)->where(['aid'=>['IN', $aids]])->select();
  218. $mediaFileRow = group_same_key($mediaFileRow, 'aid');
  219. }
  220. else if ('special' == $channeltypeRow['nid']) { // 专题模型的特性表数据
  221. // 节点表
  222. $specialNodeRow = Db::name('special_node')->field('node_id', true)->where(['aid'=>['IN', $aids]])->select();
  223. $specialNodeRow = group_same_key($specialNodeRow, 'aid');
  224. }
  225. foreach ($archivesRow as $key => $val) {
  226. // 原先数据的栏目ID
  227. $typeid_old = $val['typeid'];
  228. // 同步数据
  229. $archivesData = [];
  230. for ($i = 0; $i < $num; $i++) {
  231. // 主表
  232. $archivesInfo = $val;
  233. unset($archivesInfo['aid']);
  234. $archivesInfo['typeid'] = $typeid;
  235. $archivesInfo['add_time'] = getTime();
  236. $archivesInfo['update_time'] = getTime();
  237. $archivesData[] = $archivesInfo;
  238. }
  239. if (!empty($archivesData)) {
  240. $rdata = model('Archives')->saveAll($archivesData);
  241. if ($rdata) {
  242. // 内容扩展表的数据
  243. $contentData = [];
  244. $contentInfo = $contentRow[$val['aid']];
  245. // 拥有特性模型的其他数据处理
  246. $imgUploadInfo = $imgUploadData = [];
  247. $downloadFileInfo = $downloadFileData = [];
  248. $mediaFileInfo = $mediaFileData = [];
  249. $specialNodeInfo = $specialNodeData = [];
  250. $productAttrInfo = $productImgInfo = $productNetdiskInfo = $productSpecInfo = $productSpecValueInfo = [];
  251. $productAttrData = $productImgData = $productNetdiskData = $productSpecData = $productSpecValueData = [];
  252. if ('images' == $channeltypeRow['nid']) { // 图集模型的特性表数据
  253. $imgUploadInfo = !empty($imgUploadRow[$val['aid']]) ? $imgUploadRow[$val['aid']] : [];
  254. } else if ('download' == $channeltypeRow['nid']) { // 下载模型的特性表数据
  255. $downloadFileInfo = !empty($downloadFileRow[$val['aid']]) ? $downloadFileRow[$val['aid']] : [];
  256. } else if ('product' == $channeltypeRow['nid']) { // 新房模型的特性表数据
  257. // 属性值表 - 只复制同栏目的属性值
  258. if ($typeid_old == $typeid) {
  259. $productAttrInfo = !empty($productAttrRow[$val['aid']]) ? $productAttrRow[$val['aid']] : [];
  260. }
  261. // 产品图集表
  262. $productImgInfo = !empty($productImgRow[$val['aid']]) ? $productImgRow[$val['aid']] : [];
  263. // 产品虚拟表
  264. $productNetdiskInfo = !empty($productNetdiskRow[$val['aid']]) ? $productNetdiskRow[$val['aid']] : [];
  265. // 产品规格数据表
  266. $productSpecInfo = !empty($productSpecRow[$val['aid']]) ? $productSpecRow[$val['aid']] : [];
  267. // 产品多规格组装表
  268. $productSpecValueInfo = !empty($productSpecValueRow[$val['aid']]) ? $productSpecValueRow[$val['aid']] : [];
  269. } else if ('media' == $channeltypeRow['nid']) { // 视频模型的特性表数据
  270. $mediaFileInfo = !empty($mediaFileRow[$val['aid']]) ? $mediaFileRow[$val['aid']] : [];
  271. } else if ('special' == $channeltypeRow['nid']) { // 专题模型的特性表数据
  272. $specialNodeInfo = !empty($specialNodeRow[$val['aid']]) ? $specialNodeRow[$val['aid']] : [];
  273. }
  274. // 需要复制的数据与新产生的文档ID进行关联
  275. foreach ($rdata as $k1 => $v1) {
  276. $aid_new = $v1->getData('aid');
  277. // 内容扩展表的数据
  278. $contentInfo['aid'] = $aid_new;
  279. $contentData[] = $contentInfo;
  280. // 图集模型
  281. if ('images' == $channeltypeRow['nid']) {
  282. foreach ($imgUploadInfo as $img_k => $img_v) {
  283. $img_v['aid'] = $aid_new;
  284. $imgUploadData[] = $img_v;
  285. }
  286. } else if ('download' == $channeltypeRow['nid']) {
  287. // 附件表
  288. foreach ($downloadFileInfo as $file_k => $file_v) {
  289. $file_v['aid'] = $aid_new;
  290. $downloadFileData[] = $file_v;
  291. }
  292. } else if ('product' == $channeltypeRow['nid']) {
  293. // 属性值表
  294. foreach ($productAttrInfo as $attr_k => $attr_v) {
  295. $attr_v['aid'] = $aid_new;
  296. $productAttrData[] = $attr_v;
  297. }
  298. // 产品图集表
  299. foreach ($productImgInfo as $img_k => $img_v) {
  300. $img_v['aid'] = $aid_new;
  301. $productImgData[] = $img_v;
  302. }
  303. // 产品虚拟表
  304. foreach ($productNetdiskInfo as $nd_k => $nd_v) {
  305. $nd_v['aid'] = $aid_new;
  306. $productNetdiskData[] = $nd_v;
  307. }
  308. // 产品规格数据表
  309. foreach ($productSpecInfo as $spec_k => $spec_v) {
  310. $spec_v['aid'] = $aid_new;
  311. $productSpecData[] = $spec_v;
  312. }
  313. // 产品多规格组装表
  314. foreach ($productSpecValueInfo as $specv_k => $specv_v) {
  315. $specv_v['aid'] = $aid_new;
  316. $productSpecValueData[] = $specv_v;
  317. }
  318. } else if ('media' == $channeltypeRow['nid']) {
  319. // 附件表
  320. foreach ($mediaFileInfo as $file_k => $file_v) {
  321. $file_v['aid'] = $aid_new;
  322. $mediaFileData[] = $file_v;
  323. }
  324. } else if ('special' == $channeltypeRow['nid']) {
  325. // 附件表
  326. foreach ($specialNodeInfo as $node_k => $node_v) {
  327. $node_v['aid'] = $aid_new;
  328. $specialNodeData[] = $node_v;
  329. }
  330. }
  331. }
  332. // 批量写入内容扩展表
  333. if (!empty($contentData)) {
  334. Db::name($tableExt)->insertAll($contentData);
  335. }
  336. // 批量写入图集模型的图片表
  337. if ('images' == $channeltypeRow['nid']) {
  338. !empty($imgUploadData) && model('ImagesUpload')->saveAll($imgUploadData);
  339. } else if ('download' == $channeltypeRow['nid']) {
  340. // 附件表
  341. !empty($downloadFileData) && model('DownloadFile')->saveAll($downloadFileData);
  342. } else if ('product' == $channeltypeRow['nid']) {
  343. // 属性值表
  344. !empty($productAttrData) && Db::name('product_attr')->insertAll($productAttrData);
  345. // 产品图集表
  346. !empty($productImgData) && model('ProductImg')->saveAll($productImgData);
  347. // 产品虚拟表
  348. !empty($productNetdiskData) && model('ProductNetdisk')->saveAll($productNetdiskData);
  349. // 产品规格数据表
  350. !empty($productSpecData) && model('ProductSpecData')->saveAll($productSpecData);
  351. // 产品多规格组装表
  352. !empty($productSpecValueData) && model('ProductSpecValue')->saveAll($productSpecValueData);
  353. } else if ('media' == $channeltypeRow['nid']) {
  354. // 附件表
  355. !empty($mediaFileData) && model('MediaFile')->saveAll($mediaFileData);
  356. } else if ('special' == $channeltypeRow['nid']) {
  357. // 附件表
  358. !empty($specialNodeData) && model('SpecialNode')->saveAll($specialNodeData);
  359. }
  360. }
  361. else {
  362. $this->error('复制失败!');
  363. }
  364. }
  365. }
  366. /*清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表*/
  367. Db::name('sql_cache_table')->execute('TRUNCATE TABLE '.config('database.prefix').'sql_cache_table');
  368. model('SqlCacheTable')->InsertSqlCacheTable(true);
  369. /* END */
  370. $this->success('复制成功!');
  371. } else {
  372. $this->error('模型不存在!');
  373. }
  374. }
  375. /**
  376. * 复制全部文档
  377. * 新增语言是复制使用
  378. * 从中文复制到新增的语言
  379. * $is_jump = 0 不跳过重复文章 1 - 跳过
  380. */
  381. public function batch_copy_all($lang = '',$is_jump = 0)
  382. {
  383. if (empty($lang)) return false;
  384. //删除已有数据 开始
  385. $lang_channel_data = Db::name('archives')
  386. ->alias('a')
  387. ->field('a.channel,b.nid,b.table')
  388. ->join('channeltype b','a.channel = b.id','left')
  389. ->where(['a.lang' => $lang, 'a.is_del' => 0,'a.channel'=>['neq',6]])
  390. ->group('a.channel')
  391. ->getAllWithIndex('channel');
  392. if (!empty($lang_channel_data)){
  393. foreach ($lang_channel_data as $k => $v){
  394. $aids = Db::name('archives')->where(['lang' => $lang, 'is_del' => 0,'channel'=>$v['channel']])->column('aid');
  395. Db::name('archives')->where(['aid' => ['IN', $aids]])->delete();
  396. //删除内容扩展表
  397. $tableExt = $v['table'] . "_content";
  398. Db::name($tableExt)->where(['aid' => ['IN', $aids]])->delete();
  399. // 拥有特性模型的其他数据处理
  400. if ('images' == $v['nid']) {
  401. $imgUploadRow = Db::name('images_upload')->where(['aid' => ['IN', $aids]])->delete();
  402. } else if ('download' == $v['nid']) { // 下载模型的特性表数据
  403. // 附件表
  404. $downloadFileRow = Db::name('download_file')->where(['aid' => ['IN', $aids]])->delete();
  405. } else if ('product' == $v['nid']) { // 产品模型的特性表数据
  406. // 属性值表
  407. $productAttrRow = Db::name('product_attr')->where(['aid' => ['IN', $aids]])->delete();
  408. // 产品图集表
  409. $productImgRow = Db::name('product_img')->where(['aid' => ['IN', $aids]])->delete();
  410. // 产品虚拟表
  411. $productNetdiskRow = Db::name('product_netdisk')->where(['aid' => ['IN', $aids]])->delete();
  412. // 产品规格数据表
  413. $productSpecRow = Db::name('product_spec_data')->where(['aid' => ['IN', $aids]])->delete();
  414. // 产品多规格组装表
  415. $productSpecValueRow = Db::name('product_spec_value')->where(['aid' => ['IN', $aids]])->delete();
  416. } else if ('media' == $v['nid']) { // 视频模型的特性表数据
  417. // 附件表
  418. $mediaFileRow = Db::name('media_file')->where(['aid' => ['IN', $aids]])->delete();
  419. } else if ('special' == $v['nid']) { // 专题模型的特性表数据
  420. // 节点表
  421. $specialNodeRow = Db::name('special_node')->where(['aid' => ['IN', $aids]])->delete();
  422. }
  423. }
  424. }
  425. //删除已有数据 结束
  426. //新建数据开始
  427. $channel_ids = Db::name('archives')->where(['lang' => 'cn', 'is_del' => 0,'channel'=>['neq',6]])->group('channel')->column('channel');
  428. // 获取复制栏目的模型ID
  429. $channeltypeRow = Db::name('channeltype')->field('id,nid,table')
  430. ->where([
  431. 'id' => ['in', $channel_ids],
  432. ])->getAllWithIndex('id');
  433. if (!empty($channeltypeRow)) {
  434. $error_aid = [];
  435. foreach ($channeltypeRow as $k => $v) {
  436. $archivesRow = Db::name('archives')->where(['lang' => 'cn', 'is_del' => 0,'channel'=>$k])->select();
  437. if (!empty($is_jump)){
  438. $titles = get_arr_column($archivesRow,'title');
  439. $repeat_title_arr = Db::name('archives')->where(['lang' => $lang, 'is_del' => 0,'channel'=>$k])->where('title','in',$titles)->column('title');
  440. if (!empty($repeat_title_arr)){
  441. foreach ($archivesRow as $m => $n){
  442. if (in_array($n['title'],$repeat_title_arr)) unset($archivesRow[$m]);
  443. }
  444. if (!empty($archivesRow)) {
  445. $archivesRow = array_merge($archivesRow);
  446. }
  447. }
  448. }
  449. if (empty($archivesRow)) continue;
  450. $aids = $typeids = [];
  451. foreach ($archivesRow as $key => $val) {
  452. if (!in_array($val['aid'], $aids)) $aids[] = $val['aid'];
  453. if (!in_array($val['typeid'], $typeids)) $typeids[] = $val['typeid'];
  454. }
  455. // 内容扩展表数据
  456. $tableExt = $v['table'] . "_content";
  457. $contentRow = Db::name($tableExt)->field('id', true)->where(['aid' => ['IN', $aids]])->getAllWithIndex('aid');
  458. // 原语言栏目
  459. $typeids_arr = [];
  460. foreach ($typeids as $key => $val){
  461. $typeids_arr[] = 'tid' . $val;
  462. }
  463. // 源语言关联的多语言栏目
  464. $lang_typeids = Db::name('language_attr')->where(['attr_group' => 'arctype', 'attr_name' => ['in',$typeids_arr],'lang'=>$lang])->field('attr_value,attr_name')->getAllWithIndex('attr_name');
  465. // 拥有特性模型的其他数据处理
  466. if ('images' == $v['nid']) { // 图集模型的特性表数据
  467. $imgUploadRow = Db::name('images_upload')->field('img_id', true)->where(['aid' => ['IN', $aids]])->select();
  468. $imgUploadRow = group_same_key($imgUploadRow, 'aid');
  469. } else if ('download' == $v['nid']) { // 下载模型的特性表数据
  470. // 附件表
  471. $downloadFileRow = Db::name('download_file')->field('file_id', true)->where(['aid' => ['IN', $aids]])->select();
  472. $downloadFileRow = group_same_key($downloadFileRow, 'aid');
  473. } else if ('product' == $v['nid']) { // 产品模型的特性表数据
  474. // 属性值表
  475. $productAttrRow = Db::name('product_attr')->field('product_attr_id', true)->where(['aid' => ['IN', $aids]])->select();
  476. $productAttrRow = group_same_key($productAttrRow, 'aid');
  477. // 产品图集表
  478. $productImgRow = Db::name('product_img')->field('img_id', true)->where(['aid' => ['IN', $aids]])->select();
  479. $productImgRow = group_same_key($productImgRow, 'aid');
  480. // 产品虚拟表
  481. $productNetdiskRow = Db::name('product_netdisk')->field('nd_id', true)->where(['aid' => ['IN', $aids]])->select();
  482. $productNetdiskRow = group_same_key($productNetdiskRow, 'aid');
  483. // 产品规格数据表
  484. $productSpecRow = Db::name('product_spec_data')->field('spec_id', true)->where(['aid' => ['IN', $aids]])->select();
  485. $productSpecRow = group_same_key($productSpecRow, 'aid');
  486. // 产品多规格组装表
  487. $productSpecValueRow = Db::name('product_spec_value')->field('value_id', true)->where(['aid' => ['IN', $aids]])->select();
  488. $productSpecValueRow = group_same_key($productSpecValueRow, 'aid');
  489. } else if ('media' == $v['nid']) { // 视频模型的特性表数据
  490. // 附件表
  491. $mediaFileRow = Db::name('media_file')->field('file_id', true)->where(['aid' => ['IN', $aids]])->select();
  492. $mediaFileRow = group_same_key($mediaFileRow, 'aid');
  493. } else if ('special' == $v['nid']) { // 专题模型的特性表数据
  494. // 节点表
  495. $specialNodeRow = Db::name('special_node')->field('node_id', true)->where(['aid' => ['IN', $aids]])->select();
  496. $specialNodeRow = group_same_key($specialNodeRow, 'aid');
  497. }
  498. foreach ($archivesRow as $key => $val) {
  499. // 原先数据的栏目ID
  500. $typeid_old = $val['typeid'];
  501. //多语言栏目id
  502. $typeid = $lang_typeids['tid'.$val['typeid']]['attr_value'];
  503. // 只同步相关联的栏目
  504. if (empty($typeid)) {
  505. continue;
  506. }
  507. $aid = $val['aid'];
  508. $archivesInfo = $val;
  509. unset($archivesInfo['aid']);
  510. $archivesInfo['typeid'] = $typeid;
  511. $archivesInfo['lang'] = $lang;
  512. // $archivesInfo['add_time'] = getTime();
  513. // $archivesInfo['update_time'] = getTime();
  514. if (!empty($archivesInfo)) {
  515. $new_aid = Db::name('archives')->insertGetId($archivesInfo);
  516. if ($new_aid) {
  517. $channelfield_bind_list = Db::name('channelfield_bind')->where('typeid',$typeid_old)->select();
  518. if (!empty($channelfield_bind_list)){
  519. $field_ids = get_arr_column($channelfield_bind_list,'field_id');
  520. //查询已经写入的
  521. $bind_field_ids = Db::name('channelfield_bind')->where('typeid',$typeid)->where('field_id','in',$field_ids)->column('field_id');
  522. $channelfield_bind_insert = [];
  523. foreach ($channelfield_bind_list as $k => $v) {
  524. //已经写入的不在写入
  525. if (!in_array($v['field_id'], $bind_field_ids)){
  526. $channelfield_bind_insert[] = [
  527. 'typeid' => $typeid,
  528. 'field_id' => $v['field_id'],
  529. 'add_time' => getTime(),
  530. 'update_time' => getTime()
  531. ];
  532. }
  533. }
  534. //写入绑定自定义字段
  535. Db::name('channelfield_bind')->insertAll($channelfield_bind_insert);
  536. }
  537. // 内容扩展表的数据
  538. $contentInfo = $contentRow[$val['aid']];
  539. $contentInfo['aid'] = $new_aid;
  540. // 拥有特性模型的其他数据处理
  541. $imgUploadInfo = $imgUploadData = [];
  542. $downloadFileInfo = $downloadFileData = [];
  543. $mediaFileInfo = $mediaFileData = [];
  544. $specialNodeInfo = $specialNodeData = [];
  545. $productAttrInfo = $productImgInfo = $productNetdiskInfo = $productSpecInfo = $productSpecValueInfo = [];
  546. $productAttrData = $productImgData = $productNetdiskData = $productSpecData = $productSpecValueData = [];
  547. if ('images' == $v['nid']) { // 图集模型的特性表数据
  548. $imgUploadInfo = !empty($imgUploadRow[$val['aid']]) ? $imgUploadRow[$val['aid']] : [];
  549. } else if ('download' == $v['nid']) { // 下载模型的特性表数据
  550. $downloadFileInfo = !empty($downloadFileRow[$val['aid']]) ? $downloadFileRow[$val['aid']] : [];
  551. } else if ('product' == $v['nid']) { // 新房模型的特性表数据
  552. // 属性值表 - 只复制同栏目的属性值
  553. if ($typeid_old == $typeid) {
  554. $productAttrInfo = !empty($productAttrRow[$val['aid']]) ? $productAttrRow[$val['aid']] : [];
  555. }
  556. // 产品图集表
  557. $productImgInfo = !empty($productImgRow[$val['aid']]) ? $productImgRow[$val['aid']] : [];
  558. // 产品虚拟表
  559. $productNetdiskInfo = !empty($productNetdiskRow[$val['aid']]) ? $productNetdiskRow[$val['aid']] : [];
  560. // 产品规格数据表
  561. $productSpecInfo = !empty($productSpecRow[$val['aid']]) ? $productSpecRow[$val['aid']] : [];
  562. // 产品多规格组装表
  563. $productSpecValueInfo = !empty($productSpecValueRow[$val['aid']]) ? $productSpecValueRow[$val['aid']] : [];
  564. } else if ('media' == $v['nid']) { // 视频模型的特性表数据
  565. $mediaFileInfo = !empty($mediaFileRow[$val['aid']]) ? $mediaFileRow[$val['aid']] : [];
  566. } else if ('special' == $v['nid']) { // 专题模型的特性表数据
  567. $specialNodeInfo = !empty($specialNodeRow[$val['aid']]) ? $specialNodeRow[$val['aid']] : [];
  568. }
  569. // 图集模型
  570. if ('images' == $v['nid']) {
  571. foreach ($imgUploadInfo as $img_k => $img_v) {
  572. $img_v['aid'] = $new_aid;
  573. $imgUploadData[] = $img_v;
  574. }
  575. } else if ('download' == $v['nid']) {
  576. // 附件表
  577. foreach ($downloadFileInfo as $file_k => $file_v) {
  578. $file_v['aid'] = $new_aid;
  579. $downloadFileData[] = $file_v;
  580. }
  581. } else if ('product' == $v['nid']) {
  582. // 属性值表
  583. foreach ($productAttrInfo as $attr_k => $attr_v) {
  584. $attr_v['aid'] = $new_aid;
  585. $productAttrData[] = $attr_v;
  586. }
  587. // 产品图集表
  588. foreach ($productImgInfo as $img_k => $img_v) {
  589. $img_v['aid'] = $new_aid;
  590. $productImgData[] = $img_v;
  591. }
  592. // 产品虚拟表
  593. foreach ($productNetdiskInfo as $nd_k => $nd_v) {
  594. $nd_v['aid'] = $new_aid;
  595. $productNetdiskData[] = $nd_v;
  596. }
  597. // 产品规格数据表
  598. foreach ($productSpecInfo as $spec_k => $spec_v) {
  599. $spec_v['aid'] = $new_aid;
  600. $productSpecData[] = $spec_v;
  601. }
  602. // 产品多规格组装表
  603. foreach ($productSpecValueInfo as $specv_k => $specv_v) {
  604. $specv_v['aid'] = $new_aid;
  605. $productSpecValueData[] = $specv_v;
  606. }
  607. } else if ('media' == $v['nid']) {
  608. // 附件表
  609. foreach ($mediaFileInfo as $file_k => $file_v) {
  610. $file_v['aid'] = $new_aid;
  611. $mediaFileData[] = $file_v;
  612. }
  613. } else if ('special' == $v['nid']) {
  614. // 附件表
  615. foreach ($specialNodeInfo as $node_k => $node_v) {
  616. $node_v['aid'] = $new_aid;
  617. $specialNodeData[] = $node_v;
  618. }
  619. }
  620. // 批量写入内容扩展表
  621. if (!empty($contentInfo)) {
  622. Db::name($tableExt)->insert($contentInfo);
  623. }
  624. // 批量写入图集模型的图片表
  625. if ('images' == $v['nid']) {
  626. !empty($imgUploadData) && model('ImagesUpload')->saveAll($imgUploadData);
  627. } else if ('download' == $v['nid']) {
  628. // 附件表
  629. !empty($downloadFileData) && model('DownloadFile')->saveAll($downloadFileData);
  630. } else if ('product' == $v['nid']) {
  631. // 属性值表
  632. !empty($productAttrData) && Db::name('product_attr')->insertAll($productAttrData);
  633. // 产品图集表
  634. !empty($productImgData) && model('ProductImg')->saveAll($productImgData);
  635. // 产品虚拟表
  636. !empty($productNetdiskData) && model('ProductNetdisk')->saveAll($productNetdiskData);
  637. // 产品规格数据表
  638. !empty($productSpecData) && model('ProductSpecData')->saveAll($productSpecData);
  639. // 产品多规格组装表
  640. !empty($productSpecValueData) && model('ProductSpecValue')->saveAll($productSpecValueData);
  641. } else if ('media' == $v['nid']) {
  642. // 附件表
  643. !empty($mediaFileData) && model('MediaFile')->saveAll($mediaFileData);
  644. } else if ('special' == $v['nid']) {
  645. // 附件表
  646. !empty($specialNodeData) && model('SpecialNode')->saveAll($specialNodeData);
  647. }
  648. } else {
  649. $error_aid[] = $aid;
  650. adminLog("文档{$aid}复制失败");
  651. }
  652. }
  653. }
  654. }
  655. //同步栏目内容
  656. $single_arc = Db::name('archives')->where(['lang' => 'cn', 'is_del' => 0,'channel'=>6])->select();
  657. $lang_single_arc = Db::name('archives')->where(['lang' => $lang, 'is_del' => 0,'channel'=>6])->field('aid,typeid')->getAllWithIndex('typeid');
  658. if (!empty($single_arc)){
  659. $aids = get_arr_column($single_arc,'aid');
  660. $typeids = get_arr_column($single_arc,'typeid');
  661. $contentRow = Db::name('single_content')->field('id', true)->where(['aid' => ['IN', $aids]])->getAllWithIndex('aid');
  662. $typeids_arr = [];
  663. foreach ($typeids as $key => $val){
  664. $typeids_arr[] = 'tid' . $val;
  665. }
  666. $lang_typeids = Db::name('language_attr')->where(['attr_group' => 'arctype', 'attr_name' => ['in',$typeids_arr],'lang'=>$lang])->field('attr_value,attr_name')->getAllWithIndex('attr_name');
  667. foreach ($contentRow as $key => $val) {
  668. //多语言栏目id
  669. $typeid = $lang_typeids['tid' . $val['typeid']]['attr_value'];
  670. $lang_aid = $lang_single_arc[$typeid]['aid'];
  671. Db::name('single_content')->where('aid',$lang_aid)->update(['content'=>$val['content'],'content_ey_m'=>$val['content_ey_m']]);
  672. }
  673. }
  674. /*清空sql_cache_table数据缓存表 并 添加查询执行语句到mysql缓存表*/
  675. Db::name('sql_cache_table')->execute('TRUNCATE TABLE ' . config('database.prefix') . 'sql_cache_table');
  676. model('SqlCacheTable')->InsertSqlCacheTable(true);
  677. /* END */
  678. }
  679. return true;
  680. }
  681. public function getRestricTypeText($restricType = 0)
  682. {
  683. $restricTypeText = '免费';
  684. if (1 === intval($restricType)) {
  685. $restricTypeText = '付费';
  686. } else if (2 === intval($restricType)) {
  687. $restricTypeText = '指定会员';
  688. } else if (3 === intval($restricType)) {
  689. $restricTypeText = '会员付费';
  690. }
  691. return $restricTypeText;
  692. }
  693. }