continue authentication
This commit is contained in:
parent
5b09333f0d
commit
03c8f3461e
@ -68,9 +68,10 @@ namespace {
|
|||||||
{"decryption failed"});
|
{"decryption failed"});
|
||||||
}
|
}
|
||||||
|
|
||||||
return std::string(
|
return {
|
||||||
buffer.begin(),
|
buffer.begin(),
|
||||||
std::next(buffer.begin(), static_cast<std::int64_t>(size)));
|
std::next(buffer.begin(), static_cast<std::int64_t>(size)),
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
[[nodiscard]] auto decrypt_value(const repertory::ui::mgmt_app_config *config,
|
[[nodiscard]] auto decrypt_value(const repertory::ui::mgmt_app_config *config,
|
||||||
|
@ -15,9 +15,8 @@ const ringBufferSizeList = ['128', '256', '512', '1024', '2048'];
|
|||||||
final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
|
final GlobalKey<NavigatorState> navigatorKey = GlobalKey<NavigatorState>();
|
||||||
|
|
||||||
Sodium? _sodium;
|
Sodium? _sodium;
|
||||||
|
|
||||||
void setSodium(Sodium sodium) {
|
void setSodium(Sodium sodium) {
|
||||||
_sodium = sodium;
|
_sodium = sodium;
|
||||||
}
|
}
|
||||||
|
|
||||||
Sodium? get sodium => _sodium;
|
Sodium get sodium => _sodium!;
|
||||||
|
@ -285,10 +285,6 @@ String encryptValue(String value, SecureKey key) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
final sodium = constants.sodium;
|
final sodium = constants.sodium;
|
||||||
if (sodium == null) {
|
|
||||||
return value;
|
|
||||||
}
|
|
||||||
|
|
||||||
final crypto = sodium.crypto.aeadXChaCha20Poly1305IETF;
|
final crypto = sodium.crypto.aeadXChaCha20Poly1305IETF;
|
||||||
|
|
||||||
final nonce = sodium.secureRandom(crypto.nonceBytes).extractBytes();
|
final nonce = sodium.secureRandom(crypto.nonceBytes).extractBytes();
|
||||||
@ -302,45 +298,6 @@ String encryptValue(String value, SecureKey key) {
|
|||||||
return hex.encode(nonce + data);
|
return hex.encode(nonce + data);
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<String?> promptPassword() async {
|
|
||||||
if (constants.navigatorKey.currentContext == null) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
String password = '';
|
|
||||||
return await showDialog(
|
|
||||||
context: constants.navigatorKey.currentContext!,
|
|
||||||
builder: (context) {
|
|
||||||
return AlertDialog(
|
|
||||||
actions: [
|
|
||||||
TextButton(
|
|
||||||
child: const Text('Cancel'),
|
|
||||||
onPressed: () => Navigator.of(context).pop(null),
|
|
||||||
),
|
|
||||||
TextButton(
|
|
||||||
child: const Text('OK'),
|
|
||||||
onPressed: () {
|
|
||||||
if (password.isEmpty) {
|
|
||||||
return displayErrorMessage(context, "Password is not valid");
|
|
||||||
}
|
|
||||||
|
|
||||||
Navigator.of(context).pop(password);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
content: TextField(
|
|
||||||
autofocus: true,
|
|
||||||
controller: TextEditingController(text: password),
|
|
||||||
obscureText: true,
|
|
||||||
obscuringCharacter: '*',
|
|
||||||
onChanged: (value) => password = value,
|
|
||||||
),
|
|
||||||
title: const Text('Enter Repertory Portal Password'),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
Map<String, dynamic> getChanged(
|
Map<String, dynamic> getChanged(
|
||||||
Map<String, dynamic> original,
|
Map<String, dynamic> original,
|
||||||
Map<String, dynamic> updated,
|
Map<String, dynamic> updated,
|
||||||
|
@ -9,17 +9,14 @@ import 'package:sodium_libs/sodium_libs.dart';
|
|||||||
|
|
||||||
class Auth with ChangeNotifier {
|
class Auth with ChangeNotifier {
|
||||||
bool _authenticated = false;
|
bool _authenticated = false;
|
||||||
SecureKey? _key;
|
SecureKey _key = SecureKey.random(constants.sodium, 128);
|
||||||
String _user = "";
|
String _user = "";
|
||||||
|
|
||||||
bool get authenticated => _authenticated;
|
bool get authenticated => _authenticated;
|
||||||
SecureKey get key => _key!;
|
SecureKey get key => _key;
|
||||||
|
|
||||||
Future<void> authenticate(String user, String password) async {
|
Future<void> authenticate(String user, String password) async {
|
||||||
final sodium = constants.sodium;
|
final sodium = constants.sodium;
|
||||||
if (sodium == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
final keyHash = sodium.crypto.genericHash(
|
final keyHash = sodium.crypto.genericHash(
|
||||||
outLen: sodium.crypto.aeadXChaCha20Poly1305IETF.keyBytes,
|
outLen: sodium.crypto.aeadXChaCha20Poly1305IETF.keyBytes,
|
||||||
@ -40,11 +37,11 @@ class Auth with ChangeNotifier {
|
|||||||
);
|
);
|
||||||
|
|
||||||
if (response.statusCode != 200) {
|
if (response.statusCode != 200) {
|
||||||
|
logoff();
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
final nonce = jsonDecode(response.body)["nonce"];
|
final nonce = jsonDecode(response.body)["nonce"];
|
||||||
debugPrint('nonce: $nonce');
|
|
||||||
return encryptValue('${_user}_$nonce', key);
|
return encryptValue('${_user}_$nonce', key);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('$e');
|
debugPrint('$e');
|
||||||
@ -52,4 +49,10 @@ class Auth with ChangeNotifier {
|
|||||||
|
|
||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void logoff() {
|
||||||
|
_authenticated = false;
|
||||||
|
_user = "";
|
||||||
|
notifyListeners();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -40,6 +40,11 @@ class Mount with ChangeNotifier {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (response.statusCode == 401) {
|
||||||
|
_auth.logoff();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (response.statusCode == 404) {
|
if (response.statusCode == 404) {
|
||||||
_mountList?.reset();
|
_mountList?.reset();
|
||||||
return;
|
return;
|
||||||
@ -71,6 +76,11 @@ class Mount with ChangeNotifier {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (response.statusCode == 401) {
|
||||||
|
_auth.logoff();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (response.statusCode == 404) {
|
if (response.statusCode == 404) {
|
||||||
_mountList?.reset();
|
_mountList?.reset();
|
||||||
return;
|
return;
|
||||||
@ -102,6 +112,11 @@ class Mount with ChangeNotifier {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (response.statusCode == 401) {
|
||||||
|
_auth.logoff();
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (response.statusCode != 200) {
|
if (response.statusCode != 200) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@ -136,6 +151,12 @@ class Mount with ChangeNotifier {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (response.statusCode == 401) {
|
||||||
|
displayAuthError();
|
||||||
|
_auth.logoff();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (response.statusCode == 404) {
|
if (response.statusCode == 404) {
|
||||||
_isMounting = false;
|
_isMounting = false;
|
||||||
_mountList?.reset();
|
_mountList?.reset();
|
||||||
@ -184,13 +205,13 @@ class Mount with ChangeNotifier {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
||||||
if (response.statusCode == 404) {
|
if (response.statusCode == 401) {
|
||||||
_mountList?.reset();
|
_auth.logoff();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (response.statusCode == 500) {
|
if (response.statusCode == 404) {
|
||||||
displayAuthError();
|
_mountList?.reset();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -56,6 +56,11 @@ class MountList with ChangeNotifier {
|
|||||||
Uri.parse('${getBaseUri()}/api/v1/mount_list?auth=$auth'),
|
Uri.parse('${getBaseUri()}/api/v1/mount_list?auth=$auth'),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (response.statusCode == 401) {
|
||||||
|
_auth.logoff();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (response.statusCode == 404) {
|
if (response.statusCode == 404) {
|
||||||
reset();
|
reset();
|
||||||
return;
|
return;
|
||||||
@ -133,12 +138,13 @@ class MountList with ChangeNotifier {
|
|||||||
case 200:
|
case 200:
|
||||||
ret = true;
|
ret = true;
|
||||||
break;
|
break;
|
||||||
|
case 401:
|
||||||
|
displayAuthError();
|
||||||
|
_auth.logoff();
|
||||||
|
break;
|
||||||
case 404:
|
case 404:
|
||||||
reset();
|
reset();
|
||||||
break;
|
break;
|
||||||
case 500:
|
|
||||||
displayAuthError();
|
|
||||||
break;
|
|
||||||
default:
|
default:
|
||||||
displayError();
|
displayError();
|
||||||
break;
|
break;
|
||||||
|
@ -43,11 +43,17 @@ class _EditSettingsScreenState extends State<EditSettingsScreen> {
|
|||||||
|
|
||||||
Future<Map<String, dynamic>> _grabSettings() async {
|
Future<Map<String, dynamic>> _grabSettings() async {
|
||||||
try {
|
try {
|
||||||
final auth = await Provider.of<Auth>(context, listen: false).createAuth();
|
final authProvider = Provider.of<Auth>(context, listen: false);
|
||||||
|
final auth = await authProvider.createAuth();
|
||||||
final response = await http.get(
|
final response = await http.get(
|
||||||
Uri.parse('${getBaseUri()}/api/v1/settings?auth=$auth'),
|
Uri.parse('${getBaseUri()}/api/v1/settings?auth=$auth'),
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if (response.statusCode == 401) {
|
||||||
|
authProvider.logoff();
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
if (response.statusCode != 200) {
|
if (response.statusCode != 200) {
|
||||||
return {};
|
return {};
|
||||||
}
|
}
|
||||||
|
@ -117,17 +117,18 @@ class _UISettingsWidgetState extends State<UISettingsWidget> {
|
|||||||
),
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
if (response.statusCode == 500) {
|
|
||||||
|
if (response.statusCode == 401) {
|
||||||
displayAuthError();
|
displayAuthError();
|
||||||
|
authProvider.logoff();
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
debugPrint('$e');
|
debugPrint('$e');
|
||||||
displayAuthError();
|
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.catchError((e) {
|
.catchError((e) {
|
||||||
debugPrint('$e');
|
debugPrint('$e');
|
||||||
displayAuthError();
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user