Fix email login not working
This commit is contained in:
parent
78179f14b5
commit
042bb5efbc
1 changed files with 17 additions and 3 deletions
|
@ -17,7 +17,7 @@ class ApiClient {
|
||||||
static const String tokenKey = "token";
|
static const String tokenKey = "token";
|
||||||
static const String passwordKey = "password";
|
static const String passwordKey = "password";
|
||||||
|
|
||||||
ApiClient({required AuthenticationData authenticationData}) : _authenticationData = authenticationData;
|
const ApiClient({required AuthenticationData authenticationData}) : _authenticationData = authenticationData;
|
||||||
|
|
||||||
final AuthenticationData _authenticationData;
|
final AuthenticationData _authenticationData;
|
||||||
|
|
||||||
|
@ -33,7 +33,7 @@ class ApiClient {
|
||||||
String? oneTimePad,
|
String? oneTimePad,
|
||||||
}) async {
|
}) async {
|
||||||
final body = {
|
final body = {
|
||||||
"username": username,
|
(username.contains("@") ? "email" : "username"): username.trim(),
|
||||||
"password": password,
|
"password": password,
|
||||||
"rememberMe": rememberMe,
|
"rememberMe": rememberMe,
|
||||||
"secretMachineId": const Uuid().v4(),
|
"secretMachineId": const Uuid().v4(),
|
||||||
|
@ -108,6 +108,13 @@ class ApiClient {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<void> extendSession() async {
|
||||||
|
final response = await patch("/userSessions");
|
||||||
|
if (response.statusCode != 204) {
|
||||||
|
throw "Failed to extend session.";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
static void checkResponse(http.Response response) {
|
static void checkResponse(http.Response response) {
|
||||||
if (response.statusCode == 429) {
|
if (response.statusCode == 429) {
|
||||||
throw "Sorry, you are being rate limited";
|
throw "Sorry, you are being rate limited";
|
||||||
|
@ -151,4 +158,11 @@ class ApiClient {
|
||||||
headers.addAll(authorizationHeader);
|
headers.addAll(authorizationHeader);
|
||||||
return http.delete(buildFullUri(path), headers: headers);
|
return http.delete(buildFullUri(path), headers: headers);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Future<http.Response> patch(String path, {Object? body, Map<String, String>? headers}) {
|
||||||
|
headers ??= {};
|
||||||
|
headers["Content-Type"] = "application/json";
|
||||||
|
headers.addAll(authorizationHeader);
|
||||||
|
return http.patch(buildFullUri(path), headers: headers, body: body);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue