refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
71
app/Jobs/Dav/GetVCard.php
Normal file
71
app/Jobs/Dav/GetVCard.php
Normal file
@@ -0,0 +1,71 @@
|
||||
<?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),
|
||||
]);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user