2023-03-15 23:29:07 +02:00
|
|
|
import 'dart:io';
|
|
|
|
|
2022-02-03 18:06:44 +02:00
|
|
|
import 'package:auto_route/auto_route.dart';
|
2022-07-13 14:23:48 +02:00
|
|
|
import 'package:flutter/foundation.dart';
|
|
|
|
import 'package:immich_mobile/routing/router.dart';
|
|
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
2023-03-15 23:29:07 +02:00
|
|
|
import 'package:openapi/api.dart';
|
2022-02-03 18:06:44 +02:00
|
|
|
|
|
|
|
class AuthGuard extends AutoRouteGuard {
|
2022-07-13 14:23:48 +02:00
|
|
|
final ApiService _apiService;
|
|
|
|
AuthGuard(this._apiService);
|
2022-02-03 18:06:44 +02:00
|
|
|
@override
|
|
|
|
void onNavigation(NavigationResolver resolver, StackRouter router) async {
|
|
|
|
try {
|
2022-07-13 14:23:48 +02:00
|
|
|
var res = await _apiService.authenticationApi.validateAccessToken();
|
|
|
|
if (res != null && res.authStatus) {
|
2022-02-03 18:06:44 +02:00
|
|
|
resolver.next(true);
|
2022-07-13 14:23:48 +02:00
|
|
|
} else {
|
|
|
|
router.replaceAll([const LoginRoute()]);
|
2022-02-03 18:06:44 +02:00
|
|
|
}
|
2023-03-15 23:29:07 +02:00
|
|
|
} on ApiException catch (e) {
|
|
|
|
if (e.code == HttpStatus.badRequest &&
|
|
|
|
e.innerException is SocketException) {
|
|
|
|
// offline?
|
|
|
|
resolver.next(true);
|
|
|
|
} else {
|
|
|
|
debugPrint("Error [onNavigation] ${e.toString()}");
|
|
|
|
router.replaceAll([const LoginRoute()]);
|
|
|
|
}
|
2022-07-13 14:23:48 +02:00
|
|
|
return;
|
2022-02-03 18:06:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|