170 lines
4.6 KiB
Dart
170 lines
4.6 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:developer';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:get/get_connect/http/src/request/request.dart';
|
|
import 'package:solian/controllers/chat_events_controller.dart';
|
|
import 'package:solian/providers/account.dart';
|
|
import 'package:solian/providers/chat.dart';
|
|
import 'package:solian/services.dart';
|
|
import 'package:oauth2/oauth2.dart' as oauth2;
|
|
|
|
class AuthProvider extends GetConnect {
|
|
final tokenEndpoint =
|
|
Uri.parse('${ServiceFinder.services['passport']}/api/auth/token');
|
|
|
|
static const clientId = 'solian';
|
|
static const clientSecret = '_F4%q2Eea3';
|
|
|
|
static const storage = FlutterSecureStorage();
|
|
|
|
@override
|
|
void onInit() {
|
|
httpClient.baseUrl = ServiceFinder.services['passport'];
|
|
loadCredentials();
|
|
}
|
|
|
|
oauth2.Credentials? credentials;
|
|
|
|
Future<void> refreshCredentials() async {
|
|
final resp = await post('/api/auth/token', {
|
|
'refresh_token': credentials!.refreshToken,
|
|
'grant_type': 'refresh_token',
|
|
});
|
|
if (resp.statusCode != 200) {
|
|
throw Exception(resp.bodyString);
|
|
}
|
|
credentials = oauth2.Credentials(
|
|
resp.body['access_token'],
|
|
refreshToken: resp.body['refresh_token'],
|
|
idToken: resp.body['access_token'],
|
|
tokenEndpoint: tokenEndpoint,
|
|
expiration: DateTime.now().add(const Duration(minutes: 3)),
|
|
);
|
|
storage.write(
|
|
key: 'auth_credentials',
|
|
value: jsonEncode(credentials!.toJson()),
|
|
);
|
|
}
|
|
|
|
Future<Request<T?>> requestAuthenticator<T>(Request<T?> request) async {
|
|
try {
|
|
await ensureCredentials();
|
|
request.headers['Authorization'] = 'Bearer ${credentials!.accessToken}';
|
|
} catch (_) {}
|
|
|
|
return request;
|
|
}
|
|
|
|
GetConnect configureClient(
|
|
String service, {
|
|
timeout = const Duration(seconds: 5),
|
|
}) {
|
|
final client = GetConnect(
|
|
maxAuthRetries: 3,
|
|
timeout: timeout,
|
|
allowAutoSignedCert: true,
|
|
);
|
|
client.httpClient.addAuthenticator(requestAuthenticator);
|
|
client.httpClient.baseUrl = ServiceFinder.services[service];
|
|
|
|
return client;
|
|
}
|
|
|
|
Future<void> ensureCredentials() async {
|
|
if (!await isAuthorized) throw Exception('unauthorized');
|
|
if (credentials == null) await loadCredentials();
|
|
|
|
if (credentials!.isExpired) {
|
|
await refreshCredentials();
|
|
log('Refreshed credentials at ${DateTime.now()}');
|
|
}
|
|
}
|
|
|
|
Future<void> loadCredentials() async {
|
|
if (await isAuthorized) {
|
|
final content = await storage.read(key: 'auth_credentials');
|
|
credentials = oauth2.Credentials.fromJson(jsonDecode(content!));
|
|
}
|
|
}
|
|
|
|
Future<oauth2.Credentials> signin(
|
|
BuildContext context,
|
|
String username,
|
|
String password,
|
|
) async {
|
|
_cachedUserProfileResponse = null;
|
|
|
|
final resp = await oauth2.resourceOwnerPasswordGrant(
|
|
tokenEndpoint,
|
|
username,
|
|
password,
|
|
identifier: clientId,
|
|
secret: clientSecret,
|
|
scopes: ['*'],
|
|
basicAuth: false,
|
|
);
|
|
|
|
credentials = oauth2.Credentials(
|
|
resp.credentials.accessToken,
|
|
refreshToken: resp.credentials.refreshToken!,
|
|
idToken: resp.credentials.accessToken,
|
|
tokenEndpoint: tokenEndpoint,
|
|
expiration: DateTime.now().add(const Duration(minutes: 3)),
|
|
);
|
|
|
|
storage.write(
|
|
key: 'auth_credentials',
|
|
value: jsonEncode(credentials!.toJson()),
|
|
);
|
|
|
|
Get.find<AccountProvider>().connect();
|
|
Get.find<AccountProvider>().notifyPrefetch();
|
|
Get.find<ChatProvider>().connect();
|
|
|
|
return credentials!;
|
|
}
|
|
|
|
void signout() {
|
|
_cachedUserProfileResponse = null;
|
|
|
|
Get.find<ChatProvider>().disconnect();
|
|
Get.find<AccountProvider>().disconnect();
|
|
Get.find<AccountProvider>().notifications.clear();
|
|
Get.find<AccountProvider>().notificationUnread.value = 0;
|
|
|
|
final chatHistory = ChatEventController();
|
|
chatHistory.initialize().then((_) async {
|
|
await chatHistory.database.localEvents.wipeLocalEvents();
|
|
});
|
|
|
|
storage.deleteAll();
|
|
}
|
|
|
|
// Data Layer
|
|
|
|
Response? _cachedUserProfileResponse;
|
|
|
|
Future<bool> get isAuthorized => storage.containsKey(key: 'auth_credentials');
|
|
|
|
Future<Response> getProfile({noCache = false}) async {
|
|
if (!noCache && _cachedUserProfileResponse != null) {
|
|
return _cachedUserProfileResponse!;
|
|
}
|
|
|
|
final client = configureClient('passport');
|
|
|
|
final resp = await client.get('/api/users/me');
|
|
if (resp.statusCode != 200) {
|
|
throw Exception(resp.bodyString);
|
|
} else {
|
|
_cachedUserProfileResponse = resp;
|
|
}
|
|
|
|
return resp;
|
|
}
|
|
}
|