Files
ladill-care/app/Services/Care/TeamMemberProvisioner.php
T
isaaccladandCursor 30ba94052e
Deploy Ladill Care / deploy (push) Successful in 25s
Switch team invites to email-only flow via identity API.
Replace public ID member form with email invites, SSO provisioning, and
post-auth redirect for pending team access.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-01 06:45:36 +00:00

57 lines
1.6 KiB
PHP

<?php
namespace App\Services\Care;
use App\Models\Member;
use App\Models\User;
use App\Services\Identity\IdentityTeamClient;
class TeamMemberProvisioner
{
public function __construct(
protected IdentityTeamClient $identity,
) {}
public function sync(User $user): void
{
Member::query()
->where('user_ref', strtolower((string) $user->email))
->update(['user_ref' => $user->ownerRef()]);
try {
$access = $this->identity->teamAccess($user->ownerRef());
} catch (\Throwable) {
return;
}
foreach ($access as $grant) {
if (($grant['self'] ?? false) || ($grant['full_access'] ?? false)) {
continue;
}
$apps = (array) ($grant['apps'] ?? []);
if (! in_array('care', $apps, true)) {
continue;
}
$appMeta = (array) data_get($grant, 'metadata.care', []);
$organizationId = (int) ($appMeta['organization_id'] ?? 0);
if ($organizationId <= 0) {
continue;
}
Member::updateOrCreate(
[
'organization_id' => $organizationId,
'user_ref' => $user->ownerRef(),
],
[
'owner_ref' => (string) ($grant['account'] ?? $user->ownerRef()),
'role' => (string) ($appMeta['role'] ?? 'member'),
'branch_id' => $appMeta['branch_id'] ?? null,
],
);
}
}
}