Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
72 lines
1.8 KiB
PHP
72 lines
1.8 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Dav;
|
|
|
|
use Illuminate\Bus\Batchable;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use App\Models\Account\AddressBookSubscription;
|
|
use App\Services\DavClient\Utils\Model\ContactDto;
|
|
use App\Services\DavClient\Utils\Model\ContactUpdateDto;
|
|
|
|
class GetVCard implements ShouldQueue
|
|
{
|
|
use Batchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* @var AddressBookSubscription
|
|
*/
|
|
private $subscription;
|
|
|
|
/**
|
|
* @var ContactDto
|
|
*/
|
|
private $contact;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @param AddressBookSubscription $subscription
|
|
* @param ContactDto $contact
|
|
* @return void
|
|
*/
|
|
public function __construct(AddressBookSubscription $subscription, ContactDto $contact)
|
|
{
|
|
$this->subscription = $subscription->withoutRelations();
|
|
$this->contact = $contact;
|
|
}
|
|
|
|
/**
|
|
* Update the Last Consulted At field for the given contact.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
if (! $this->batching()) {
|
|
return;
|
|
}
|
|
|
|
Log::info(__CLASS__.' '.$this->contact->uri);
|
|
|
|
$response = $this->subscription->getClient()
|
|
->request('GET', $this->contact->uri);
|
|
|
|
$this->chainUpdateVCard($response->body());
|
|
}
|
|
|
|
private function chainUpdateVCard(string $card): void
|
|
{
|
|
$dto = new ContactUpdateDto($this->contact->uri, $this->contact->etag, $card);
|
|
|
|
if (($batch = $this->batch()) !== null) {
|
|
$batch->add([
|
|
new UpdateVCard($this->subscription->user, $this->subscription->addressbook->name, $dto),
|
|
]);
|
|
}
|
|
}
|
|
}
|