92 lines
2.8 KiB
PHP
92 lines
2.8 KiB
PHP
<?php
|
|
|
|
namespace App\Services\DavClient;
|
|
|
|
use Illuminate\Support\Arr;
|
|
use App\Services\BaseService;
|
|
use function Safe\preg_replace;
|
|
use App\Models\Account\AddressBook;
|
|
use App\Models\Account\AddressBookSubscription;
|
|
use App\Services\DavClient\Utils\Dav\DavClient;
|
|
use App\Services\DavClient\Utils\AddressBookGetter;
|
|
use App\Services\DavClient\Utils\Dav\DavClientException;
|
|
|
|
class CreateAddressBookSubscription extends BaseService
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the service.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function rules()
|
|
{
|
|
return [
|
|
'account_id' => 'required|integer|exists:accounts,id',
|
|
'user_id' => 'required|integer|exists:users,id',
|
|
'base_uri' => 'required|string|url',
|
|
'username' => 'required|string',
|
|
'password' => 'required|string',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* Add a new Adress Book.
|
|
*
|
|
* @param array $data
|
|
* @return AddressBookSubscription|null
|
|
*/
|
|
public function execute(array $data): ?AddressBookSubscription
|
|
{
|
|
$this->validate($data);
|
|
|
|
$addressBookData = $this->getAddressBookData($data);
|
|
if (! $addressBookData) {
|
|
throw new DavClientException(__('Could not get address book data.'));
|
|
}
|
|
|
|
$lastAddressBook = AddressBook::where('account_id', $data['account_id'])
|
|
->orderBy('id', 'desc')
|
|
->first();
|
|
|
|
$lastId = 0;
|
|
if ($lastAddressBook) {
|
|
$lastId = intval(preg_replace('/\w+(\d+)/i', '$1', $lastAddressBook->name));
|
|
}
|
|
$nextAddressBookName = 'contacts'.($lastId + 1);
|
|
|
|
$addressBook = AddressBook::create([
|
|
'account_id' => $data['account_id'],
|
|
'user_id' => $data['user_id'],
|
|
'name' => $nextAddressBookName,
|
|
'description' => $addressBookData['name'],
|
|
]);
|
|
$subscription = AddressBookSubscription::create([
|
|
'account_id' => $data['account_id'],
|
|
'user_id' => $data['user_id'],
|
|
'username' => $data['username'],
|
|
'address_book_id' => $addressBook->id,
|
|
'uri' => $addressBookData['uri'],
|
|
'capabilities' => $addressBookData['capabilities'],
|
|
]);
|
|
$subscription->password = $data['password'];
|
|
$subscription->save();
|
|
|
|
return $subscription;
|
|
}
|
|
|
|
private function getAddressBookData(array $data): ?array
|
|
{
|
|
$client = $this->getClient($data);
|
|
|
|
return app(AddressBookGetter::class)
|
|
->execute($client);
|
|
}
|
|
|
|
private function getClient(array $data): DavClient
|
|
{
|
|
return app(DavClient::class)
|
|
->setBaseUri(Arr::get($data, 'base_uri'))
|
|
->setCredentials(Arr::get($data, 'username'), Arr::get($data, 'password'));
|
|
}
|
|
}
|