Deploy Ladill Queue / deploy (push) Successful in 53s
Co-authored-by: Cursor <cursoragent@cursor.com>
136 lines
4.5 KiB
PHP
136 lines
4.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Qms;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Controllers\Qms\Concerns\ScopesToAccount;
|
|
use App\Models\Branch;
|
|
use App\Models\Member;
|
|
use App\Services\Identity\IdentityTeamClient;
|
|
use App\Services\Qms\AuditLogger;
|
|
use Illuminate\Http\RedirectResponse;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\View\View;
|
|
|
|
class MemberController extends Controller
|
|
{
|
|
use ScopesToAccount;
|
|
|
|
public function index(Request $request): View
|
|
{
|
|
$this->authorizeAbility($request, 'admin.members.view');
|
|
$organization = $this->organization($request);
|
|
|
|
$members = Member::owned($this->ownerRef($request))
|
|
->where('organization_id', $organization->id)
|
|
->with('branch')
|
|
->orderBy('created_at')
|
|
->get();
|
|
|
|
$operatorRoles = ['queue_operator', 'counter_staff', 'receptionist'];
|
|
|
|
$heroStats = [
|
|
'total' => $members->count(),
|
|
'operators' => $members->whereIn('role', $operatorRoles)->count(),
|
|
'branches' => $members->whereNotNull('branch_id')->pluck('branch_id')->unique()->count(),
|
|
];
|
|
|
|
return view('qms.admin.members.index', [
|
|
'members' => $members,
|
|
'organization' => $organization,
|
|
'roles' => config('qms.roles'),
|
|
'heroStats' => $heroStats,
|
|
]);
|
|
}
|
|
|
|
public function create(Request $request, IdentityTeamClient $identity): View
|
|
{
|
|
$this->authorizeAbility($request, 'admin.members.manage');
|
|
$organization = $this->organization($request);
|
|
|
|
$branches = Branch::owned($this->ownerRef($request))
|
|
->where('organization_id', $organization->id)
|
|
->where('is_active', true)
|
|
->orderBy('name')
|
|
->get();
|
|
|
|
$mailboxOptions = [];
|
|
try {
|
|
$mailboxOptions = $identity->mailboxOptions($this->ownerRef($request));
|
|
} catch (\Throwable) {
|
|
// Identity optional for form rendering.
|
|
}
|
|
|
|
return view('qms.admin.members.create', [
|
|
'organization' => $organization,
|
|
'branches' => $branches,
|
|
'roles' => config('qms.roles'),
|
|
'mailboxOptions' => $mailboxOptions,
|
|
]);
|
|
}
|
|
|
|
public function store(Request $request, IdentityTeamClient $identity): RedirectResponse
|
|
{
|
|
$this->authorizeAbility($request, 'admin.members.manage');
|
|
$organization = $this->organization($request);
|
|
$owner = $this->ownerRef($request);
|
|
|
|
$validated = $request->validate([
|
|
'email' => ['required', 'email', 'max:255'],
|
|
'role' => ['required', 'string', 'in:'.implode(',', array_keys(config('qms.roles')))],
|
|
'branch_id' => ['nullable', 'integer', 'exists:queue_branches,id'],
|
|
]);
|
|
|
|
$email = strtolower(trim($validated['email']));
|
|
|
|
if ($email === strtolower((string) $request->user()->email)) {
|
|
return back()->withErrors(['email' => 'You cannot invite yourself.']);
|
|
}
|
|
|
|
$identity->inviteAppMember(
|
|
$owner,
|
|
$email,
|
|
['queue'],
|
|
[
|
|
'queue' => [
|
|
'organization_id' => $organization->id,
|
|
'role' => $validated['role'],
|
|
'branch_id' => $validated['branch_id'] ?? null,
|
|
],
|
|
],
|
|
);
|
|
|
|
$member = Member::updateOrCreate(
|
|
[
|
|
'organization_id' => $organization->id,
|
|
'user_ref' => $email,
|
|
],
|
|
[
|
|
'owner_ref' => $owner,
|
|
'role' => $validated['role'],
|
|
'branch_id' => $validated['branch_id'] ?? null,
|
|
],
|
|
);
|
|
|
|
AuditLogger::record($owner, 'member.invited', $organization->id, $owner, Member::class, $member->id);
|
|
|
|
return redirect()->route('qms.members.index')->with('success', 'Invitation sent to '.$email.'.');
|
|
}
|
|
|
|
public function destroy(Request $request, Member $member): RedirectResponse
|
|
{
|
|
$this->authorizeAbility($request, 'admin.members.manage');
|
|
$this->authorizeOwner($request, $member);
|
|
|
|
abort_if($member->user_ref === $this->ownerRef($request), 422, 'You cannot remove yourself.');
|
|
|
|
$memberId = $member->id;
|
|
$organizationId = $member->organization_id;
|
|
$member->delete();
|
|
|
|
AuditLogger::record($this->ownerRef($request), 'member.deleted', $organizationId, $this->ownerRef($request), Member::class, $memberId);
|
|
|
|
return redirect()->route('qms.members.index')->with('success', 'Member removed.');
|
|
}
|
|
}
|