2023-07-29 18:10:10 +02:00
|
|
|
import 'package:http/http.dart' as http;
|
|
|
|
import 'dart:convert';
|
|
|
|
import 'dart:html';
|
|
|
|
|
|
|
|
|
|
|
|
class ApiClient {
|
|
|
|
final String baseUrl;
|
2023-07-29 18:27:11 +02:00
|
|
|
String? token;
|
|
|
|
String? refreshToken;
|
2023-07-29 18:10:10 +02:00
|
|
|
http.Client httpClient = http.Client();
|
|
|
|
|
|
|
|
ApiClient({
|
|
|
|
required this.baseUrl,
|
|
|
|
}) {
|
|
|
|
if (window.localStorage.containsKey('token')) {
|
2023-07-29 18:27:11 +02:00
|
|
|
token = window.localStorage['token'];
|
2023-07-29 18:10:10 +02:00
|
|
|
}
|
|
|
|
if (window.localStorage.containsKey('refreshToken')) {
|
2023-07-29 18:27:11 +02:00
|
|
|
refreshToken = window.localStorage['refreshToken'];
|
2023-07-29 18:10:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, String> headers() {
|
2023-07-29 18:27:11 +02:00
|
|
|
if (token == null) {
|
2023-07-29 18:10:10 +02:00
|
|
|
throw Exception('Not logged in');
|
|
|
|
}
|
|
|
|
|
|
|
|
final headers = {
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Accept': 'application/json',
|
|
|
|
};
|
|
|
|
|
2023-07-29 18:27:11 +02:00
|
|
|
if (token != null) {
|
|
|
|
headers['Authorization'] = 'Bearer $token';
|
2023-07-29 18:10:10 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return headers;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Map<String, dynamic>> get(String path) async {
|
|
|
|
final response = await httpClient.get(
|
|
|
|
Uri.parse('$baseUrl$path'),
|
2023-07-29 18:27:11 +02:00
|
|
|
headers: headers(),
|
2023-07-29 18:10:10 +02:00
|
|
|
);
|
2023-07-29 20:01:56 +02:00
|
|
|
|
|
|
|
if (response.statusCode != 200) {
|
|
|
|
throw Exception('Response returned status code: ${response.statusCode}');
|
|
|
|
}
|
|
|
|
|
2023-07-29 18:10:10 +02:00
|
|
|
return jsonDecode(response.body);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Map<String, dynamic>> post(String path, Map<String, dynamic> body) async {
|
|
|
|
final response = await httpClient.post(
|
|
|
|
Uri.parse('$baseUrl$path'),
|
|
|
|
body: jsonEncode(body),
|
2023-07-29 18:27:11 +02:00
|
|
|
headers: headers(),
|
2023-07-29 18:10:10 +02:00
|
|
|
);
|
2023-07-29 20:01:56 +02:00
|
|
|
|
|
|
|
if (response.statusCode != 200) {
|
|
|
|
throw Exception('Response returned status code: ${response.statusCode}');
|
|
|
|
}
|
|
|
|
|
2023-07-29 18:10:10 +02:00
|
|
|
return jsonDecode(response.body);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
Future<Map<String, dynamic>> delete(String path) async {
|
|
|
|
final response = await httpClient.delete(
|
|
|
|
Uri.parse('$baseUrl$path'),
|
2023-07-29 18:27:11 +02:00
|
|
|
headers: headers(),
|
2023-07-29 18:10:10 +02:00
|
|
|
);
|
2023-07-29 20:01:56 +02:00
|
|
|
|
|
|
|
if (response.statusCode != 200) {
|
|
|
|
throw Exception('Response returned status code: ${response.statusCode}');
|
|
|
|
}
|
|
|
|
|
2023-07-29 18:10:10 +02:00
|
|
|
return jsonDecode(response.body);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<Map<String, dynamic>> patch(String path, Map<String, dynamic> body) async {
|
|
|
|
final response = await httpClient.patch(
|
|
|
|
Uri.parse('$baseUrl$path'),
|
|
|
|
body: jsonEncode(body),
|
2023-07-29 18:27:11 +02:00
|
|
|
headers: headers(),
|
2023-07-29 18:10:10 +02:00
|
|
|
);
|
2023-07-29 20:01:56 +02:00
|
|
|
|
|
|
|
if (response.statusCode != 200) {
|
|
|
|
throw Exception('Response returned status code: ${response.statusCode}');
|
|
|
|
}
|
|
|
|
|
2023-07-29 18:10:10 +02:00
|
|
|
return jsonDecode(response.body);
|
|
|
|
}
|
|
|
|
|
2023-07-29 18:42:29 +02:00
|
|
|
Future<void> login(String username, String password) async {
|
2023-07-29 18:10:10 +02:00
|
|
|
final headers = {
|
|
|
|
'Content-Type': 'application/x-www-form-urlencoded',
|
|
|
|
'Accept': 'application/json',
|
|
|
|
};
|
|
|
|
|
|
|
|
final response = await httpClient.post(
|
|
|
|
Uri.parse('$baseUrl/token'),
|
|
|
|
body: {
|
|
|
|
'username': username,
|
|
|
|
'password': password,
|
|
|
|
},
|
|
|
|
encoding: Encoding.getByName('utf-8'),
|
|
|
|
headers: headers,
|
|
|
|
);
|
|
|
|
if (response.statusCode != 200) {
|
|
|
|
throw Exception('Failed to login');
|
|
|
|
}
|
|
|
|
|
|
|
|
final token = jsonDecode(response.body)['access_token'];
|
|
|
|
this.token = token;
|
|
|
|
window.localStorage['token'] = token;
|
|
|
|
|
|
|
|
final refreshToken = jsonDecode(response.body)['refresh_token'];
|
|
|
|
this.refreshToken = refreshToken;
|
|
|
|
window.localStorage['refreshToken'] = refreshToken;
|
|
|
|
}
|
2023-07-29 20:01:56 +02:00
|
|
|
|
|
|
|
Future<void> refresh() async {
|
|
|
|
if (refreshToken == null) {
|
|
|
|
throw Exception("No valid refresh token found");
|
|
|
|
}
|
|
|
|
|
|
|
|
final response = await post(
|
|
|
|
"/token/refresh",
|
|
|
|
{
|
|
|
|
"refresh_token": refreshToken,
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
token = response['access_token'] as String;
|
|
|
|
window.localStorage['token'] = token!;
|
|
|
|
refreshToken = response['refresh_token'] as String;
|
|
|
|
window.localStorage['refreshToken'] = refreshToken!;
|
|
|
|
}
|
2023-07-29 18:10:10 +02:00
|
|
|
}
|