mirror of
https://github.com/immich-app/immich.git
synced 2026-03-26 20:00:44 +03:00
* use shared client in dart fix android * websocket integration platform-side headers update comment consistent platform check tweak websocket handling support streaming * redundant logging * fix proguard * formatting * handle onProgress * support videos on ios * inline return * improved ios impl * cleanup * sync stopForegroundBackup * voidify * future already completed * stream request on android * outdated ios ws code * use `choosePrivateKeyAlias` * return result * formatting * update tests * redundant check * handle custom headers * move completer outside of state * persist auth * dispose old socket * use group id for cookies * redundant headers * cache global ref * handle network switching * handle basic auth * apply custom headers immediately * video player update * fix * persist url * potential logout fix --------- Co-authored-by: Alex <alex.tran1502@gmail.com>
56 lines
1.8 KiB
Dart
56 lines
1.8 KiB
Dart
import 'dart:ffi';
|
|
import 'dart:io';
|
|
|
|
import 'package:cupertino_http/cupertino_http.dart';
|
|
import 'package:http/http.dart' as http;
|
|
import 'package:immich_mobile/providers/infrastructure/platform.provider.dart';
|
|
import 'package:ok_http/ok_http.dart';
|
|
import 'package:web_socket/web_socket.dart';
|
|
|
|
class NetworkRepository {
|
|
static http.Client? _client;
|
|
static Pointer<Void>? _clientPointer;
|
|
|
|
static Future<void> init() async {
|
|
final clientPointer = Pointer<Void>.fromAddress(await networkApi.getClientPointer());
|
|
if (clientPointer == _clientPointer) {
|
|
return;
|
|
}
|
|
_clientPointer = clientPointer;
|
|
_client?.close();
|
|
if (Platform.isIOS) {
|
|
final session = URLSession.fromRawPointer(clientPointer.cast());
|
|
_client = CupertinoClient.fromSharedSession(session);
|
|
} else {
|
|
_client = OkHttpClient.fromJniGlobalRef(clientPointer);
|
|
}
|
|
}
|
|
|
|
static Future<void> setHeaders(Map<String, String> headers, List<String> serverUrls) async {
|
|
await networkApi.setRequestHeaders(headers, serverUrls);
|
|
if (Platform.isIOS) {
|
|
await init();
|
|
}
|
|
}
|
|
|
|
// ignore: avoid-unused-parameters
|
|
static Future<WebSocket> createWebSocket(Uri uri, {Map<String, String>? headers, Iterable<String>? protocols}) {
|
|
if (Platform.isIOS) {
|
|
final session = URLSession.fromRawPointer(_clientPointer!.cast());
|
|
return CupertinoWebSocket.connectWithSession(session, uri, protocols: protocols);
|
|
} else {
|
|
return OkHttpWebSocket.connectFromJniGlobalRef(_clientPointer!, uri, protocols: protocols);
|
|
}
|
|
}
|
|
|
|
const NetworkRepository();
|
|
|
|
/// Returns a shared HTTP client that uses native SSL configuration.
|
|
///
|
|
/// On iOS: Uses SharedURLSessionManager's URLSession.
|
|
/// On Android: Uses SharedHttpClientManager's OkHttpClient.
|
|
///
|
|
/// Must call [init] before using this method.
|
|
static http.Client get client => _client!;
|
|
}
|