1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <?php
- namespace App\Admin\Repositories;
- use App\Models\SitePreviewVideo as Model;
- use Dcat\Admin\Repositories\EloquentRepository;
- use Illuminate\Support\Facades\DB;
- class SitePreviewVideo extends EloquentRepository
- {
- /**
- * Model.
- *
- * @var string
- */
- protected $eloquentClass = Model::class;
- /**
- *
- */
- public static function updatePreviewVideo($album_id, $data) {
- // Get existing videos from the database for the given album_id
- $model = new Model();
- $existingVideos = $model->where('album_id', $album_id)->get();
- // Iterate over the $data array
- foreach ($data as $value) {
- $videoSrc = $value['video_src'];
- // Check if the video_src already exists in the database
- $existingVideo = $existingVideos->firstWhere('video_url', $videoSrc);
- if ($existingVideo) {
- // If the video exists and the video_url is the same, do nothing
- continue;
- } else {
- // If the video_src doesn't exist, insert a new record
- $model->create([
- 'video_url' => $videoSrc,
- 'preview_url' => '',
- 'status' => 0, // Assuming status 1 means active or available
- 'created_at' => Corder::now(),
- 'updated_at' => Corder::now(),
- 'album_id' => $album_id,
- 'remark' => '', // Optional remark, you can customize this
- ]);
- }
- }
- // Now check for videos that are in the database but not in the $data array, and delete them
- foreach ($existingVideos as $existing) {
- $videoExistsInData = false;
- // Check if the current video exists in the data array
- foreach ($data as $value) {
- if ($value['video_src'] === $existing->video_url) {
- $videoExistsInData = true;
- break;
- }
- }
- // If the video does not exist in the data, delete it
- if (!$videoExistsInData) {
- $existing->delete();
- }
- }
- }
- }
|