mirror of
https://github.com/immich-app/immich.git
synced 2026-02-07 11:33:45 -05:00
* handle mtls on ios * update android impl * ui improvements * dead code * no need to store data separately * improve concurrency * dead code * add migration * remove unused dependency * trust user-installed certs * removed print statement * fix ios * improve android styling * outdated comments * update lock file * handle translation * fix prompt cancellation * fix video playback * Apply suggestion from @shenlong-tanwen Co-authored-by: shenlong <139912620+shenlong-tanwen@users.noreply.github.com> * Apply suggestion from @shenlong-tanwen Co-authored-by: shenlong <139912620+shenlong-tanwen@users.noreply.github.com> * formatting --------- Co-authored-by: shenlong <139912620+shenlong-tanwen@users.noreply.github.com>
28 lines
1.0 KiB
Dart
28 lines
1.0 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:immich_mobile/domain/models/store.model.dart';
|
|
import 'package:immich_mobile/entities/store.entity.dart';
|
|
import 'package:immich_mobile/services/app_settings.service.dart';
|
|
import 'package:immich_mobile/utils/http_ssl_cert_override.dart';
|
|
|
|
class HttpSSLOptions {
|
|
static void apply() {
|
|
AppSettingsEnum setting = AppSettingsEnum.allowSelfSignedSSLCert;
|
|
bool allowSelfSignedSSLCert = Store.get(setting.storeKey as StoreKey<bool>, setting.defaultValue);
|
|
return _apply(allowSelfSignedSSLCert);
|
|
}
|
|
|
|
static void applyFromSettings(bool newValue) => _apply(newValue);
|
|
|
|
static void _apply(bool allowSelfSignedSSLCert) {
|
|
String? serverHost;
|
|
if (allowSelfSignedSSLCert && Store.tryGet(StoreKey.currentUser) != null) {
|
|
serverHost = Uri.parse(Store.tryGet(StoreKey.serverEndpoint) ?? "").host;
|
|
}
|
|
|
|
SSLClientCertStoreVal? clientCert = SSLClientCertStoreVal.load();
|
|
|
|
HttpOverrides.global = HttpSSLCertOverride(allowSelfSignedSSLCert, serverHost, clientCert);
|
|
}
|
|
}
|