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:
62
app/Console/Commands/NewAddressBookSubscription.php
Normal file
62
app/Console/Commands/NewAddressBookSubscription.php
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
|
||||
namespace App\Console\Commands;
|
||||
|
||||
use App\Models\User\User;
|
||||
use Illuminate\Console\Command;
|
||||
use App\Jobs\SynchronizeAddressBooks;
|
||||
use App\Services\DavClient\CreateAddressBookSubscription;
|
||||
|
||||
class NewAddressBookSubscription extends Command
|
||||
{
|
||||
/**
|
||||
* The name and signature of the console command.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'monica:newaddressbooksubscription
|
||||
{--email= : Monica account to add subscription to}
|
||||
{--url= : CardDAV url of the address book}
|
||||
{--login= : Login}
|
||||
{--password= : Password of the account}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $description = 'Add a new all dav subscriptions';
|
||||
|
||||
/**
|
||||
* Execute the console command.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
$user = User::where('email', $this->option('email'))->firstOrFail();
|
||||
|
||||
$url = $this->option('url') ?? $this->ask('url', 'CardDAV url of the address book');
|
||||
$login = $this->option('login') ?? $this->ask('login', 'Login name');
|
||||
$password = $this->option('password') ?? $this->ask('password', 'User password');
|
||||
|
||||
try {
|
||||
$addressBookSubscription = app(CreateAddressBookSubscription::class)->execute([
|
||||
'account_id' => $user->account_id,
|
||||
'user_id' => $user->id,
|
||||
'base_uri' => $url,
|
||||
'username' => $login,
|
||||
'password' => $password,
|
||||
]);
|
||||
} catch (\Exception $e) {
|
||||
$this->error($e->getMessage());
|
||||
}
|
||||
|
||||
if (! isset($addressBookSubscription)) {
|
||||
$this->error('Could not add subscription');
|
||||
} else {
|
||||
$this->info('Subscription added');
|
||||
SynchronizeAddressBooks::dispatch($addressBookSubscription, true);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user