SyncAlbumContent.php 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. <?php
  2. namespace App\Console\Commands;
  3. use Carbon\Carbon;
  4. use Illuminate\Console\Command;
  5. use Illuminate\Support\Facades\DB;
  6. use Illuminate\Support\Str;
  7. /**
  8. * 导入相册内容到产品表
  9. * 先在log中复制$tableMapping到这里,然后运行命令
  10. * php artisan sync:album-content
  11. */
  12. class SyncAlbumContent extends Command
  13. {
  14. /**
  15. * The name and signature of the console command.
  16. *
  17. * @var string
  18. */
  19. protected $signature = 'sync:album-content';
  20. /**
  21. * The console command description.
  22. *
  23. * @var string
  24. */
  25. protected $description = 'Sync album content to product tables';
  26. /**
  27. * Execute the console command.
  28. *
  29. * @return int
  30. */
  31. public function handle()
  32. {
  33. exit;
  34. $tableMapping = json_decode(' [{"base_product_category":11,"album_path_id":21},{"base_product_category":12,"album_path_id":22},{"base_product_category":13,"album_path_id":31},{"base_product_category":14,"album_path_id":35},{"base_product_category":15,"album_path_id":51},{"base_product_category":16,"album_path_id":64},{"base_product_category":17,"album_path_id":74},{"base_product_category":18,"album_path_id":79},{"base_product_category":19,"album_path_id":83},{"base_product_category":20,"album_path_id":114},{"base_product_category":21,"album_path_id":123},{"base_product_category":22,"album_path_id":141},{"base_product_category":23,"album_path_id":142},{"base_product_category":24,"album_path_id":143},{"base_product_category":25,"album_path_id":145},{"base_product_category":26,"album_path_id":151},{"base_product_category":27,"album_path_id":153},{"base_product_category":28,"album_path_id":154}] ');
  35. foreach ($tableMapping as $mapping) {
  36. $mapping = (array)$mapping;
  37. $albumContents = DB::table('album_content')
  38. ->where('path_id', $mapping['album_path_id'])
  39. ->get();
  40. foreach ($albumContents as $albumContent) {
  41. // Insert or update base_product
  42. $baseProduct = DB::table('base_product')
  43. ->where('title', $albumContent->model)
  44. ->first();
  45. $detail = json_decode($albumContent->detail);
  46. $detail_cn = json_decode($albumContent->detail_cn);
  47. $content = "";
  48. if ($detail) {
  49. foreach ($detail as $key => $value) {
  50. $content .= '<img src="'. $value. '" width="100%">';
  51. }
  52. }
  53. // if ($detail_cn) {
  54. // foreach ($detail_cn as $key => $value) {
  55. // $content .= '<img src="'. $value. '" width="100%">';
  56. // }
  57. // }
  58. $baseProductId = 0;
  59. $sku = '';
  60. if (strpos($albumContent->model, "MTB-") === 0) {
  61. $sku = $albumContent->model;
  62. }
  63. if (!$baseProduct) {
  64. $baseProduct = DB::table('base_product')
  65. ->insertGetId([
  66. 'title' => $albumContent->model,
  67. 'category_id' => $mapping['base_product_category'],
  68. 'sku' => $sku,
  69. 'content' => $content,
  70. 'created_at' => Carbon::now(),
  71. 'updated_at' => Carbon::now(),
  72. 'seo_title' => $albumContent->model,
  73. ]);
  74. $baseProductId = $baseProduct;
  75. } else {
  76. DB::table('base_product')
  77. ->where('id', $baseProduct->id)
  78. ->update([
  79. 'title' => $albumContent->model,
  80. 'category_id' => $mapping['base_product_category'],
  81. 'sku' => $sku,
  82. 'content' => $content,
  83. 'updated_at' => Carbon::now(),
  84. 'seo_title' => $albumContent->model,
  85. ]);
  86. $baseProductId = $baseProduct->id;
  87. }
  88. // var_dump($baseProduct->id);
  89. // exit;
  90. // Insert base_product_image
  91. $photos = json_decode($albumContent->photo, true);
  92. if (is_array($photos)) {
  93. foreach ($photos as $photo) {
  94. DB::table('base_product_image')
  95. ->insert([
  96. 'product_id' => $baseProductId,
  97. 'image_url' => $photo,
  98. 'created_at' => Carbon::now(),
  99. 'updated_at' => Carbon::now(),
  100. ]);
  101. }
  102. }
  103. // Insert base_video
  104. $videos = json_decode($albumContent->video, true);
  105. if (is_array($videos)) {
  106. foreach ($videos as $video) {
  107. if (isset($video['video_src']) && $video['video_src'] !== '0' && !empty($video['video_src'])) {
  108. DB::table('base_video')
  109. ->insert([
  110. 'title' => $video['video_title'] ?? null,
  111. 'category_id' => 1,
  112. 'video_url' => $video['video_src'],
  113. 'cover_image' => $video['cover'] ?? null,
  114. 'enabled' => 1,
  115. 'created_at' => Carbon::now(),
  116. 'updated_at' => Carbon::now(),
  117. ]);
  118. }
  119. }
  120. }
  121. }
  122. }
  123. $this->info('Sync completed successfully.');
  124. return 0;
  125. }
  126. }