Add Authentik SSO via OAuth2/OIDC

Implements Single Sign-On with Authentik alongside the existing
password login. Admins configure Client ID, Client Secret and Base URL
directly in the app; the SSO button on the login page only appears
when the configuration is complete and enabled.

- SsoSetting model + migration (one-row config table)
- sso_provider_id / is_sso_user fields on users (migration)
- SsoController: redirect to Authentik + callback (token exchange,
  userinfo fetch, auto-create unknown users)
- Admin\SsoSettingController + admin/sso/show view with setup guide
  and one-click Redirect URI copy
- Admin dropdown: SSO-Konfiguration entry
- Login page: Authentik button rendered conditionally

No additional Composer packages required.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Housemann
2026-06-13 15:13:30 +02:00
co-authored by Claude Sonnet 4.6
parent c5fe3ad808
commit 60259a3655
10 changed files with 507 additions and 1 deletions
@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::create('sso_settings', function (Blueprint $table) {
$table->id();
$table->string('base_url')->nullable();
$table->string('client_id')->nullable();
$table->string('client_secret')->nullable();
$table->string('slug')->nullable()->comment('Authentik Application Slug');
$table->boolean('enabled')->default(false);
$table->timestamps();
});
// Leere Zeile anlegen, damit immer genau eine Konfiguration existiert
DB::table('sso_settings')->insert([
'enabled' => false,
'created_at' => now(),
'updated_at' => now(),
]);
}
public function down(): void
{
Schema::dropIfExists('sso_settings');
}
};
@@ -0,0 +1,23 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('users', function (Blueprint $table) {
$table->string('sso_provider_id')->nullable()->unique()->after('email');
$table->boolean('is_sso_user')->default(false)->after('sso_provider_id');
});
}
public function down(): void
{
Schema::table('users', function (Blueprint $table) {
$table->dropColumn(['sso_provider_id', 'is_sso_user']);
});
}
};