83 lines
2.6 KiB
PHP
83 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Contact\ManageLabels\Web\Controllers;
|
|
|
|
use App\Domains\Contact\ManageLabels\Services\AssignLabel;
|
|
use App\Domains\Contact\ManageLabels\Services\RemoveLabel;
|
|
use App\Domains\Contact\ManageLabels\Web\ViewHelpers\ModuleLabelViewHelper;
|
|
use App\Domains\Vault\ManageVaultSettings\Services\CreateLabel;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Models\Contact;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
class ContactModuleLabelController extends Controller
|
|
{
|
|
public function store(Request $request, string $vaultId, string $contactId)
|
|
{
|
|
$data = [
|
|
'account_id' => Auth::user()->account_id,
|
|
'author_id' => Auth::id(),
|
|
'vault_id' => $vaultId,
|
|
'name' => $request->input('name'),
|
|
'description' => $request->input('description'),
|
|
'bg_color' => 'bg-neutral-200',
|
|
'text_color' => 'text-neutral-800',
|
|
];
|
|
|
|
$label = (new CreateLabel)->execute($data);
|
|
|
|
$data = [
|
|
'account_id' => Auth::user()->account_id,
|
|
'author_id' => Auth::id(),
|
|
'vault_id' => $vaultId,
|
|
'contact_id' => $contactId,
|
|
'label_id' => $label->id,
|
|
];
|
|
|
|
$label = (new AssignLabel)->execute($data);
|
|
|
|
$contact = Contact::find($contactId);
|
|
|
|
return response()->json([
|
|
'data' => ModuleLabelViewHelper::dtoLabel($label, $contact, true),
|
|
], 201);
|
|
}
|
|
|
|
public function update(Request $request, string $vaultId, string $contactId, int $labelId)
|
|
{
|
|
$data = [
|
|
'account_id' => Auth::user()->account_id,
|
|
'author_id' => Auth::id(),
|
|
'vault_id' => $vaultId,
|
|
'contact_id' => $contactId,
|
|
'label_id' => $labelId,
|
|
];
|
|
|
|
$label = (new AssignLabel)->execute($data);
|
|
$contact = Contact::find($contactId);
|
|
|
|
return response()->json([
|
|
'data' => ModuleLabelViewHelper::dtoLabel($label, $contact, true),
|
|
], 200);
|
|
}
|
|
|
|
public function destroy(Request $request, string $vaultId, string $contactId, int $labelId)
|
|
{
|
|
$data = [
|
|
'account_id' => Auth::user()->account_id,
|
|
'author_id' => Auth::id(),
|
|
'vault_id' => $vaultId,
|
|
'contact_id' => $contactId,
|
|
'label_id' => $labelId,
|
|
];
|
|
|
|
$label = (new RemoveLabel)->execute($data);
|
|
$contact = Contact::find($contactId);
|
|
|
|
return response()->json([
|
|
'data' => ModuleLabelViewHelper::dtoLabel($label, $contact, false),
|
|
], 200);
|
|
}
|
|
}
|