Files
ladill-care/app/Providers/AppServiceProvider.php
T
isaaccladandCursor e0a7a64d38
Deploy Ladill Care / deploy (push) Successful in 1m39s
Add clinical device registry, browser wedge scan, and local agent API.
Branch-scoped Care devices with hashed agent tokens, patient barcode lookup/labels, and provenance-aware vitals from a minimal device agent (Pro for agent hardware; wedge free).

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-17 14:28:46 +00:00

91 lines
2.9 KiB
PHP

<?php
namespace App\Providers;
use App\Events\ServiceEventOccurred;
use App\Listeners\PlatformServiceEventListener;
use App\Models\User;
use App\Services\Care\OrganizationResolver;
use App\Services\Care\PlanService;
use Illuminate\Cache\RateLimiting\Limit;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Event;
use Illuminate\Support\Facades\RateLimiter;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register(): void
{
//
}
public function boot(): void
{
Event::listen(ServiceEventOccurred::class, PlatformServiceEventListener::class);
RateLimiter::for('care-device', function (Request $request) {
$token = $request->header('X-Care-Device-Token')
?? $request->header('X-Device-Token')
?? $request->bearerToken()
?? $request->ip();
return Limit::perMinute(60)->by((string) $token);
});
View::composer([
'partials.sidebar',
'partials.topbar-desktop-widgets',
'partials.afia',
'partials.upgrade-banner',
'care.dashboard',
'components.app-layout',
], function ($view) {
/** @var User|null $user */
$user = auth()->user();
$planKey = 'free';
$isPro = false;
$isEnterprise = false;
$hasPaidPlan = false;
if ($user) {
$organization = app(OrganizationResolver::class)->resolveForUser($user);
if ($organization) {
$plans = app(PlanService::class);
$planKey = $plans->planKey($organization);
$isPro = $planKey === 'pro';
$isEnterprise = $planKey === 'enterprise';
$hasPaidPlan = $plans->hasPaidPlan($organization);
}
}
$view->with([
'planKey' => $planKey,
'isPro' => $isPro,
'isEnterprise' => $isEnterprise,
'hasPaidPlan' => $hasPaidPlan,
]);
});
View::composer(['partials.topbar'], function ($view) {
$view->with(\App\Support\MobileTopbar::resolve());
});
View::composer(['partials.launcher', 'partials.topbar-desktop-widgets', 'components.app-layout'], function () {
$user = auth()->user();
if (! $user || session()->has(\App\Support\StaffUx::SESSION_KEY)) {
return;
}
try {
$access = app(\App\Services\Identity\IdentityTeamClient::class)
->appAccess($user->ownerRef());
\App\Support\StaffUx::remember($access);
} catch (\Throwable) {
// Leave fail-open defaults until Identity is available.
}
});
}
}