Files
monica/app/Domains/Contact/ManageGroups/Web/Controllers/ContactModuleGroupController.php
T
2024-10-06 18:33:02 +02:00

84 lines
2.8 KiB
PHP

<?php
namespace App\Domains\Contact\ManageGroups\Web\Controllers;
use App\Domains\Contact\ManageGroups\Services\AddContactToGroup;
use App\Domains\Contact\ManageGroups\Services\CreateGroup;
use App\Domains\Contact\ManageGroups\Services\RemoveContactFromGroup;
use App\Domains\Contact\ManageGroups\Web\ViewHelpers\ModuleGroupsViewHelper;
use App\Http\Controllers\Controller;
use App\Models\Contact;
use App\Models\Group;
use Illuminate\Http\JsonResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
class ContactModuleGroupController extends Controller
{
/**
* Store the group.
* There are two scenarios:
* 1) the group needs to be created, and the contact needs to be associated
* with it,
* 2) the group already exists, and the contact needs to be associated
* with it.
*/
public function store(Request $request, string $vaultId, string $contactId): JsonResponse
{
// case if we need to create the group
// the current way to know if we need to create the group is if the
// name is empty. I know, it's not ideal.
$groupId = 0;
if ($request->input('name') != '') {
$data = [
'account_id' => Auth::user()->account_id,
'author_id' => Auth::id(),
'vault_id' => $vaultId,
'group_type_id' => $request->input('group_type_id'),
'name' => $request->input('name'),
];
$group = (new CreateGroup)->execute($data);
$groupId = $group->id;
}
$data = [
'account_id' => Auth::user()->account_id,
'author_id' => Auth::id(),
'vault_id' => $vaultId,
'contact_id' => $contactId,
'group_id' => $request->input('group_id') != 0 ? $request->input('group_id') : $groupId,
'group_type_role_id' => $request->input('group_type_role_id') ?? null,
];
AddContactToGroup::dispatchSync($data);
$contact = Contact::find($contactId);
$group = Group::find($data['group_id']);
return response()->json([
'data' => ModuleGroupsViewHelper::dto($contact, $group, true),
], 201);
}
public function destroy(Request $request, string $vaultId, string $contactId, int $groupId)
{
$data = [
'account_id' => Auth::user()->account_id,
'author_id' => Auth::id(),
'vault_id' => $vaultId,
'contact_id' => $contactId,
'group_id' => $groupId,
];
RemoveContactFromGroup::dispatch($data)->onQueue('high');
$contact = Contact::find($contactId);
$group = Group::find($groupId);
return response()->json([
'data' => ModuleGroupsViewHelper::dto($contact, $group, false),
], 200);
}
}