SitePreviewVideo.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. <?php
  2. namespace App\Admin\Repositories;
  3. use App\Models\SitePreviewVideo as Model;
  4. use Dcat\Admin\Repositories\EloquentRepository;
  5. use Illuminate\Support\Facades\DB;
  6. class SitePreviewVideo extends EloquentRepository
  7. {
  8. /**
  9. * Model.
  10. *
  11. * @var string
  12. */
  13. protected $eloquentClass = Model::class;
  14. /**
  15. *
  16. */
  17. public static function updatePreviewVideo($album_id, $data) {
  18. // Get existing videos from the database for the given album_id
  19. $model = new Model();
  20. $existingVideos = $model->where('album_id', $album_id)->get();
  21. // Iterate over the $data array
  22. foreach ($data as $value) {
  23. $videoSrc = $value['video_src'];
  24. // Check if the video_src already exists in the database
  25. $existingVideo = $existingVideos->firstWhere('video_url', $videoSrc);
  26. if ($existingVideo) {
  27. // If the video exists and the video_url is the same, do nothing
  28. continue;
  29. } else {
  30. // If the video_src doesn't exist, insert a new record
  31. $model->create([
  32. 'video_url' => $videoSrc,
  33. 'preview_url' => '',
  34. 'status' => 0, // Assuming status 1 means active or available
  35. 'created_at' => Corder::now(),
  36. 'updated_at' => Corder::now(),
  37. 'album_id' => $album_id,
  38. 'remark' => '', // Optional remark, you can customize this
  39. ]);
  40. }
  41. }
  42. // Now check for videos that are in the database but not in the $data array, and delete them
  43. foreach ($existingVideos as $existing) {
  44. $videoExistsInData = false;
  45. // Check if the current video exists in the data array
  46. foreach ($data as $value) {
  47. if ($value['video_src'] === $existing->video_url) {
  48. $videoExistsInData = true;
  49. break;
  50. }
  51. }
  52. // If the video does not exist in the data, delete it
  53. if (!$videoExistsInData) {
  54. $existing->delete();
  55. }
  56. }
  57. }
  58. }