52 lines
1.4 KiB
PHP
52 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Models\Bookmark;
|
|
use App\Models\BookmarkTag;
|
|
use App\Models\Tag;
|
|
use App\Models\User;
|
|
use DateTimeImmutable;
|
|
use DateTimeInterface;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ImportBookmark implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
protected array $bookmarks_json;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*/
|
|
public function __construct(protected User $user, array ...$bookmarks_json)
|
|
{
|
|
$this->bookmarks_json = $bookmarks_json;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
foreach ($this->bookmarks_json as $bookmark_json) {
|
|
$created_at = DateTimeImmutable::createFromFormat(DateTimeInterface::ISO8601_EXPANDED, $bookmark_json['time']);
|
|
|
|
$bookmark = new Bookmark;
|
|
$bookmark->user()->associate($this->user);
|
|
$bookmark->href = $bookmark_json['href'];
|
|
$bookmark->title = $bookmark_json['description'];
|
|
$bookmark->description = $bookmark_json['extended'];
|
|
$bookmark->created_at = $created_at;
|
|
$bookmark->updated_at = $created_at;
|
|
$bookmark->save();
|
|
|
|
$bookmark->syncTagsFromString($bookmark_json['tags']);
|
|
}
|
|
}
|
|
}
|