Compare commits
@@ -59,10 +59,8 @@ This project uses version-tag-based CI/CD. Releases trigger automated Docker bui
|
|||||||
3. Commit changes: `git commit -m "chore: release vX.X.X"`
|
3. Commit changes: `git commit -m "chore: release vX.X.X"`
|
||||||
4. Create git tag: `git tag vX.X.X`
|
4. Create git tag: `git tag vX.X.X`
|
||||||
5. Push with tags: `git push origin master --tags`
|
5. Push with tags: `git push origin master --tags`
|
||||||
6. Create release in Gitea UI (git.schweitz.net → Releases → New Release)
|
|
||||||
* Select the tag
|
CI/CD auto-triggers when a tag starting with `v` is pushed.
|
||||||
* Add release notes (can copy from CHANGELOG)
|
|
||||||
* **Publish** the release (this triggers CI/CD)
|
|
||||||
|
|
||||||
**What happens on release:**
|
**What happens on release:**
|
||||||
|
|
||||||
|
|||||||
@@ -7,6 +7,101 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.1.12] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Control Room navigation reorganized:
|
||||||
|
- New "Stack" section with Containers and Proxy Hosts
|
||||||
|
- New "Data Management" section with PostgreSQL, Redis, Qdrant, Neo4j placeholders
|
||||||
|
- Removed: Networks, Volumes, Images (Portainer) and Redirections, Streams, Certificates (NPM)
|
||||||
|
|
||||||
|
## [1.1.11] - 2026-01-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- API client providers now use `keepAlive: true` to prevent Ref invalidation
|
||||||
|
- Fixes "DioException [unknown]: null" error on /security/users and other API pages
|
||||||
|
- AuthInterceptor's stored Ref was becoming invalid when provider auto-disposed
|
||||||
|
|
||||||
|
## [1.1.10] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Removed page swipe transitions - all navigation is now instant (NoTransitionPage)
|
||||||
|
|
||||||
|
## [1.1.9] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Moved health check to `/health` directory - URL is now `/health` instead of `/health.html`
|
||||||
|
- Enables NPM forward auth path exclusion for health endpoint
|
||||||
|
|
||||||
|
## [1.1.8] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- Dark background (`#1a1a2e`) on web/index.html to prevent white flash during auth redirects
|
||||||
|
|
||||||
|
## [1.1.7] - 2026-01-04
|
||||||
|
|
||||||
|
### Removed
|
||||||
|
- Removed `/callback` route from Flutter router - AuthController handles callback in main() before app starts
|
||||||
|
- Removed `_OidcCallbackPage` widget - no visible auth UI needed
|
||||||
|
|
||||||
|
## [1.1.6] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- **Auth moved to standalone controller** - Handles OIDC completely outside Riverpod
|
||||||
|
- New `AuthController` runs in `main()` before `runApp()` - avoids provider lifecycle issues
|
||||||
|
- Handles callback, token exchange, and /auth/sync before app starts
|
||||||
|
- If auth not ready (redirecting), app doesn't start at all
|
||||||
|
- `AuthProvider` now just loads stored tokens (no async OIDC logic)
|
||||||
|
- Fixes "Cannot use Ref after disposed" errors from autoDispose providers
|
||||||
|
|
||||||
|
## [1.1.5] - 2026-01-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Race condition in OIDC callback: AuthProvider.build() was initiating silent OIDC while the callback page was processing, causing PKCE state to be cleared. Now skips silent OIDC when on `/callback` route.
|
||||||
|
|
||||||
|
## [1.1.4] - 2026-01-04
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Silent OIDC fallback: when `prompt=none` fails with `login_required` (no Authentik session), automatically fall back to regular OIDC flow to show login UI
|
||||||
|
|
||||||
|
## [1.1.3] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- **Web auth uses silent OIDC with JWT Bearer tokens**
|
||||||
|
- Uses `prompt=none` to silently obtain JWT when Authentik session exists (via NPM forward auth)
|
||||||
|
- Flutter sends Bearer token to core-api instead of relying on forward auth cookies
|
||||||
|
- Fixes cross-subdomain cookie issues between home.schweitz.net and api.schweitz.net
|
||||||
|
- Callback now syncs with `/auth/sync` to get user profile and roles from core-api
|
||||||
|
- API interceptor now adds Bearer token on web (previously skipped)
|
||||||
|
|
||||||
|
## [1.1.2] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- **Web auth simplified**: Skip Flutter OIDC on web - NPM forward auth handles it
|
||||||
|
- NPM authenticates at proxy level before app loads
|
||||||
|
- No more redundant OIDC redirect after NPM auth completes
|
||||||
|
- Fixes "Cannot use Ref after disposed" error from conflicting auth flows
|
||||||
|
- Mobile still uses Flutter OIDC flow
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Logout now redirects to Authentik to end SSO session
|
||||||
|
- Clears local tokens AND invalidates Authentik session
|
||||||
|
- Uses OIDC end_session_endpoint from discovery document
|
||||||
|
- Redirects back to app after Authentik logout completes
|
||||||
|
|
||||||
|
## [1.1.0] - 2026-01-04
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- **Dockerfile rebuild fix**: Added `flutter clean` before build to prevent stale cached artifacts
|
||||||
|
- VERSION build arg added for explicit cache busting
|
||||||
|
- Reordered build steps: clean → pub get → build_runner → health.json → flutter build
|
||||||
|
- Ensures deployed app always matches the version in health.json
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Replaced deprecated `dart:html` with `package:web` in iframe_view_web.dart
|
||||||
|
- Uses `web.HTMLIFrameElement` instead of `html.IFrameElement`
|
||||||
|
- Fixes deprecation warnings for Flutter 3.x web builds
|
||||||
|
|
||||||
## [1.0.12] - 2026-01-04
|
## [1.0.12] - 2026-01-04
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
+12
-4
@@ -3,16 +3,24 @@ FROM ghcr.io/cirruslabs/flutter:stable AS builder
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Copy dependency files first for better caching
|
# VERSION arg busts cache when version changes in pubspec.yaml
|
||||||
COPY pubspec.yaml ./
|
# Extract version: docker build --build-arg VERSION=$(grep '^version:' pubspec.yaml | cut -d' ' -f2) .
|
||||||
|
ARG VERSION=0.0.0
|
||||||
|
RUN echo "Building version: $VERSION"
|
||||||
|
|
||||||
# Get dependencies (generates pubspec.lock)
|
# Copy dependency files first for better caching
|
||||||
|
COPY pubspec.yaml pubspec.lock* ./
|
||||||
|
|
||||||
|
# Get dependencies
|
||||||
RUN flutter pub get
|
RUN flutter pub get
|
||||||
|
|
||||||
# Copy the rest of the application
|
# Copy the rest of the application
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
# Generate code with build_runner
|
# Clean any cached build artifacts to ensure fresh build
|
||||||
|
RUN flutter clean && flutter pub get
|
||||||
|
|
||||||
|
# Generate code with build_runner (after clean for fresh generation)
|
||||||
RUN dart run build_runner build --delete-conflicting-outputs
|
RUN dart run build_runner build --delete-conflicting-outputs
|
||||||
|
|
||||||
# Generate health.json with version info
|
# Generate health.json with version info
|
||||||
|
|||||||
@@ -9,7 +9,10 @@ import 'api_client_native.dart' if (dart.library.html) 'api_client_web.dart'
|
|||||||
part 'api_client.g.dart';
|
part 'api_client.g.dart';
|
||||||
|
|
||||||
/// Provides the Dio instance for Core API.
|
/// Provides the Dio instance for Core API.
|
||||||
@riverpod
|
///
|
||||||
|
/// Uses keepAlive to prevent auto-dispose - the AuthInterceptor stores
|
||||||
|
/// a Ref that must remain valid for the lifetime of API requests.
|
||||||
|
@Riverpod(keepAlive: true)
|
||||||
Dio coreApiClient(Ref ref) {
|
Dio coreApiClient(Ref ref) {
|
||||||
final options = BaseOptions(
|
final options = BaseOptions(
|
||||||
baseUrl: AppConfig.coreApiUrl,
|
baseUrl: AppConfig.coreApiUrl,
|
||||||
@@ -33,7 +36,10 @@ Dio coreApiClient(Ref ref) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Provides the Dio instance for Tatlock API.
|
/// Provides the Dio instance for Tatlock API.
|
||||||
@riverpod
|
///
|
||||||
|
/// Uses keepAlive to prevent auto-dispose - the AuthInterceptor stores
|
||||||
|
/// a Ref that must remain valid for the lifetime of API requests.
|
||||||
|
@Riverpod(keepAlive: true)
|
||||||
Dio tatlockApiClient(Ref ref) {
|
Dio tatlockApiClient(Ref ref) {
|
||||||
final options = BaseOptions(
|
final options = BaseOptions(
|
||||||
baseUrl: AppConfig.tatlockApiUrl,
|
baseUrl: AppConfig.tatlockApiUrl,
|
||||||
|
|||||||
@@ -10,8 +10,7 @@ import 'package:tatlock_ui/core/error/app_exception.dart';
|
|||||||
/// Adds authentication token to requests.
|
/// Adds authentication token to requests.
|
||||||
///
|
///
|
||||||
/// - **LAN mode**: Skipped entirely (no auth required)
|
/// - **LAN mode**: Skipped entirely (no auth required)
|
||||||
/// - **Web**: Skipped (cookies handle auth via NPM forward auth)
|
/// - **Web + Mobile**: Adds Bearer token from OIDC authentication
|
||||||
/// - **Mobile**: Adds Bearer token from OIDC authentication
|
|
||||||
class AuthInterceptor extends Interceptor {
|
class AuthInterceptor extends Interceptor {
|
||||||
AuthInterceptor(this._ref);
|
AuthInterceptor(this._ref);
|
||||||
|
|
||||||
@@ -25,17 +24,11 @@ class AuthInterceptor extends Interceptor {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Skip Bearer token on web - cookies handle auth via NPM forward auth
|
// Add Bearer token for all platforms (web + mobile)
|
||||||
if (kIsWeb) {
|
|
||||||
handler.next(options);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Mobile: Add Bearer token from OIDC authentication
|
|
||||||
final authState = _ref.read(authProvider);
|
final authState = _ref.read(authProvider);
|
||||||
|
|
||||||
authState.whenData((auth) {
|
authState.whenData((auth) {
|
||||||
if (auth.isAuthenticated && auth.accessToken != null && auth.accessToken != 'web-session') {
|
if (auth.isAuthenticated && auth.accessToken != null) {
|
||||||
options.headers['Authorization'] = 'Bearer ${auth.accessToken}';
|
options.headers['Authorization'] = 'Bearer ${auth.accessToken}';
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -0,0 +1,288 @@
|
|||||||
|
import 'dart:convert' show jsonDecode, jsonEncode;
|
||||||
|
import 'dart:developer' as developer;
|
||||||
|
|
||||||
|
import 'package:dio/dio.dart';
|
||||||
|
import 'package:flutter/foundation.dart' show kIsWeb;
|
||||||
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
|
|
||||||
|
import '../config/app_config.dart';
|
||||||
|
import 'auth_datasource.dart';
|
||||||
|
import 'auth_state.dart';
|
||||||
|
import 'oidc_service_web.dart';
|
||||||
|
import 'permissions.dart';
|
||||||
|
import 'user_preferences.dart';
|
||||||
|
import 'web_utils.dart' as web_utils;
|
||||||
|
|
||||||
|
/// Standalone auth controller that handles OIDC flow before app starts.
|
||||||
|
///
|
||||||
|
/// This runs outside of Riverpod to avoid lifecycle issues. Call [initialize]
|
||||||
|
/// in main() before runApp(). The controller will:
|
||||||
|
/// 1. Handle callback if on /callback route (exchange code, sync, store tokens)
|
||||||
|
/// 2. Check for valid stored tokens
|
||||||
|
/// 3. Redirect to silent OIDC if no tokens (app won't continue)
|
||||||
|
///
|
||||||
|
/// Once auth is complete, [AuthProvider] can simply read the stored tokens.
|
||||||
|
class AuthController {
|
||||||
|
// Storage keys (same as AuthProvider)
|
||||||
|
static const _accessTokenKey = 'auth_access_token';
|
||||||
|
static const _refreshTokenKey = 'auth_refresh_token';
|
||||||
|
static const _expiresAtKey = 'auth_expires_at';
|
||||||
|
static const _userIdKey = 'auth_user_id';
|
||||||
|
static const _authentikIdKey = 'auth_authentik_id';
|
||||||
|
static const _userNameKey = 'auth_user_name';
|
||||||
|
static const _userEmailKey = 'auth_user_email';
|
||||||
|
static const _avatarUrlKey = 'auth_avatar_url';
|
||||||
|
static const _rolesKey = 'auth_roles';
|
||||||
|
static const _preferencesKey = 'auth_preferences';
|
||||||
|
|
||||||
|
/// Initialize auth before app starts.
|
||||||
|
///
|
||||||
|
/// Returns true if auth is ready (tokens available).
|
||||||
|
/// Returns false if redirecting (app should not continue).
|
||||||
|
/// Throws on error.
|
||||||
|
static Future<bool> initialize() async {
|
||||||
|
// Skip auth entirely for LAN mode
|
||||||
|
if (!AppConfig.requiresAuth) {
|
||||||
|
developer.log('Auth not required (LAN mode)', name: 'auth_controller');
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Only handle web auth here - mobile uses different flow
|
||||||
|
if (!kIsWeb) {
|
||||||
|
developer.log('Non-web platform, skipping controller init', name: 'auth_controller');
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
final currentUrl = web_utils.getCurrentUrl();
|
||||||
|
developer.log('Auth controller init, URL: $currentUrl', name: 'auth_controller');
|
||||||
|
|
||||||
|
// Check if we're on the callback route
|
||||||
|
if (currentUrl.contains('/callback')) {
|
||||||
|
return _handleCallback(currentUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Check for valid stored tokens
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
final accessToken = prefs.getString(_accessTokenKey);
|
||||||
|
if (accessToken != null) {
|
||||||
|
final expiresAtMs = prefs.getInt(_expiresAtKey);
|
||||||
|
final expiresAt = expiresAtMs != null
|
||||||
|
? DateTime.fromMillisecondsSinceEpoch(expiresAtMs)
|
||||||
|
: null;
|
||||||
|
|
||||||
|
if (expiresAt == null || expiresAt.isAfter(DateTime.now())) {
|
||||||
|
developer.log('Valid tokens found', name: 'auth_controller');
|
||||||
|
return true; // Auth ready
|
||||||
|
}
|
||||||
|
developer.log('Tokens expired', name: 'auth_controller');
|
||||||
|
}
|
||||||
|
|
||||||
|
// No valid tokens - initiate silent OIDC
|
||||||
|
developer.log('No valid tokens, starting silent OIDC', name: 'auth_controller');
|
||||||
|
await _initiateSilentOidc();
|
||||||
|
return false; // Redirecting, app should not continue
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Handle the OIDC callback.
|
||||||
|
static Future<bool> _handleCallback(String url) async {
|
||||||
|
final uri = Uri.parse(url);
|
||||||
|
final code = uri.queryParameters['code'];
|
||||||
|
final state = uri.queryParameters['state'];
|
||||||
|
final error = uri.queryParameters['error'];
|
||||||
|
|
||||||
|
developer.log('Handling callback: code=${code != null}, error=$error', name: 'auth_controller');
|
||||||
|
|
||||||
|
// Handle errors
|
||||||
|
if (error != null) {
|
||||||
|
if (error == 'login_required') {
|
||||||
|
// Silent auth failed - no session, start regular OIDC
|
||||||
|
developer.log('Silent auth failed (login_required), starting regular OIDC', name: 'auth_controller');
|
||||||
|
await _initiateRegularOidc();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
throw Exception('Auth error: $error - ${uri.queryParameters['error_description']}');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (code == null || state == null) {
|
||||||
|
throw Exception('Invalid callback - missing code or state');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Exchange code for tokens
|
||||||
|
developer.log('Exchanging code for tokens', name: 'auth_controller');
|
||||||
|
final oidcService = OidcServiceWeb();
|
||||||
|
final tokens = await oidcService.exchangeCode(code, state);
|
||||||
|
|
||||||
|
// Sync with core-api
|
||||||
|
developer.log('Syncing with core-api', name: 'auth_controller');
|
||||||
|
final dio = Dio(BaseOptions(
|
||||||
|
baseUrl: AppConfig.coreApiUrl,
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json',
|
||||||
|
'Accept': 'application/json',
|
||||||
|
},
|
||||||
|
));
|
||||||
|
final authDatasource = AuthDatasource(dio);
|
||||||
|
final syncResponse = await authDatasource.syncUser(tokens.accessToken);
|
||||||
|
|
||||||
|
developer.log('Synced user: ${syncResponse.name}', name: 'auth_controller');
|
||||||
|
|
||||||
|
// Store credentials
|
||||||
|
await _storeAuth(
|
||||||
|
accessToken: tokens.accessToken,
|
||||||
|
refreshToken: tokens.refreshToken,
|
||||||
|
expiresAt: tokens.expiresAt,
|
||||||
|
userId: syncResponse.userId,
|
||||||
|
authentikId: syncResponse.authentikId,
|
||||||
|
userName: syncResponse.name,
|
||||||
|
userEmail: syncResponse.email,
|
||||||
|
avatarUrl: syncResponse.avatarUrl,
|
||||||
|
roles: syncResponse.roles,
|
||||||
|
preferences: syncResponse.preferences,
|
||||||
|
);
|
||||||
|
|
||||||
|
// Redirect to home (removes callback params from URL)
|
||||||
|
developer.log('Auth complete, redirecting to home', name: 'auth_controller');
|
||||||
|
web_utils.redirectTo('/');
|
||||||
|
return false; // Redirecting
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Initiate silent OIDC (prompt=none).
|
||||||
|
static Future<void> _initiateSilentOidc() async {
|
||||||
|
final oidcService = OidcServiceWeb();
|
||||||
|
final authUrl = await oidcService.getAuthorizationUrl(silent: true);
|
||||||
|
developer.log('Redirecting to silent OIDC', name: 'auth_controller');
|
||||||
|
web_utils.redirectTo(authUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Initiate regular OIDC (shows login UI).
|
||||||
|
static Future<void> _initiateRegularOidc() async {
|
||||||
|
final oidcService = OidcServiceWeb();
|
||||||
|
final authUrl = await oidcService.getAuthorizationUrl(silent: false);
|
||||||
|
developer.log('Redirecting to regular OIDC', name: 'auth_controller');
|
||||||
|
web_utils.redirectTo(authUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Store auth data.
|
||||||
|
static Future<void> _storeAuth({
|
||||||
|
required String accessToken,
|
||||||
|
String? refreshToken,
|
||||||
|
DateTime? expiresAt,
|
||||||
|
String? userId,
|
||||||
|
String? authentikId,
|
||||||
|
String? userName,
|
||||||
|
String? userEmail,
|
||||||
|
String? avatarUrl,
|
||||||
|
List<Role>? roles,
|
||||||
|
UserPreferences? preferences,
|
||||||
|
}) async {
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
|
||||||
|
await prefs.setString(_accessTokenKey, accessToken);
|
||||||
|
if (refreshToken != null) {
|
||||||
|
await prefs.setString(_refreshTokenKey, refreshToken);
|
||||||
|
}
|
||||||
|
if (expiresAt != null) {
|
||||||
|
await prefs.setInt(_expiresAtKey, expiresAt.millisecondsSinceEpoch);
|
||||||
|
}
|
||||||
|
if (userId != null) await prefs.setString(_userIdKey, userId);
|
||||||
|
if (authentikId != null) await prefs.setString(_authentikIdKey, authentikId);
|
||||||
|
if (userName != null) await prefs.setString(_userNameKey, userName);
|
||||||
|
if (userEmail != null) await prefs.setString(_userEmailKey, userEmail);
|
||||||
|
if (avatarUrl != null) await prefs.setString(_avatarUrlKey, avatarUrl);
|
||||||
|
|
||||||
|
if (roles != null) {
|
||||||
|
final rolesJson = jsonEncode(roles.map((r) => {
|
||||||
|
'id': r.id,
|
||||||
|
'name': r.name,
|
||||||
|
'domain': r.domain.value,
|
||||||
|
'category': r.category,
|
||||||
|
'action': r.action.name,
|
||||||
|
}).toList());
|
||||||
|
await prefs.setString(_rolesKey, rolesJson);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (preferences != null) {
|
||||||
|
await prefs.setString(_preferencesKey, jsonEncode(preferences.toJson()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Load stored auth state (for AuthProvider to use).
|
||||||
|
static Future<AuthState> loadStoredAuth() async {
|
||||||
|
try {
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
|
||||||
|
final accessToken = prefs.getString(_accessTokenKey);
|
||||||
|
if (accessToken == null) {
|
||||||
|
return const AuthState();
|
||||||
|
}
|
||||||
|
|
||||||
|
final expiresAtMs = prefs.getInt(_expiresAtKey);
|
||||||
|
final expiresAt = expiresAtMs != null
|
||||||
|
? DateTime.fromMillisecondsSinceEpoch(expiresAtMs)
|
||||||
|
: null;
|
||||||
|
|
||||||
|
final rolesJson = prefs.getString(_rolesKey);
|
||||||
|
final roles = rolesJson != null ? _parseRoles(rolesJson) : <Role>[];
|
||||||
|
|
||||||
|
final prefsJson = prefs.getString(_preferencesKey);
|
||||||
|
final preferences = prefsJson != null
|
||||||
|
? UserPreferences.fromJson(jsonDecode(prefsJson) as Map<String, dynamic>)
|
||||||
|
: null;
|
||||||
|
|
||||||
|
return AuthState(
|
||||||
|
isAuthenticated: true,
|
||||||
|
accessToken: accessToken,
|
||||||
|
refreshToken: prefs.getString(_refreshTokenKey),
|
||||||
|
expiresAt: expiresAt,
|
||||||
|
userId: prefs.getString(_userIdKey),
|
||||||
|
authentikId: prefs.getString(_authentikIdKey),
|
||||||
|
userName: prefs.getString(_userNameKey),
|
||||||
|
userEmail: prefs.getString(_userEmailKey),
|
||||||
|
avatarUrl: prefs.getString(_avatarUrlKey),
|
||||||
|
roles: roles,
|
||||||
|
preferences: preferences,
|
||||||
|
);
|
||||||
|
} catch (e) {
|
||||||
|
developer.log('Failed to load stored auth: $e', name: 'auth_controller');
|
||||||
|
return const AuthState();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static List<Role> _parseRoles(String json) {
|
||||||
|
try {
|
||||||
|
final list = jsonDecode(json) as List<dynamic>;
|
||||||
|
return list.map((item) {
|
||||||
|
final map = item as Map<String, dynamic>;
|
||||||
|
final domain = Domain.fromString(map['domain'] as String);
|
||||||
|
final action = Action.fromString(map['action'] as String);
|
||||||
|
|
||||||
|
if (domain == null || action == null) return null;
|
||||||
|
|
||||||
|
return Role(
|
||||||
|
id: map['id'] as String,
|
||||||
|
name: map['name'] as String,
|
||||||
|
domain: domain,
|
||||||
|
category: map['category'] as String? ?? 'general',
|
||||||
|
action: action,
|
||||||
|
);
|
||||||
|
}).whereType<Role>().toList();
|
||||||
|
} catch (e) {
|
||||||
|
return [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Clear stored auth (for logout).
|
||||||
|
static Future<void> clearAuth() async {
|
||||||
|
final prefs = await SharedPreferences.getInstance();
|
||||||
|
await prefs.remove(_accessTokenKey);
|
||||||
|
await prefs.remove(_refreshTokenKey);
|
||||||
|
await prefs.remove(_expiresAtKey);
|
||||||
|
await prefs.remove(_userIdKey);
|
||||||
|
await prefs.remove(_authentikIdKey);
|
||||||
|
await prefs.remove(_userNameKey);
|
||||||
|
await prefs.remove(_userEmailKey);
|
||||||
|
await prefs.remove(_avatarUrlKey);
|
||||||
|
await prefs.remove(_rolesKey);
|
||||||
|
await prefs.remove(_preferencesKey);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,4 +1,4 @@
|
|||||||
import 'dart:convert' show base64Url, jsonDecode, jsonEncode, utf8;
|
import 'dart:convert' show jsonDecode, jsonEncode;
|
||||||
import 'dart:developer' as developer;
|
import 'dart:developer' as developer;
|
||||||
|
|
||||||
import 'package:flutter/foundation.dart' show kIsWeb;
|
import 'package:flutter/foundation.dart' show kIsWeb;
|
||||||
@@ -40,7 +40,9 @@ class AuthNotifier extends _$AuthNotifier {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Future<AuthState> build() async {
|
Future<AuthState> build() async {
|
||||||
// Load stored auth on all platforms
|
// AuthController.initialize() in main() handles OIDC flow before app starts.
|
||||||
|
// By the time we get here, tokens are already stored (or we're in LAN mode).
|
||||||
|
// Just load the stored auth state.
|
||||||
return _loadStoredAuth();
|
return _loadStoredAuth();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -265,27 +267,28 @@ class AuthNotifier extends _$AuthNotifier {
|
|||||||
final oidcService = OidcServiceWeb();
|
final oidcService = OidcServiceWeb();
|
||||||
final tokens = await oidcService.exchangeCode(code, callbackState);
|
final tokens = await oidcService.exchangeCode(code, callbackState);
|
||||||
|
|
||||||
// Step 2: Decode JWT to extract user info (skip core-api sync)
|
// Step 2: Sync with core-api to get user profile and roles
|
||||||
final claims = _decodeJwtClaims(tokens.accessToken);
|
developer.log('Syncing with core-api', name: 'auth');
|
||||||
final userName = claims['name'] as String? ??
|
final authDatasource = ref.read(authDatasourceProvider);
|
||||||
claims['preferred_username'] as String? ??
|
final syncResponse = await authDatasource.syncUser(tokens.accessToken);
|
||||||
'User';
|
|
||||||
final userEmail = claims['email'] as String? ?? '';
|
|
||||||
final authentikId = claims['sub'] as String?;
|
|
||||||
final groups = (claims['groups'] as List<dynamic>?)?.cast<String>() ?? [];
|
|
||||||
|
|
||||||
developer.log('JWT claims: name=$userName, email=$userEmail, groups=$groups', name: 'auth');
|
developer.log(
|
||||||
|
'Synced user: ${syncResponse.name} with ${syncResponse.roles.length} roles',
|
||||||
|
name: 'auth',
|
||||||
|
);
|
||||||
|
|
||||||
// Step 3: Store credentials and user data from JWT
|
// Step 3: Store credentials and user data from sync response
|
||||||
await _storeAuth(
|
await _storeAuth(
|
||||||
accessToken: tokens.accessToken,
|
accessToken: tokens.accessToken,
|
||||||
refreshToken: tokens.refreshToken,
|
refreshToken: tokens.refreshToken,
|
||||||
expiresAt: tokens.expiresAt,
|
expiresAt: tokens.expiresAt,
|
||||||
authentikId: authentikId,
|
userId: syncResponse.userId,
|
||||||
userName: userName,
|
authentikId: syncResponse.authentikId,
|
||||||
userEmail: userEmail,
|
userName: syncResponse.name,
|
||||||
// Roles from groups - for now just store group names
|
userEmail: syncResponse.email,
|
||||||
// Full role parsing can be done later if needed
|
avatarUrl: syncResponse.avatarUrl,
|
||||||
|
roles: syncResponse.roles,
|
||||||
|
preferences: syncResponse.preferences,
|
||||||
);
|
);
|
||||||
|
|
||||||
state = AsyncData(AuthState(
|
state = AsyncData(AuthState(
|
||||||
@@ -293,12 +296,16 @@ class AuthNotifier extends _$AuthNotifier {
|
|||||||
accessToken: tokens.accessToken,
|
accessToken: tokens.accessToken,
|
||||||
refreshToken: tokens.refreshToken,
|
refreshToken: tokens.refreshToken,
|
||||||
expiresAt: tokens.expiresAt,
|
expiresAt: tokens.expiresAt,
|
||||||
authentikId: authentikId,
|
userId: syncResponse.userId,
|
||||||
userName: userName,
|
authentikId: syncResponse.authentikId,
|
||||||
userEmail: userEmail,
|
userName: syncResponse.name,
|
||||||
|
userEmail: syncResponse.email,
|
||||||
|
avatarUrl: syncResponse.avatarUrl,
|
||||||
|
roles: syncResponse.roles,
|
||||||
|
preferences: syncResponse.preferences,
|
||||||
));
|
));
|
||||||
|
|
||||||
developer.log('Authenticated as $userName', name: 'auth');
|
developer.log('Authenticated as ${syncResponse.name}', name: 'auth');
|
||||||
|
|
||||||
// Clean up the URL by removing the query parameters
|
// Clean up the URL by removing the query parameters
|
||||||
web_utils.replaceUrl('/');
|
web_utils.replaceUrl('/');
|
||||||
@@ -311,40 +318,28 @@ class AuthNotifier extends _$AuthNotifier {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Decode JWT payload without verification (validation happens server-side).
|
|
||||||
Map<String, dynamic> _decodeJwtClaims(String jwt) {
|
|
||||||
try {
|
|
||||||
final parts = jwt.split('.');
|
|
||||||
if (parts.length != 3) {
|
|
||||||
developer.log('Invalid JWT format', name: 'auth');
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
|
|
||||||
// Decode the payload (second part)
|
|
||||||
String payload = parts[1];
|
|
||||||
// Add padding if needed for base64
|
|
||||||
switch (payload.length % 4) {
|
|
||||||
case 2:
|
|
||||||
payload += '==';
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
payload += '=';
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
final decoded = utf8.decode(base64Url.decode(payload));
|
|
||||||
return jsonDecode(decoded) as Map<String, dynamic>;
|
|
||||||
} catch (e) {
|
|
||||||
developer.log('Failed to decode JWT: $e', name: 'auth');
|
|
||||||
return {};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Sign out and clear stored credentials.
|
/// Sign out and clear stored credentials.
|
||||||
|
///
|
||||||
|
/// On web, also redirects to Authentik's logout endpoint to end the SSO session.
|
||||||
Future<void> signOut() async {
|
Future<void> signOut() async {
|
||||||
|
// Clear local storage first
|
||||||
await _clearStoredAuth();
|
await _clearStoredAuth();
|
||||||
state = const AsyncData(AuthState());
|
state = const AsyncData(AuthState());
|
||||||
developer.log('Signed out', name: 'auth');
|
developer.log('Signed out locally', name: 'auth');
|
||||||
|
|
||||||
|
// On web, redirect to Authentik logout to end SSO session
|
||||||
|
if (kIsWeb && AppConfig.requiresAuth) {
|
||||||
|
try {
|
||||||
|
final oidcService = OidcServiceWeb();
|
||||||
|
final logoutUrl = await oidcService.getLogoutUrl();
|
||||||
|
developer.log('Redirecting to Authentik logout', name: 'auth');
|
||||||
|
web_utils.redirectTo(logoutUrl);
|
||||||
|
} catch (e) {
|
||||||
|
developer.log('Failed to get logout URL: $e', name: 'auth');
|
||||||
|
// Local logout already done, just reload to trigger re-auth
|
||||||
|
web_utils.redirectTo('/');
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Update user preferences.
|
/// Update user preferences.
|
||||||
|
|||||||
@@ -34,7 +34,12 @@ class OidcServiceWeb implements OidcService {
|
|||||||
///
|
///
|
||||||
/// Returns a URL that the browser should navigate to for authentication.
|
/// Returns a URL that the browser should navigate to for authentication.
|
||||||
/// The [codeVerifier] and [state] are stored for later verification.
|
/// The [codeVerifier] and [state] are stored for later verification.
|
||||||
Future<String> getAuthorizationUrl() async {
|
///
|
||||||
|
/// If [silent] is true, adds `prompt=none` to skip login UI.
|
||||||
|
/// This is used when the user already has an Authentik session (via NPM).
|
||||||
|
/// Authentik will instantly redirect back with a code, or return an error
|
||||||
|
/// if there's no valid session.
|
||||||
|
Future<String> getAuthorizationUrl({bool silent = false}) async {
|
||||||
// Fetch OIDC discovery document
|
// Fetch OIDC discovery document
|
||||||
final discovery = await _fetchDiscovery();
|
final discovery = await _fetchDiscovery();
|
||||||
final authEndpoint = discovery['authorization_endpoint'] as String;
|
final authEndpoint = discovery['authorization_endpoint'] as String;
|
||||||
@@ -59,10 +64,11 @@ class OidcServiceWeb implements OidcService {
|
|||||||
'code_challenge': codeChallenge,
|
'code_challenge': codeChallenge,
|
||||||
'code_challenge_method': 'S256',
|
'code_challenge_method': 'S256',
|
||||||
'state': state,
|
'state': state,
|
||||||
|
if (silent) 'prompt': 'none', // Silent auth - no UI, instant redirect
|
||||||
};
|
};
|
||||||
|
|
||||||
final uri = Uri.parse(authEndpoint).replace(queryParameters: params);
|
final uri = Uri.parse(authEndpoint).replace(queryParameters: params);
|
||||||
developer.log('Authorization URL: $uri', name: 'oidc_web');
|
developer.log('Authorization URL (silent=$silent): $uri', name: 'oidc_web');
|
||||||
return uri.toString();
|
return uri.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -209,4 +215,31 @@ class OidcServiceWeb implements OidcService {
|
|||||||
return List.generate(length, (_) => chars[random.nextInt(chars.length)])
|
return List.generate(length, (_) => chars[random.nextInt(chars.length)])
|
||||||
.join();
|
.join();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Get the logout URL to redirect the browser to for SSO logout.
|
||||||
|
///
|
||||||
|
/// [idToken] is optional but recommended for logout verification.
|
||||||
|
/// After logout, Authentik redirects back to [postLogoutRedirectUri].
|
||||||
|
Future<String> getLogoutUrl({String? idToken}) async {
|
||||||
|
final discovery = await _fetchDiscovery();
|
||||||
|
final endSessionEndpoint = discovery['end_session_endpoint'] as String?;
|
||||||
|
|
||||||
|
if (endSessionEndpoint == null) {
|
||||||
|
// Fallback: just redirect to home, local state already cleared
|
||||||
|
developer.log('No end_session_endpoint in discovery', name: 'oidc_web');
|
||||||
|
return AppConfig.webBaseUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
final params = <String, String>{
|
||||||
|
'post_logout_redirect_uri': AppConfig.webBaseUrl,
|
||||||
|
};
|
||||||
|
|
||||||
|
if (idToken != null) {
|
||||||
|
params['id_token_hint'] = idToken;
|
||||||
|
}
|
||||||
|
|
||||||
|
final uri = Uri.parse(endSessionEndpoint).replace(queryParameters: params);
|
||||||
|
developer.log('Logout URL: $uri', name: 'oidc_web');
|
||||||
|
return uri.toString();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -69,44 +69,11 @@ class _SectionContent extends ConsumerWidget {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context, WidgetRef ref) {
|
Widget build(BuildContext context, WidgetRef ref) {
|
||||||
switch (nav) {
|
return switch (nav) {
|
||||||
case ControlRoomNav.containers:
|
ControlRoomNav.containers => const _ContainersSection(),
|
||||||
return const _ContainersSection();
|
ControlRoomNav.proxyHosts => const ProxyHostsPage(),
|
||||||
case ControlRoomNav.proxyHosts:
|
_ => _PlaceholderSection(nav: nav),
|
||||||
return const ProxyHostsPage();
|
};
|
||||||
default:
|
|
||||||
return _PlaceholderSection(nav: nav);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Containers section with optional stack filter.
|
|
||||||
class _ContainersSection extends ConsumerWidget {
|
|
||||||
const _ContainersSection();
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context, WidgetRef ref) {
|
|
||||||
final selectedStack = ref.watch(selectedStackProvider);
|
|
||||||
final colorScheme = Theme.of(context).colorScheme;
|
|
||||||
|
|
||||||
return Row(
|
|
||||||
children: [
|
|
||||||
// Stacks filter panel
|
|
||||||
const _StacksFilterPanel(),
|
|
||||||
// Divider
|
|
||||||
VerticalDivider(
|
|
||||||
width: 1,
|
|
||||||
thickness: 1,
|
|
||||||
color: colorScheme.outlineVariant,
|
|
||||||
),
|
|
||||||
// Main content - containers list or stack detail
|
|
||||||
Expanded(
|
|
||||||
child: selectedStack == null
|
|
||||||
? const ContainersListPage()
|
|
||||||
: StackDetailPage(stackId: selectedStack),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -150,6 +117,36 @@ class _PlaceholderSection extends StatelessWidget {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Containers section with optional stack filter.
|
||||||
|
class _ContainersSection extends ConsumerWidget {
|
||||||
|
const _ContainersSection();
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context, WidgetRef ref) {
|
||||||
|
final selectedStack = ref.watch(selectedStackProvider);
|
||||||
|
final colorScheme = Theme.of(context).colorScheme;
|
||||||
|
|
||||||
|
return Row(
|
||||||
|
children: [
|
||||||
|
// Stacks filter panel
|
||||||
|
const _StacksFilterPanel(),
|
||||||
|
// Divider
|
||||||
|
VerticalDivider(
|
||||||
|
width: 1,
|
||||||
|
thickness: 1,
|
||||||
|
color: colorScheme.outlineVariant,
|
||||||
|
),
|
||||||
|
// Main content - containers list or stack detail
|
||||||
|
Expanded(
|
||||||
|
child: selectedStack == null
|
||||||
|
? const ContainersListPage()
|
||||||
|
: StackDetailPage(stackId: selectedStack),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Stacks filter panel for Containers section (includes "All Containers" option).
|
/// Stacks filter panel for Containers section (includes "All Containers" option).
|
||||||
class _StacksFilterPanel extends ConsumerWidget {
|
class _StacksFilterPanel extends ConsumerWidget {
|
||||||
const _StacksFilterPanel();
|
const _StacksFilterPanel();
|
||||||
|
|||||||
@@ -1,35 +1,32 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:tatlock_ui/features/control_room/presentation/pages/control_room_page.dart';
|
import 'package:tatlock_ui/features/control_room/presentation/pages/control_room_page.dart';
|
||||||
|
import 'package:tatlock_ui/routing/app_router.dart';
|
||||||
import 'package:tatlock_ui/shared/layouts/widgets/nav_panel.dart';
|
import 'package:tatlock_ui/shared/layouts/widgets/nav_panel.dart';
|
||||||
|
|
||||||
/// Route paths for Control Room.
|
/// Route paths for Control Room.
|
||||||
abstract class ControlRoomRoutes {
|
abstract class ControlRoomRoutes {
|
||||||
static const base = '/control-room';
|
static const base = '/control-room';
|
||||||
// Portainer
|
// Stack
|
||||||
static const containers = '/control-room/containers';
|
static const containers = '/control-room/containers';
|
||||||
static const networks = '/control-room/networks';
|
|
||||||
static const volumes = '/control-room/volumes';
|
|
||||||
static const images = '/control-room/images';
|
|
||||||
// NPM
|
|
||||||
static const proxyHosts = '/control-room/proxy-hosts';
|
static const proxyHosts = '/control-room/proxy-hosts';
|
||||||
static const redirections = '/control-room/redirections';
|
// Data Management
|
||||||
static const streams = '/control-room/streams';
|
static const postgres = '/control-room/postgres';
|
||||||
static const certificates = '/control-room/certificates';
|
static const redis = '/control-room/redis';
|
||||||
|
static const qdrant = '/control-room/qdrant';
|
||||||
|
static const neo4j = '/control-room/neo4j';
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Control Room navigation items with section grouping.
|
/// Control Room navigation items with section grouping.
|
||||||
enum ControlRoomNav {
|
enum ControlRoomNav {
|
||||||
// Portainer section
|
// Stack section - Docker containers and reverse proxy
|
||||||
containers('containers', 'Containers', Icons.dns, 'Portainer'),
|
containers('containers', 'Containers', Icons.dns, 'Stack'),
|
||||||
networks('networks', 'Networks', Icons.hub, 'Portainer'),
|
proxyHosts('proxy-hosts', 'Proxy Hosts', Icons.public, 'Stack'),
|
||||||
volumes('volumes', 'Volumes', Icons.storage, 'Portainer'),
|
// Data Management section - Database browsers
|
||||||
images('images', 'Images', Icons.photo_library, 'Portainer'),
|
postgres('postgres', 'PostgreSQL', Icons.table_chart, 'Data Management'),
|
||||||
// NPM section
|
redis('redis', 'Redis', Icons.memory, 'Data Management'),
|
||||||
proxyHosts('proxy-hosts', 'Proxy Hosts', Icons.public, 'NPM'),
|
qdrant('qdrant', 'Qdrant', Icons.scatter_plot, 'Data Management'),
|
||||||
redirections('redirections', 'Redirections', Icons.alt_route, 'NPM'),
|
neo4j('neo4j', 'Neo4j', Icons.hub, 'Data Management');
|
||||||
streams('streams', 'Streams', Icons.stream, 'NPM'),
|
|
||||||
certificates('certificates', 'SSL Certificates', Icons.verified_user, 'NPM');
|
|
||||||
|
|
||||||
const ControlRoomNav(this.id, this.label, this.icon, this.section);
|
const ControlRoomNav(this.id, this.label, this.icon, this.section);
|
||||||
|
|
||||||
@@ -66,7 +63,8 @@ List<RouteBase> controlRoomRoutes() {
|
|||||||
GoRoute(
|
GoRoute(
|
||||||
path: nav.path,
|
path: nav.path,
|
||||||
name: 'controlRoom${_capitalize(nav.id.replaceAll('-', '_'))}',
|
name: 'controlRoom${_capitalize(nav.id.replaceAll('-', '_'))}',
|
||||||
builder: (context, state) => ControlRoomPage(nav: nav),
|
pageBuilder: (context, state) =>
|
||||||
|
noTransitionPage(context, state, ControlRoomPage(nav: nav)),
|
||||||
),
|
),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
import 'dart:html' as html;
|
|
||||||
import 'dart:ui_web' as ui_web;
|
import 'dart:ui_web' as ui_web;
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:url_launcher/url_launcher.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
import 'package:web/web.dart' as web;
|
||||||
|
|
||||||
/// Embedded iframe view for displaying external content (web only).
|
/// Embedded iframe view for displaying external content (web only).
|
||||||
///
|
///
|
||||||
@@ -31,7 +31,7 @@ class IframeView extends StatefulWidget {
|
|||||||
|
|
||||||
class _IframeViewState extends State<IframeView> {
|
class _IframeViewState extends State<IframeView> {
|
||||||
late final String _viewType;
|
late final String _viewType;
|
||||||
late html.IFrameElement _iframe;
|
late web.HTMLIFrameElement _iframe;
|
||||||
bool _isLoading = true;
|
bool _isLoading = true;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -42,17 +42,18 @@ class _IframeViewState extends State<IframeView> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void _createIframe() {
|
void _createIframe() {
|
||||||
_iframe = html.IFrameElement()
|
_iframe = web.document.createElement('iframe') as web.HTMLIFrameElement
|
||||||
..src = widget.url
|
..src = widget.url
|
||||||
..style.border = 'none'
|
..style.border = 'none'
|
||||||
..style.width = '100%'
|
..style.width = '100%'
|
||||||
..style.height = '100%'
|
..style.height = '100%'
|
||||||
..allow = 'fullscreen'
|
..allow = 'fullscreen';
|
||||||
..onLoad.listen((_) {
|
|
||||||
if (mounted) {
|
_iframe.onLoad.listen((_) {
|
||||||
setState(() => _isLoading = false);
|
if (mounted) {
|
||||||
}
|
setState(() => _isLoading = false);
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// Register the view factory
|
// Register the view factory
|
||||||
ui_web.platformViewRegistry.registerViewFactory(
|
ui_web.platformViewRegistry.registerViewFactory(
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:tatlock_ui/features/security/presentation/pages/security_page.dart';
|
import 'package:tatlock_ui/features/security/presentation/pages/security_page.dart';
|
||||||
|
import 'package:tatlock_ui/routing/app_router.dart';
|
||||||
import 'package:tatlock_ui/shared/layouts/widgets/nav_panel.dart';
|
import 'package:tatlock_ui/shared/layouts/widgets/nav_panel.dart';
|
||||||
|
|
||||||
/// Route paths for Security room.
|
/// Route paths for Security room.
|
||||||
@@ -60,7 +61,8 @@ List<RouteBase> securityRoutes() {
|
|||||||
GoRoute(
|
GoRoute(
|
||||||
path: nav.path,
|
path: nav.path,
|
||||||
name: 'security${_capitalize(nav.id.replaceAll('-', '_'))}',
|
name: 'security${_capitalize(nav.id.replaceAll('-', '_'))}',
|
||||||
builder: (context, state) => SecurityPage(nav: nav),
|
pageBuilder: (context, state) =>
|
||||||
|
noTransitionPage(context, state, SecurityPage(nav: nav)),
|
||||||
),
|
),
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|||||||
+12
-5
@@ -4,19 +4,26 @@ import 'package:flutter/material.dart';
|
|||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
|
||||||
import 'app.dart';
|
import 'app.dart';
|
||||||
|
import 'core/auth/auth_controller.dart';
|
||||||
import 'core/config/url_strategy.dart';
|
import 'core/config/url_strategy.dart';
|
||||||
import 'version.g.dart';
|
import 'version.g.dart';
|
||||||
|
|
||||||
void main() {
|
void main() async {
|
||||||
WidgetsFlutterBinding.ensureInitialized();
|
WidgetsFlutterBinding.ensureInitialized();
|
||||||
|
|
||||||
// Use path-based URLs on web (no-op on mobile/desktop)
|
// Use path-based URLs on web (no-op on mobile/desktop)
|
||||||
configureUrlStrategy();
|
configureUrlStrategy();
|
||||||
|
|
||||||
developer.log(
|
debugPrint('🪣 ${AppVersion.name} v${AppVersion.fullVersion}');
|
||||||
'${AppVersion.name} v${AppVersion.fullVersion}',
|
|
||||||
name: 'tatlock_ui',
|
// Initialize auth before starting the app.
|
||||||
);
|
// This handles OIDC callback and silent auth on web.
|
||||||
|
// If it returns false, we're redirecting and shouldn't continue.
|
||||||
|
final authReady = await AuthController.initialize();
|
||||||
|
if (!authReady) {
|
||||||
|
developer.log('Auth redirecting, not starting app', name: 'tatlock_ui');
|
||||||
|
return; // Don't run the app - browser is redirecting
|
||||||
|
}
|
||||||
|
|
||||||
runApp(const ProviderScope(child: TatlockApp()));
|
runApp(const ProviderScope(child: TatlockApp()));
|
||||||
}
|
}
|
||||||
|
|||||||
+14
-151
@@ -1,8 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
import 'package:riverpod_annotation/riverpod_annotation.dart';
|
||||||
import 'package:tatlock_ui/core/auth/auth_provider.dart';
|
|
||||||
import 'package:tatlock_ui/features/control_room/router.dart';
|
import 'package:tatlock_ui/features/control_room/router.dart';
|
||||||
import 'package:tatlock_ui/features/front_hall/presentation/pages/front_hall_page.dart';
|
import 'package:tatlock_ui/features/front_hall/presentation/pages/front_hall_page.dart';
|
||||||
import 'package:tatlock_ui/features/security/router.dart';
|
import 'package:tatlock_ui/features/security/router.dart';
|
||||||
@@ -10,12 +8,19 @@ import 'package:tatlock_ui/shared/layouts/app_scaffold.dart';
|
|||||||
|
|
||||||
part 'app_router.g.dart';
|
part 'app_router.g.dart';
|
||||||
|
|
||||||
|
/// No-animation page builder for instant transitions
|
||||||
|
Page<void> noTransitionPage(BuildContext context, GoRouterState state, Widget child) {
|
||||||
|
return NoTransitionPage<void>(
|
||||||
|
key: state.pageKey,
|
||||||
|
child: child,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/// Route paths as constants.
|
/// Route paths as constants.
|
||||||
abstract class AppRoutes {
|
abstract class AppRoutes {
|
||||||
static const frontHall = '/';
|
static const frontHall = '/';
|
||||||
static const parlor = '/parlor';
|
static const parlor = '/parlor';
|
||||||
static const settings = '/settings';
|
static const settings = '/settings';
|
||||||
static const callback = '/callback';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Provides the GoRouter instance.
|
/// Provides the GoRouter instance.
|
||||||
@@ -25,17 +30,6 @@ GoRouter appRouter(Ref ref) {
|
|||||||
initialLocation: AppRoutes.frontHall,
|
initialLocation: AppRoutes.frontHall,
|
||||||
debugLogDiagnostics: true,
|
debugLogDiagnostics: true,
|
||||||
routes: [
|
routes: [
|
||||||
// OIDC callback route (handles auth code exchange)
|
|
||||||
GoRoute(
|
|
||||||
path: AppRoutes.callback,
|
|
||||||
name: 'callback',
|
|
||||||
builder: (context, state) => _OidcCallbackPage(
|
|
||||||
code: state.uri.queryParameters['code'],
|
|
||||||
callbackState: state.uri.queryParameters['state'],
|
|
||||||
error: state.uri.queryParameters['error'],
|
|
||||||
errorDescription: state.uri.queryParameters['error_description'],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
// Main app routes (inside shell with app scaffold)
|
// Main app routes (inside shell with app scaffold)
|
||||||
ShellRoute(
|
ShellRoute(
|
||||||
builder: (context, state, child) => AppScaffold(child: child),
|
builder: (context, state, child) => AppScaffold(child: child),
|
||||||
@@ -43,21 +37,22 @@ GoRouter appRouter(Ref ref) {
|
|||||||
GoRoute(
|
GoRoute(
|
||||||
path: AppRoutes.frontHall,
|
path: AppRoutes.frontHall,
|
||||||
name: 'frontHall',
|
name: 'frontHall',
|
||||||
builder: (context, state) => const FrontHallPage(),
|
pageBuilder: (context, state) =>
|
||||||
|
noTransitionPage(context, state, const FrontHallPage()),
|
||||||
),
|
),
|
||||||
...controlRoomRoutes(),
|
...controlRoomRoutes(),
|
||||||
...securityRoutes(),
|
...securityRoutes(),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: AppRoutes.parlor,
|
path: AppRoutes.parlor,
|
||||||
name: 'parlor',
|
name: 'parlor',
|
||||||
builder: (context, state) =>
|
pageBuilder: (context, state) =>
|
||||||
const _PlaceholderPage(title: 'Parlor'),
|
noTransitionPage(context, state, const _PlaceholderPage(title: 'Parlor')),
|
||||||
),
|
),
|
||||||
GoRoute(
|
GoRoute(
|
||||||
path: AppRoutes.settings,
|
path: AppRoutes.settings,
|
||||||
name: 'settings',
|
name: 'settings',
|
||||||
builder: (context, state) =>
|
pageBuilder: (context, state) =>
|
||||||
const _PlaceholderPage(title: 'Settings'),
|
noTransitionPage(context, state, const _PlaceholderPage(title: 'Settings')),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
@@ -100,135 +95,3 @@ class _PlaceholderPage extends StatelessWidget {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// OIDC callback page that handles the authorization code exchange.
|
|
||||||
class _OidcCallbackPage extends ConsumerStatefulWidget {
|
|
||||||
const _OidcCallbackPage({
|
|
||||||
this.code,
|
|
||||||
this.callbackState,
|
|
||||||
this.error,
|
|
||||||
this.errorDescription,
|
|
||||||
});
|
|
||||||
|
|
||||||
final String? code;
|
|
||||||
final String? callbackState;
|
|
||||||
final String? error;
|
|
||||||
final String? errorDescription;
|
|
||||||
|
|
||||||
@override
|
|
||||||
ConsumerState<_OidcCallbackPage> createState() => _OidcCallbackPageState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _OidcCallbackPageState extends ConsumerState<_OidcCallbackPage> {
|
|
||||||
bool _isProcessing = true;
|
|
||||||
String? _error;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
// Defer callback processing to avoid Riverpod state modification during build
|
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
||||||
_processCallback();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
Future<void> _processCallback() async {
|
|
||||||
// Check for error from Authentik
|
|
||||||
if (widget.error != null) {
|
|
||||||
setState(() {
|
|
||||||
_isProcessing = false;
|
|
||||||
_error = widget.errorDescription ?? widget.error;
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Check for required parameters
|
|
||||||
if (widget.code == null || widget.callbackState == null) {
|
|
||||||
setState(() {
|
|
||||||
_isProcessing = false;
|
|
||||||
_error = 'Invalid callback - missing code or state parameter';
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Exchange code for tokens
|
|
||||||
try {
|
|
||||||
await ref.read(authProvider.notifier).handleOidcCallback(
|
|
||||||
widget.code!,
|
|
||||||
widget.callbackState!,
|
|
||||||
);
|
|
||||||
|
|
||||||
// Navigate to home on success
|
|
||||||
if (mounted) {
|
|
||||||
context.go(AppRoutes.frontHall);
|
|
||||||
}
|
|
||||||
} catch (e) {
|
|
||||||
if (mounted) {
|
|
||||||
setState(() {
|
|
||||||
_isProcessing = false;
|
|
||||||
_error = e.toString();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final colorScheme = Theme.of(context).colorScheme;
|
|
||||||
|
|
||||||
return Scaffold(
|
|
||||||
body: Center(
|
|
||||||
child: ConstrainedBox(
|
|
||||||
constraints: const BoxConstraints(maxWidth: 400),
|
|
||||||
child: Card(
|
|
||||||
child: Padding(
|
|
||||||
padding: const EdgeInsets.all(32),
|
|
||||||
child: Column(
|
|
||||||
mainAxisSize: MainAxisSize.min,
|
|
||||||
children: [
|
|
||||||
Icon(
|
|
||||||
_error != null ? Icons.error_outline : Icons.home_work_outlined,
|
|
||||||
size: 64,
|
|
||||||
color: _error != null ? colorScheme.error : colorScheme.primary,
|
|
||||||
),
|
|
||||||
const SizedBox(height: 24),
|
|
||||||
Text(
|
|
||||||
_error != null ? 'Authentication Failed' : 'Signing in...',
|
|
||||||
style: Theme.of(context).textTheme.headlineMedium?.copyWith(
|
|
||||||
fontWeight: FontWeight.w600,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
if (_isProcessing)
|
|
||||||
const CircularProgressIndicator()
|
|
||||||
else if (_error != null) ...[
|
|
||||||
Container(
|
|
||||||
padding: const EdgeInsets.all(12),
|
|
||||||
decoration: BoxDecoration(
|
|
||||||
color: colorScheme.errorContainer,
|
|
||||||
borderRadius: BorderRadius.circular(8),
|
|
||||||
),
|
|
||||||
child: Text(
|
|
||||||
_error!,
|
|
||||||
style: TextStyle(color: colorScheme.onErrorContainer),
|
|
||||||
textAlign: TextAlign.center,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(height: 16),
|
|
||||||
OutlinedButton.icon(
|
|
||||||
onPressed: () => context.go(AppRoutes.frontHall),
|
|
||||||
icon: const Icon(Icons.refresh),
|
|
||||||
label: const Text('Try again'),
|
|
||||||
style: OutlinedButton.styleFrom(
|
|
||||||
minimumSize: const Size(double.infinity, 48),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import 'package:flutter/foundation.dart' show kIsWeb;
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:go_router/go_router.dart';
|
import 'package:go_router/go_router.dart';
|
||||||
@@ -45,6 +46,7 @@ class _AppScaffoldState extends ConsumerState<AppScaffold> {
|
|||||||
return _buildScaffold(context);
|
return _buildScaffold(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Watch auth state (works for both web and mobile)
|
||||||
final authAsync = ref.watch(authProvider);
|
final authAsync = ref.watch(authProvider);
|
||||||
|
|
||||||
return authAsync.when(
|
return authAsync.when(
|
||||||
@@ -55,7 +57,13 @@ class _AppScaffoldState extends ConsumerState<AppScaffold> {
|
|||||||
return _buildScaffold(context);
|
return _buildScaffold(context);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Not authenticated - auto-initiate OIDC
|
// On web, NPM handles auth - if we're here without auth, something is wrong
|
||||||
|
// (NPM should have redirected to Authentik before we loaded)
|
||||||
|
if (kIsWeb) {
|
||||||
|
return _buildAuthErrorScreen(context, 'Authentication required');
|
||||||
|
}
|
||||||
|
|
||||||
|
// Mobile: Not authenticated - auto-initiate OIDC
|
||||||
if (!_authInitiated) {
|
if (!_authInitiated) {
|
||||||
_authInitiated = true;
|
_authInitiated = true;
|
||||||
WidgetsBinding.instance.addPostFrameCallback((_) {
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
||||||
@@ -66,7 +74,7 @@ class _AppScaffoldState extends ConsumerState<AppScaffold> {
|
|||||||
// Show loading while redirecting to Authentik
|
// Show loading while redirecting to Authentik
|
||||||
return _buildAuthLoadingScreen(context, 'Redirecting to sign in...');
|
return _buildAuthLoadingScreen(context, 'Redirecting to sign in...');
|
||||||
},
|
},
|
||||||
loading: () => _buildAuthLoadingScreen(context, 'Checking authentication...'),
|
loading: () => _buildAuthLoadingScreen(context, 'Loading user info...'),
|
||||||
error: (error, _) => _buildAuthErrorScreen(context, error),
|
error: (error, _) => _buildAuthErrorScreen(context, error),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,53 @@
|
|||||||
|
# Increase buffer size for large headers from Authentik
|
||||||
|
proxy_buffers 8 16k;
|
||||||
|
proxy_buffer_size 32k;
|
||||||
|
|
||||||
|
# Exclude static assets from forward auth
|
||||||
|
# These paths bypass auth_request but still proxy to upstream
|
||||||
|
location ~ ^/(manifest\.json|favicon\.(ico|png)|health|icons|assets) {
|
||||||
|
auth_request off;
|
||||||
|
proxy_pass $forward_scheme://$server:$port;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Forward authentication via standalone outpost
|
||||||
|
auth_request /outpost.goauthentik.io/auth/nginx;
|
||||||
|
error_page 401 = @goauthentik_proxy_signin;
|
||||||
|
|
||||||
|
# Capture auth response headers
|
||||||
|
auth_request_set $auth_cookie $upstream_http_set_cookie;
|
||||||
|
auth_request_set $authentik_username $upstream_http_x_authentik_username;
|
||||||
|
auth_request_set $authentik_groups $upstream_http_x_authentik_groups;
|
||||||
|
auth_request_set $authentik_email $upstream_http_x_authentik_email;
|
||||||
|
auth_request_set $authentik_name $upstream_http_x_authentik_name;
|
||||||
|
auth_request_set $authentik_uid $upstream_http_x_authentik_uid;
|
||||||
|
|
||||||
|
# Forward auth headers to application
|
||||||
|
add_header Set-Cookie $auth_cookie;
|
||||||
|
proxy_set_header X-authentik-username $authentik_username;
|
||||||
|
proxy_set_header X-authentik-groups $authentik_groups;
|
||||||
|
proxy_set_header X-authentik-email $authentik_email;
|
||||||
|
proxy_set_header X-authentik-name $authentik_name;
|
||||||
|
proxy_set_header X-authentik-uid $authentik_uid;
|
||||||
|
|
||||||
|
# Outpost proxy location
|
||||||
|
location /outpost.goauthentik.io {
|
||||||
|
proxy_pass https://localhost:9444/outpost.goauthentik.io;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Original-URL $scheme://$http_host$request_uri;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
proxy_set_header X-Forwarded-Host $http_host;
|
||||||
|
proxy_set_header X-Forwarded-For $remote_addr;
|
||||||
|
proxy_pass_request_body off;
|
||||||
|
proxy_set_header Content-Length "";
|
||||||
|
|
||||||
|
# WebSocket support
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection $connection_upgrade;
|
||||||
|
}
|
||||||
|
|
||||||
|
# Signin redirect handler
|
||||||
|
location @goauthentik_proxy_signin {
|
||||||
|
internal;
|
||||||
|
return 302 /outpost.goauthentik.io/start?rd=$request_uri;
|
||||||
|
}
|
||||||
+1
-1
@@ -16,7 +16,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev
|
|||||||
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html
|
||||||
# In Windows, build-name is used as the major, minor, and patch parts
|
# In Windows, build-name is used as the major, minor, and patch parts
|
||||||
# of the product and file versions while build-number is used as the build suffix.
|
# of the product and file versions while build-number is used as the build suffix.
|
||||||
version: 1.0.12+1
|
version: 1.1.12+1
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.10.4
|
sdk: ^3.10.4
|
||||||
|
|||||||
@@ -1,7 +1,9 @@
|
|||||||
#!/usr/bin/env dart
|
#!/usr/bin/env dart
|
||||||
// Generates web/health.json from pubspec.yaml
|
// Generates web/health/health.json from pubspec.yaml
|
||||||
// Run: dart run tool/generate_health_json.dart
|
// Run: dart run tool/generate_health_json.dart
|
||||||
|
|
||||||
|
// ignore_for_file: avoid_print
|
||||||
|
|
||||||
import 'dart:convert';
|
import 'dart:convert';
|
||||||
import 'dart:io';
|
import 'dart:io';
|
||||||
|
|
||||||
@@ -35,15 +37,15 @@ void main() {
|
|||||||
'fullVersion': '$version+$buildNumber',
|
'fullVersion': '$version+$buildNumber',
|
||||||
};
|
};
|
||||||
|
|
||||||
final webDir = Directory('web');
|
final healthDir = Directory('web/health');
|
||||||
if (!webDir.existsSync()) {
|
if (!healthDir.existsSync()) {
|
||||||
webDir.createSync(recursive: true);
|
healthDir.createSync(recursive: true);
|
||||||
}
|
}
|
||||||
|
|
||||||
final healthFile = File('web/health.json');
|
final healthFile = File('web/health/health.json');
|
||||||
healthFile.writeAsStringSync(
|
healthFile.writeAsStringSync(
|
||||||
const JsonEncoder.withIndent(' ').convert(health),
|
const JsonEncoder.withIndent(' ').convert(health),
|
||||||
);
|
);
|
||||||
|
|
||||||
print('Generated web/health.json with version $version+$buildNumber');
|
print('Generated web/health/health.json with version $version+$buildNumber');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
"status": "healthy",
|
||||||
|
"name": "tatlock_ui",
|
||||||
|
"title": "Tatlock - a Home Lab AI",
|
||||||
|
"version": "1.0.4",
|
||||||
|
"buildNumber": 1,
|
||||||
|
"fullVersion": "1.0.4+1"
|
||||||
|
}
|
||||||
@@ -13,7 +13,7 @@
|
|||||||
<h1 id="status">Loading...</h1>
|
<h1 id="status">Loading...</h1>
|
||||||
<pre id="data"></pre>
|
<pre id="data"></pre>
|
||||||
<script>
|
<script>
|
||||||
fetch('/health.json')
|
fetch('./health.json')
|
||||||
.then(r => r.json())
|
.then(r => r.json())
|
||||||
.then(data => {
|
.then(data => {
|
||||||
document.getElementById('status').textContent = data.status?.toUpperCase() || 'OK';
|
document.getElementById('status').textContent = data.status?.toUpperCase() || 'OK';
|
||||||
@@ -32,6 +32,13 @@
|
|||||||
|
|
||||||
<title>Tatlock</title>
|
<title>Tatlock</title>
|
||||||
<link rel="manifest" href="manifest.json">
|
<link rel="manifest" href="manifest.json">
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
background-color: #1a1a2e;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script src="flutter_bootstrap.js" async></script>
|
<script src="flutter_bootstrap.js" async></script>
|
||||||
|
|||||||
Reference in New Issue
Block a user