-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat #13555 add server cert field, similar to client cert
- Loading branch information
Showing
5 changed files
with
198 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
133 changes: 133 additions & 0 deletions
133
mobile/lib/widgets/settings/ssl_server_cert_settings.dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
import 'dart:io'; | ||
|
||
import 'package:easy_localization/easy_localization.dart'; | ||
import 'package:file_picker/file_picker.dart'; | ||
import 'package:flutter/material.dart'; | ||
import 'package:flutter/services.dart'; | ||
import 'package:immich_mobile/entities/store.entity.dart'; | ||
import 'package:immich_mobile/extensions/build_context_extensions.dart'; | ||
import 'package:immich_mobile/extensions/theme_extensions.dart'; | ||
import 'package:immich_mobile/utils/http_ssl_cert_override.dart'; | ||
|
||
class SslServerCertSettings extends StatefulWidget { | ||
const SslServerCertSettings({super.key, required this.isLoggedIn}); | ||
|
||
final bool isLoggedIn; | ||
|
||
@override | ||
State<StatefulWidget> createState() => _SslServerCertSettingsState(); | ||
} | ||
|
||
class _SslServerCertSettingsState extends State<SslServerCertSettings> { | ||
_SslServerCertSettingsState() | ||
: isCertExist = SSLServerCertStoreVal.load() != null; | ||
|
||
bool isCertExist; | ||
|
||
@override | ||
Widget build(BuildContext context) { | ||
return ListTile( | ||
contentPadding: const EdgeInsets.symmetric(horizontal: 20), | ||
horizontalTitleGap: 20, | ||
isThreeLine: true, | ||
title: Text( | ||
"server_cert_title".tr(), | ||
style: context.textTheme.bodyLarge?.copyWith( | ||
fontWeight: FontWeight.w500, | ||
), | ||
), | ||
subtitle: Column( | ||
crossAxisAlignment: CrossAxisAlignment.start, | ||
children: [ | ||
Text( | ||
"server_cert_subtitle".tr(), | ||
style: context.textTheme.bodyMedium?.copyWith( | ||
color: context.colorScheme.onSurfaceSecondary, | ||
), | ||
), | ||
const SizedBox( | ||
height: 6, | ||
), | ||
Row( | ||
mainAxisSize: MainAxisSize.max, | ||
mainAxisAlignment: MainAxisAlignment.center, | ||
crossAxisAlignment: CrossAxisAlignment.center, | ||
children: [ | ||
ElevatedButton( | ||
onPressed: widget.isLoggedIn ? null : () => importCert(context), | ||
child: Text("server_cert_import".tr()), | ||
), | ||
const SizedBox( | ||
width: 15, | ||
), | ||
ElevatedButton( | ||
onPressed: widget.isLoggedIn || !isCertExist | ||
? null | ||
: () => removeCert(context), | ||
child: Text("server_cert_remove".tr()), | ||
), | ||
], | ||
), | ||
], | ||
), | ||
); | ||
} | ||
|
||
void showMessage(BuildContext context, String message) { | ||
showDialog( | ||
context: context, | ||
builder: (ctx) => AlertDialog( | ||
content: Text(message), | ||
actions: [ | ||
TextButton( | ||
onPressed: () => ctx.pop(), | ||
child: Text("server_cert_dialog_msg_confirm".tr()), | ||
), | ||
], | ||
), | ||
); | ||
} | ||
|
||
void storeCert(BuildContext context, Uint8List data) { | ||
final cert = SSLServerCertStoreVal(data); | ||
// Test whether the certificate is valid | ||
final isCertValid = HttpSSLCertOverride.setRootCert( | ||
SecurityContext(withTrustedRoots: true), | ||
cert, | ||
); | ||
if (!isCertValid) { | ||
showMessage(context, "server_cert_invalid_msg".tr()); | ||
return; | ||
} | ||
cert.save(); | ||
HttpOverrides.global = HttpSSLCertOverride(); | ||
setState( | ||
() => isCertExist = true, | ||
); | ||
showMessage(context, "client_cert_import_success_msg".tr()); | ||
} | ||
|
||
Future<void> importCert(BuildContext ctx) async { | ||
FilePickerResult? res = await FilePicker.platform.pickFiles( | ||
type: FileType.custom, | ||
allowedExtensions: [ | ||
'p12', | ||
'pfx', | ||
], | ||
); | ||
if (res != null) { | ||
File file = File(res.files.single.path!); | ||
final data = await file.readAsBytes(); | ||
storeCert(context, data); | ||
} | ||
} | ||
|
||
void removeCert(BuildContext context) { | ||
SSLServerCertStoreVal.delete(); | ||
HttpOverrides.global = HttpSSLCertOverride(); | ||
setState( | ||
() => isCertExist = false, | ||
); | ||
showMessage(context, "server_cert_remove_msg".tr()); | ||
} | ||
} |