Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
73 lines
1.6 KiB
PHP
73 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs\Dav;
|
|
|
|
use Illuminate\Bus\Batch;
|
|
use Illuminate\Bus\Batchable;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use App\Models\Account\AddressBookSubscription;
|
|
|
|
class DeleteMultipleVCard implements ShouldQueue
|
|
{
|
|
use Batchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
/**
|
|
* @var AddressBookSubscription
|
|
*/
|
|
private $subscription;
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private $hrefs;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @param AddressBookSubscription $subscription
|
|
* @param array $hrefs
|
|
* @return void
|
|
*/
|
|
public function __construct(AddressBookSubscription $subscription, array $hrefs)
|
|
{
|
|
$this->subscription = $subscription->withoutRelations();
|
|
$this->hrefs = $hrefs;
|
|
}
|
|
|
|
/**
|
|
* Update the Last Consulted At field for the given contact.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle(): void
|
|
{
|
|
if (! $this->batching()) {
|
|
return; // @codeCoverageIgnore
|
|
}
|
|
|
|
$batch = $this->batch();
|
|
|
|
collect($this->hrefs)
|
|
->each(function ($href) use ($batch) {
|
|
$this->deleteVCard($href, $batch);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Delete the contact.
|
|
*
|
|
* @param string $href
|
|
* @param \Illuminate\Bus\Batch $batch
|
|
* @return void
|
|
*/
|
|
private function deleteVCard(string $href, Batch $batch): void
|
|
{
|
|
$batch->add([
|
|
new DeleteVCard($this->subscription, $href),
|
|
]);
|
|
}
|
|
}
|