## Summary - remove tenant-based Graph options access from runtime service paths and enforce provider-only resolution - add `MicrosoftGraphOptionsResolver` and `ProviderConfigurationRequiredException` for centralized, actionable provider-config errors - turn `Tenant::graphOptions()` into a fail-fast kill switch to prevent legacy runtime usage - add and update tests (including guardrail) to enforce no reintroduction in `app/` - update Spec 088 artifacts (`spec`, `plan`, `research`, `tasks`, checklist) ## Validation - `vendor/bin/sail bin pint --dirty` - `vendor/bin/sail artisan test --compact --filter=NoLegacyTenantGraphOptions` - `vendor/bin/sail artisan test --compact tests/Feature/Filament` - `CI=1 vendor/bin/sail artisan test --compact` ## Notes - Branch includes the guardrail test for legacy callsite detection in `app/`. - Full suite currently green: 1227 passed, 5 skipped. Co-authored-by: Ahmed Darrazi <ahmeddarrazi@MacBookPro.fritz.box> Reviewed-on: #105
144 lines
5.1 KiB
PHP
144 lines
5.1 KiB
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Models\BackupSchedule;
|
|
use App\Models\EntraGroup;
|
|
use App\Models\EntraGroupSyncRun;
|
|
use App\Models\Finding;
|
|
use App\Models\OperationRun;
|
|
use App\Models\ProviderCredential;
|
|
use App\Models\RestoreRun;
|
|
use App\Models\Tenant;
|
|
use App\Models\User;
|
|
use App\Models\UserTenantPreference;
|
|
use App\Observers\ProviderCredentialObserver;
|
|
use App\Observers\RestoreRunObserver;
|
|
use App\Policies\BackupSchedulePolicy;
|
|
use App\Policies\EntraGroupPolicy;
|
|
use App\Policies\EntraGroupSyncRunPolicy;
|
|
use App\Policies\FindingPolicy;
|
|
use App\Policies\OperationRunPolicy;
|
|
use App\Services\Graph\GraphClientInterface;
|
|
use App\Services\Graph\MicrosoftGraphClient;
|
|
use App\Services\Graph\NullGraphClient;
|
|
use App\Services\Intune\AppProtectionPolicyNormalizer;
|
|
use App\Services\Intune\CompliancePolicyNormalizer;
|
|
use App\Services\Intune\DeviceConfigurationPolicyNormalizer;
|
|
use App\Services\Intune\EnrollmentAutopilotPolicyNormalizer;
|
|
use App\Services\Intune\GroupPolicyConfigurationNormalizer;
|
|
use App\Services\Intune\ManagedDeviceAppConfigurationNormalizer;
|
|
use App\Services\Intune\ScriptsPolicyNormalizer;
|
|
use App\Services\Intune\SettingsCatalogPolicyNormalizer;
|
|
use App\Services\Intune\TermsAndConditionsNormalizer;
|
|
use App\Services\Intune\WindowsDriverUpdateProfileNormalizer;
|
|
use App\Services\Intune\WindowsFeatureUpdateProfileNormalizer;
|
|
use App\Services\Intune\WindowsQualityUpdateProfileNormalizer;
|
|
use App\Services\Intune\WindowsUpdateRingNormalizer;
|
|
use App\Services\Providers\MicrosoftGraphOptionsResolver;
|
|
use App\Services\Providers\ProviderConnectionResolver;
|
|
use App\Services\Providers\ProviderGateway;
|
|
use Filament\Events\TenantSet;
|
|
use Illuminate\Cache\RateLimiting\Limit;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Support\Facades\RateLimiter;
|
|
use Illuminate\Support\Facades\Schema;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class AppServiceProvider extends ServiceProvider
|
|
{
|
|
/**
|
|
* Register any application services.
|
|
*/
|
|
public function register(): void
|
|
{
|
|
$this->app->singleton(GraphClientInterface::class, function ($app) {
|
|
$config = $app['config']->get('graph');
|
|
|
|
if (! empty($config['enabled'])) {
|
|
return $app->make(MicrosoftGraphClient::class);
|
|
}
|
|
|
|
return $app->make(NullGraphClient::class);
|
|
});
|
|
|
|
$this->app->singleton(MicrosoftGraphOptionsResolver::class, function ($app): MicrosoftGraphOptionsResolver {
|
|
return new MicrosoftGraphOptionsResolver(
|
|
connections: $app->make(ProviderConnectionResolver::class),
|
|
gateway: $app->make(ProviderGateway::class),
|
|
);
|
|
});
|
|
|
|
$this->app->tag(
|
|
[
|
|
AppProtectionPolicyNormalizer::class,
|
|
CompliancePolicyNormalizer::class,
|
|
DeviceConfigurationPolicyNormalizer::class,
|
|
EnrollmentAutopilotPolicyNormalizer::class,
|
|
GroupPolicyConfigurationNormalizer::class,
|
|
ManagedDeviceAppConfigurationNormalizer::class,
|
|
ScriptsPolicyNormalizer::class,
|
|
SettingsCatalogPolicyNormalizer::class,
|
|
TermsAndConditionsNormalizer::class,
|
|
WindowsDriverUpdateProfileNormalizer::class,
|
|
WindowsFeatureUpdateProfileNormalizer::class,
|
|
WindowsQualityUpdateProfileNormalizer::class,
|
|
WindowsUpdateRingNormalizer::class,
|
|
],
|
|
'policy-type-normalizers'
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Bootstrap any application services.
|
|
*/
|
|
public function boot(): void
|
|
{
|
|
RateLimiter::for('entra-callback', function (Request $request) {
|
|
return Limit::perMinute(20)->by((string) $request->ip());
|
|
});
|
|
|
|
RestoreRun::observe(RestoreRunObserver::class);
|
|
ProviderCredential::observe(ProviderCredentialObserver::class);
|
|
|
|
Event::listen(TenantSet::class, function (TenantSet $event): void {
|
|
static $hasPreferencesTable;
|
|
|
|
$hasPreferencesTable ??= Schema::hasTable('user_tenant_preferences');
|
|
|
|
if (! $hasPreferencesTable) {
|
|
return;
|
|
}
|
|
|
|
$tenant = $event->getTenant();
|
|
$user = $event->getUser();
|
|
|
|
if (! $tenant instanceof Tenant) {
|
|
return;
|
|
}
|
|
|
|
if (! $user instanceof User) {
|
|
return;
|
|
}
|
|
|
|
UserTenantPreference::query()->updateOrCreate(
|
|
[
|
|
'user_id' => $user->getKey(),
|
|
'tenant_id' => $tenant->getKey(),
|
|
],
|
|
[
|
|
'last_used_at' => now(),
|
|
],
|
|
);
|
|
});
|
|
|
|
Gate::policy(BackupSchedule::class, BackupSchedulePolicy::class);
|
|
Gate::policy(Finding::class, FindingPolicy::class);
|
|
Gate::policy(EntraGroupSyncRun::class, EntraGroupSyncRunPolicy::class);
|
|
Gate::policy(EntraGroup::class, EntraGroupPolicy::class);
|
|
Gate::policy(OperationRun::class, OperationRunPolicy::class);
|
|
}
|
|
}
|