SiteAlbumController.php 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497
  1. <?php
  2. namespace App\Admin\Controllers;
  3. use App\Admin\Repositories\SiteAlbum;
  4. use App\Admin\Repositories\SiteAlbumFolder;
  5. use App\Admin\Repositories\SiteAlbumLog;
  6. use App\Libraries\CommonHelper;
  7. use App\Models\SiteAlbumFolder as SiteAlbumFolderModel;
  8. use Dcat\Admin\Form;
  9. use Dcat\Admin\Grid;
  10. use Dcat\Admin\Show;
  11. use Dcat\Admin\Http\Controllers\AdminController;
  12. use Dcat\Admin\Layout\Content;
  13. use Dcat\Admin\Admin;
  14. use App\Admin\Repositories\NullRepository;
  15. use Dcat\Admin\Traits\HasUploadedFile;
  16. use Illuminate\Support\Facades\Cache;
  17. use function Symfony\Component\Translation\t;
  18. class SiteAlbumController extends AdminController
  19. {
  20. use HasUploadedFile;
  21. public function title()
  22. {
  23. return admin_trans( 'admin.album');
  24. }
  25. /**
  26. * page index
  27. */
  28. public function index(Content $content)
  29. {
  30. //记录folder_id
  31. $folderId = isset($_GET['folder_id']) ? intval($_GET['folder_id']) : 0;
  32. //保存临时变量
  33. setTempValue('folderId', $folderId);
  34. $html = $content
  35. ->header(admin_trans( 'admin.album'))
  36. ->body($this->indexForm());
  37. $html = $html->render();
  38. //删除第一个formID对应的JS代码
  39. preg_match('/<form[^>]*id="([^"]*)"[^>]*>/', $html, $matches);
  40. if (isset($matches[1])) {
  41. $formId = $matches[1]; // 获取 id 的值
  42. // echo "找到的 form id: " . $formId . "\n";
  43. // 2. 根据 id 值,删除对应的 JavaScript 代码
  44. $pattern = '/\$\(\'#' . preg_quote($formId, '/') . '\'\)\.form\(\{.*?\}\);/s';
  45. $html = preg_replace($pattern, '', $html);
  46. }
  47. //把第一个form标签替换成div标签
  48. $html = preg_replace('/<form([^>]*)>(.*?)<\/form>/s', '<div$1>$2</div>', $html, 1);
  49. return $html;
  50. }
  51. protected function indexForm()
  52. {
  53. return Form::make(new NullRepository(), function (Form $form) {
  54. $form->action('/site-album');
  55. $folderModel = new SiteAlbumFolderModel();
  56. $folderTree = $folderModel->allNodes();
  57. $form->block(2, function (Form\BlockForm $form) use ($folderTree) {
  58. $type = [
  59. 'default' => [
  60. 'icon' => true,
  61. ],
  62. ];
  63. $plugins = ['types'];
  64. $form->tree()
  65. ->setTitleColumn('title')
  66. ->nodes($folderTree)
  67. ->type($type)
  68. ->plugins($plugins)
  69. ->width(12,0);
  70. });
  71. $form->block(10, function (Form\BlockForm $form) {
  72. $form->html($this->grid())->width(12);
  73. });
  74. //以下JS代码用于点击文件夹时,自动跳转到相应页面
  75. Admin::script(
  76. <<<JS
  77. setTimeout(() => {
  78. // 获取所有具有 class="jstree-anchor" 的 <a> 元素
  79. const anchors = document.querySelectorAll('a.jstree-anchor');
  80. anchors.forEach(anchor => {
  81. // 提取 id 中的数字部分
  82. const id = anchor.id.split('_')[0];
  83. // 动态生成跳转链接
  84. const href = `/prime-control/site-album?folder_id=`+id;
  85. // 绑定点击事件
  86. anchor.addEventListener('click', function(event) {
  87. event.preventDefault(); // 阻止默认的链接跳转行为
  88. window.location.href = href; // 跳转到目标页面
  89. });
  90. folderId = $('select[name="folder_id"]').data('value');
  91. if (folderId == id) {
  92. // 如果匹配,添加 jstree-clicked 类
  93. anchor.classList.add('jstree-clicked');
  94. }
  95. });
  96. }, 100);
  97. const firstCheckbox = document.querySelector('.vs-checkbox-primary');
  98. // 如果找到元素,则隐藏它
  99. if (firstCheckbox) {
  100. firstCheckbox.style.display = 'none';
  101. }
  102. //清空_previous_
  103. const input = document.querySelector('input[name="_previous_"]');
  104. if (input) {
  105. // 清空其值
  106. input.value = '';
  107. }
  108. JS
  109. );
  110. });
  111. }
  112. protected function grid()
  113. {
  114. return Grid::make(new SiteAlbum(), function (Grid $grid) {
  115. //默认分页条数
  116. $grid->paginate(config('admin.per_page'));
  117. $grid->column('id')->sortable();
  118. $grid->column('cover')->display(function ($images) {
  119. $images = json_decode($images);
  120. // 限制最多显示2个缩略图
  121. $dataImages = array_slice($images, 0, 1);
  122. return CommonHelper::displayImage($dataImages,80);
  123. });
  124. $grid->column('title',admin_trans_label('product_name'));
  125. //$grid->column('title_en');
  126. $grid->column('model');
  127. $grid->column('folder_id',admin_trans_label('folder'))
  128. ->display(function ($folder_id) {
  129. $folderModel = new SiteAlbumFolderModel();
  130. $folderName = $folderModel->find($folder_id)->title;
  131. return $folderName;
  132. });
  133. $grid->column('enabled')->using(admin_trans_array(config('dictionary.enabled'))) ->label([
  134. 0 => 'danger',
  135. 1 => 'success',
  136. ]);
  137. $grid->column('status')->display(function ($status) {
  138. $updated_at = $this->updated_at->format('Y-m-d H:i:s');
  139. //三个月前显示待更新
  140. if (time() - strtotime($updated_at) > 90 * 24 * 3600) {
  141. return '<span class="label label-warning" style="background:#dda451">待更新</span>';
  142. } else {
  143. return '<span class="label label-success" style="background:#21b978">正常</span>';
  144. }
  145. });
  146. $grid->column('missing_content')->display(function ($missing_content) {
  147. $missing_content = [];
  148. if ($this->cover == '[]') {$missing_content[] = '主图';}
  149. if ($this->en_detail == '[]') {$missing_content[] = '英文详情';}
  150. if ($this->cn_detail == '[]') {$missing_content[] = '中文详情';}
  151. if ($this->video == '[]') {$missing_content[] = '视频';}
  152. if ($this->poster == '[]') {$missing_content[] = '海报';}
  153. if ($this->cert == '[]') {$missing_content[] = '证书';}
  154. if ($this->pdf == '[]') {$missing_content[] = 'PDF';}
  155. return implode(' / ', $missing_content);
  156. });
  157. // 筛选
  158. $grid->filter(function (Grid\Filter $filter) {
  159. $selectOptions = SiteAlbumFolderModel::selectOptions();
  160. unset($selectOptions[0]);
  161. $filter->panel();
  162. $filter->expand();
  163. $filter->like('model')->width(2);
  164. $filter->equal('folder_id',admin_trans_label('folder'))->select($selectOptions)->width(3);
  165. });
  166. $grid->disableViewButton();
  167. $grid->disablePerPages();
  168. $grid->disableRefreshButton();
  169. $grid->model()->orderBy('order', 'asc')->orderBy('id', 'desc');
  170. //弹窗大小
  171. $grid->setDialogFormDimensions('830px','670px');
  172. });
  173. }
  174. protected function form()
  175. {
  176. $thisObj = $this;
  177. return Form::make(new SiteAlbum(), function (Form $form) use ($thisObj) {
  178. $form->width(9, 1);
  179. $form->disableViewButton();
  180. $form->disableViewCheck();
  181. $form->saving(function (Form $form) use ($thisObj) {
  182. //处理video
  183. $videos = $form->input('video');
  184. if ($videos) {
  185. foreach ($videos as $key => $value) {
  186. if (empty($value['cover']) && $value['_remove_'] != 1) {
  187. //自动生成封面
  188. $result = $thisObj->autoGenerateCover($value['video_src']);
  189. if ($result['status']) {
  190. $videos[$key]['cover'] = $result['path'];
  191. } else {
  192. return $form->response()->error($result['msg']);
  193. }
  194. }
  195. }
  196. } else {
  197. $videos = [];
  198. }
  199. $form->input('video', $videos);
  200. //处理pdf
  201. $pdfs = $form->input('pdf');
  202. $pdfs = empty($pdfs) ? [] : $pdfs;
  203. $form->input('pdf', $pdfs);
  204. //记录日志
  205. if (!$form->isCreating()) {
  206. $id = $form->getKey();
  207. $cacheKey = 'album_log_'.$id;
  208. Cache::add($cacheKey, json_encode($form->model()->toArray()), 3600);
  209. }
  210. });
  211. $form->saved(function (Form $form) {
  212. if (empty($form->input('model')) == false) {
  213. $id = $form->getKey();
  214. $action = $form->isCreating() ? 'add' : 'edit';
  215. if ($action == 'add') {
  216. $oldData = "[]";
  217. } else {
  218. $oldData = Cache::get('album_log_'. $id);
  219. Cache::forget('album_log_'. $id);
  220. }
  221. SiteAlbumLog::log($action, $id,$form->input('model'),$oldData);
  222. }
  223. });
  224. $form->tab(admin_trans_label('basic_info'), function (Form $form) {
  225. $selectOptions = SiteAlbumFolder::selectOptions();
  226. unset($selectOptions[0]);
  227. $folderId = getTempValue('folderId');
  228. if ($folderId == 0) {
  229. $folderId = array_key_first($selectOptions);
  230. }
  231. $form->select('folder_id')->options($selectOptions)->default($folderId)->required();
  232. $form->text('title',admin_trans_label('product_name'))->required();
  233. $form->text('title_en',admin_trans_label('product_name_en'))->required();
  234. $form->text('model')->required();
  235. $form->table('parameters',admin_trans_label('attribute_name'), function (Form\NestedForm $table) {
  236. $table->text('key')->required();
  237. $table->text('value')->required();
  238. })->setView('admin.form_custom.hasmanytable')
  239. ->saving(function ($input) {
  240. return json_encode($input);
  241. });
  242. $form->switch('enabled')->default(1);
  243. })->tab(admin_trans_label('cover'), function (Form $form) {
  244. $form->multipleImage('cover')
  245. ->retainable()//禁止删OSS图
  246. ->sortable() // 可拖动排序
  247. ->removable() // 可移除图片
  248. ->autoUpload() // 自动上传
  249. ->uniqueName()
  250. ->limit(config('admin.upload.oss_image.limit'))
  251. ->accept(config('admin.upload.oss_image.accept'))
  252. ->maxSize(config('admin.upload.oss_image.max_size'))
  253. ->dir(config("admin.upload.directory.image").'/uploads/'.date("Ymd"))
  254. ->saving(function ($images) use ($form) {
  255. return json_encode($images);
  256. });
  257. })->tab(admin_trans_label('en_detail'), function (Form $form) {
  258. $form->multipleImage('en_detail')
  259. ->retainable()//禁止删OSS图
  260. ->sortable() // 可拖动排序
  261. ->removable() // 可移除图片
  262. ->autoUpload() // 自动上传
  263. ->uniqueName()
  264. ->limit(config('admin.upload.oss_image.limit'))
  265. ->accept(config('admin.upload.oss_image.accept'))
  266. ->maxSize(config('admin.upload.oss_image.max_size'))
  267. ->dir(config("admin.upload.directory.image").'/uploads/'.date("Ymd"))
  268. ->saving(function ($images) use ($form) {
  269. return json_encode($images);
  270. });
  271. })->tab(admin_trans_label('cn_detail'), function (Form $form) {
  272. $form->multipleImage('cn_detail')
  273. ->retainable()//禁止删OSS图
  274. ->sortable() // 可拖动排序
  275. ->removable() // 可移除图片
  276. ->autoUpload() // 自动上传
  277. ->uniqueName()
  278. ->limit(config('admin.upload.oss_image.limit'))
  279. ->accept(config('admin.upload.oss_image.accept'))
  280. ->maxSize(config('admin.upload.oss_image.max_size'))
  281. ->dir(config("admin.upload.directory.image").'/uploads/'.date("Ymd"))
  282. ->saving(function ($images) use ($form) {
  283. return json_encode($images);
  284. });
  285. })->tab(admin_trans_label('video'), function (Form $form) {
  286. $count = 0;
  287. $form->hasMany('video', function (Form\NestedForm $form) use (&$count) {
  288. $videos = $form->model()->video;
  289. $imgArray = "";
  290. if ($videos) {
  291. $videos = json_decode($videos,true);
  292. foreach ($videos as $key => $value) {
  293. if ($value['cover'] && $key == $count-1) {
  294. $imgArray = [$value['cover']];
  295. }
  296. }
  297. }
  298. $imgHtml = CommonHelper::displayImage($imgArray);
  299. $form->html($imgHtml,admin_trans_label('image_preview'));
  300. $count++;
  301. $form->text('cover',admin_trans_label('video_cover'))->placeholder('自动生成')->readOnly();
  302. $form->tradFile('video_src')
  303. ->retainable()//禁止删OSS图
  304. ->removable() // 可移除图片
  305. ->autoUpload() // 自动上传
  306. ->uniqueName()//
  307. ->downloadable()
  308. ->accept(config('admin.upload.oss_video.accept'))
  309. ->maxSize(config('admin.upload.oss_video.max_size'))
  310. ->dir(config("admin.upload.directory.video").'/uploads/'.date("Ymd"))
  311. ->chunkSize(1024)
  312. ->required();
  313. })->useTable()
  314. ->customFormat(function ($data) {return json_decode($data,true);})
  315. ->setView('admin.form_custom.hasmanytable')
  316. ->saving(function ($input) {
  317. $data = [];
  318. foreach ($input as $value) {
  319. if ($value['_remove_'] != 1){
  320. $data[] = ['cover'=>$value['cover'],'video_src'=>$value['video_src']];
  321. }
  322. }
  323. return json_encode($data);
  324. });
  325. })->tab(admin_trans_label('poster'), function (Form $form) {
  326. $form->multipleImage('poster')
  327. ->retainable()//禁止删OSS图
  328. ->sortable() // 可拖动排序
  329. ->removable() // 可移除图片
  330. ->autoUpload() // 自动上传
  331. ->uniqueName()
  332. ->limit(config('admin.upload.oss_image.limit'))
  333. ->accept(config('admin.upload.oss_image.accept'))
  334. ->maxSize(config('admin.upload.oss_image.max_size'))
  335. ->dir(config("admin.upload.directory.image").'/uploads/'.date("Ymd"))
  336. ->saving(function ($images) use ($form) {
  337. return json_encode($images);
  338. });
  339. })->tab(admin_trans_label('cert'), function (Form $form) {
  340. $form->multipleImage('cert')
  341. ->retainable()//禁止删OSS图
  342. ->sortable() // 可拖动排序
  343. ->removable() // 可移除图片
  344. ->autoUpload() // 自动上传
  345. ->uniqueName()
  346. ->limit(config('admin.upload.oss_image.limit'))
  347. ->accept(config('admin.upload.oss_image.accept'))
  348. ->maxSize(config('admin.upload.oss_image.max_size'))
  349. ->dir(config("admin.upload.directory.image").'/uploads/'.date("Ymd"))
  350. ->saving(function ($images) use ($form) {
  351. return json_encode($images);
  352. });
  353. })->tab(admin_trans_label('pdf'), function (Form $form) {
  354. $form->hasMany('pdf', function ($form) {
  355. $form->text('pdf_title')->required();
  356. $form->text('pdf_title_en')->required();
  357. $form->tradFile('pdf_src')
  358. ->retainable()//禁止删OSS图
  359. ->removable() // 可移除图片
  360. ->autoUpload() // 自动上传
  361. ->uniqueName()
  362. ->downloadable()
  363. ->accept(config('admin.upload.oss_pdf.accept'))
  364. ->maxSize(config('admin.upload.oss_pdf.max_size'))
  365. ->dir(config("admin.upload.directory.pdf").'/uploads/'.date("Ymd"))
  366. ->chunkSize(1024)
  367. ->required();
  368. })->useTable()
  369. ->customFormat(function ($data) {
  370. return json_decode($data,true);
  371. })
  372. ->setView('admin.form_custom.hasmanytable')
  373. ->saving(function ($input) {
  374. $data = [];
  375. foreach ($input as $value) {
  376. if ($value['_remove_'] != 1){
  377. $data[] = ['pdf_title'=>$value['pdf_title'],'pdf_title_en' => $value['pdf_title_en'],'pdf_src'=>$value['pdf_src']];
  378. }
  379. }
  380. return json_encode($data);
  381. });
  382. });
  383. //以下JS代码用于点击列表时,带上folder_id参数,还有隐藏的tab切换功能
  384. $thisObj->formAddJS();
  385. });
  386. }
  387. /*
  388. * 自动生成视频封面,并上传到OSS
  389. */
  390. private function autoGenerateCover($videoSrc)
  391. {
  392. try {
  393. $cover = $videoSrc.'?x-oss-process=video/snapshot,t_2000,f_jpg,h_500,m_fast';
  394. $cover = CommonHelper::ossUrl($cover);
  395. $path = $this->upload($cover,'.jpg');
  396. } catch (\Exception $e) {
  397. $path = ['status'=>true,'path'=>'/static/common/images/no-image.jpg'];
  398. }
  399. return $path;
  400. }
  401. private function upload($file,$imgType='.jpg')
  402. {
  403. $disk = $this->disk('oss');
  404. $newName = uniqueCode("video_cover_").$imgType;
  405. $dir = config("admin.upload.directory.image").'/uploads/'.date("Ymd").'/'.$newName;
  406. $contents = file_get_contents($file);
  407. if (!$contents) {
  408. return ['status'=>false,'msg'=>'图片上传失败,请检查PHP配置'];
  409. }
  410. $disk->put($dir, $contents);
  411. return ['status'=>true,'path'=>$dir];
  412. }
  413. private function formAddJS() {
  414. $folderTabs = SiteAlbumFolder::getAllFolderTabs();
  415. $folderTabs = json_encode($folderTabs);
  416. //以下JS作用:1.点击列表时,把folder_id参数传递给表单 2.切换文件夹时,显示隐藏相应的tab
  417. Admin::script(
  418. <<<JS
  419. const featherIcon = document.querySelector('i.feather.icon-list');
  420. if (featherIcon) {
  421. // 找到 <i> 的上级 <a> 元素
  422. const parentLink = featherIcon.closest('a');
  423. if (parentLink) {
  424. // 绑定 onclick 事件
  425. parentLink.onclick = function(event) {
  426. // 阻止默认行为(如跳转)
  427. event.preventDefault();
  428. // 获取 folder_id 的值
  429. let folderIdValue = $('select[name="folder_id"]').val();
  430. // 在 href 后追加 ?folder_id=xxx
  431. if (parentLink.href) {
  432. const newHref = parentLink.href + '?folder_id=' + folderIdValue;
  433. window.location.href = newHref; // 跳转到新的 URL
  434. }
  435. };
  436. }
  437. }
  438. // 监听 <select name="folder_id"> 的变化事件
  439. $('select[name="folder_id"]').change(function() {
  440. showHideTabs($(this).val());
  441. });
  442. folderIdValue = $('select[name="folder_id"]').val();
  443. showHideTabs(folderIdValue);
  444. function showHideTabs(fid) {
  445. // 获取当前选中的值
  446. let folderTabs = {$folderTabs};
  447. const folderIdValue = fid;
  448. // 获取当前 folderIdValue 对应的标签索引
  449. const tabIndexes = folderTabs[folderIdValue];
  450. //console.log(tabIndexes);
  451. if (tabIndexes) {
  452. // 处理上方的 <li>,限定在 .nav-tabs 内
  453. $('.nav-tabs .nav-item').each(function(index) {
  454. if (index > 0) { // 跳过第一个固定元素
  455. $(this).hide();
  456. }
  457. });
  458. tabIndexes.forEach(function(index) {
  459. $('.nav-tabs .nav-item:eq(' + (Number(index) + 1) + ')').show(); // 使用字符串拼接
  460. });
  461. }
  462. }
  463. JS
  464. );
  465. }
  466. }