2023-07-27 20:05:27 -07:00
|
|
|
import 'dart:async';
|
2023-01-19 08:45:37 -07:00
|
|
|
import 'dart:convert';
|
2023-07-27 20:05:27 -07:00
|
|
|
import 'dart:io';
|
2023-01-19 08:45:37 -07:00
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
2023-03-22 18:36:44 -07:00
|
|
|
import 'package:immich_mobile/shared/models/store.dart';
|
2023-01-19 08:45:37 -07:00
|
|
|
import 'package:immich_mobile/utils/url_helper.dart';
|
2022-07-13 05:23:48 -07:00
|
|
|
import 'package:openapi/api.dart';
|
2023-01-19 08:45:37 -07:00
|
|
|
import 'package:http/http.dart';
|
2022-07-13 05:23:48 -07:00
|
|
|
|
|
|
|
class ApiService {
|
|
|
|
late ApiClient _apiClient;
|
|
|
|
|
|
|
|
late UserApi userApi;
|
|
|
|
late AuthenticationApi authenticationApi;
|
2022-11-20 10:43:10 -07:00
|
|
|
late OAuthApi oAuthApi;
|
2022-07-13 05:23:48 -07:00
|
|
|
late AlbumApi albumApi;
|
|
|
|
late AssetApi assetApi;
|
2023-03-23 08:08:14 -07:00
|
|
|
late SearchApi searchApi;
|
2022-07-13 05:23:48 -07:00
|
|
|
late ServerInfoApi serverInfoApi;
|
2023-05-24 20:52:43 -07:00
|
|
|
late PartnerApi partnerApi;
|
2023-06-23 08:44:02 -07:00
|
|
|
late PersonApi personApi;
|
2022-07-13 05:23:48 -07:00
|
|
|
|
2023-01-19 08:45:37 -07:00
|
|
|
ApiService() {
|
2023-03-22 18:36:44 -07:00
|
|
|
final endpoint = Store.tryGet(StoreKey.serverEndpoint);
|
|
|
|
if (endpoint != null && endpoint.isNotEmpty) {
|
|
|
|
setEndpoint(endpoint);
|
2023-01-19 08:45:37 -07:00
|
|
|
}
|
|
|
|
}
|
2023-03-03 15:38:30 -07:00
|
|
|
String? _authToken;
|
2023-01-19 08:45:37 -07:00
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
setEndpoint(String endpoint) {
|
|
|
|
_apiClient = ApiClient(basePath: endpoint);
|
2023-03-03 15:38:30 -07:00
|
|
|
if (_authToken != null) {
|
|
|
|
setAccessToken(_authToken!);
|
|
|
|
}
|
2022-07-13 05:23:48 -07:00
|
|
|
userApi = UserApi(_apiClient);
|
|
|
|
authenticationApi = AuthenticationApi(_apiClient);
|
2022-11-20 10:43:10 -07:00
|
|
|
oAuthApi = OAuthApi(_apiClient);
|
2022-07-13 05:23:48 -07:00
|
|
|
albumApi = AlbumApi(_apiClient);
|
|
|
|
assetApi = AssetApi(_apiClient);
|
|
|
|
serverInfoApi = ServerInfoApi(_apiClient);
|
2023-03-23 08:08:14 -07:00
|
|
|
searchApi = SearchApi(_apiClient);
|
2023-05-24 20:52:43 -07:00
|
|
|
partnerApi = PartnerApi(_apiClient);
|
2023-06-23 08:44:02 -07:00
|
|
|
personApi = PersonApi(_apiClient);
|
2022-07-13 05:23:48 -07:00
|
|
|
}
|
|
|
|
|
2023-01-19 08:45:37 -07:00
|
|
|
Future<String> resolveAndSetEndpoint(String serverUrl) async {
|
|
|
|
final endpoint = await _resolveEndpoint(serverUrl);
|
|
|
|
setEndpoint(endpoint);
|
|
|
|
|
|
|
|
// Save in hivebox for next startup
|
2023-03-22 18:36:44 -07:00
|
|
|
Store.put(StoreKey.serverEndpoint, endpoint);
|
2023-01-19 08:45:37 -07:00
|
|
|
return endpoint;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Takes a server URL and attempts to resolve the API endpoint.
|
|
|
|
///
|
|
|
|
/// Input: [schema://]host[:port][/path]
|
|
|
|
/// schema - optional (default: https)
|
|
|
|
/// host - required
|
|
|
|
/// port - optional (default: based on schema)
|
|
|
|
/// path - optional
|
|
|
|
Future<String> _resolveEndpoint(String serverUrl) async {
|
|
|
|
final url = sanitizeUrl(serverUrl);
|
|
|
|
|
2023-07-27 20:05:27 -07:00
|
|
|
if (!await _isEndpointAvailable(serverUrl)) {
|
|
|
|
throw ApiException(503, "Server is not reachable");
|
|
|
|
}
|
|
|
|
|
2023-01-19 08:45:37 -07:00
|
|
|
// Check for /.well-known/immich
|
|
|
|
final wellKnownEndpoint = await _getWellKnownEndpoint(url);
|
|
|
|
if (wellKnownEndpoint.isNotEmpty) return wellKnownEndpoint;
|
|
|
|
|
|
|
|
// Otherwise, assume the URL provided is the api endpoint
|
|
|
|
return url;
|
|
|
|
}
|
|
|
|
|
2023-07-27 20:05:27 -07:00
|
|
|
Future<bool> _isEndpointAvailable(String serverUrl) async {
|
|
|
|
final Client client = Client();
|
|
|
|
|
|
|
|
if (!serverUrl.endsWith('/api')) {
|
|
|
|
serverUrl += '/api';
|
|
|
|
}
|
|
|
|
|
|
|
|
// Throw Socket or Timeout exceptions,
|
|
|
|
// we do not care if the endpoints hits an HTTP error
|
|
|
|
try {
|
|
|
|
await client
|
|
|
|
.get(
|
|
|
|
Uri.parse(serverUrl),
|
|
|
|
)
|
|
|
|
.timeout(const Duration(seconds: 5));
|
|
|
|
} on TimeoutException catch (_) {
|
|
|
|
return false;
|
|
|
|
} on SocketException catch (_) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-19 08:45:37 -07:00
|
|
|
Future<String> _getWellKnownEndpoint(String baseUrl) async {
|
|
|
|
final Client client = Client();
|
|
|
|
|
|
|
|
try {
|
|
|
|
final res = await client.get(
|
|
|
|
Uri.parse("$baseUrl/.well-known/immich"),
|
|
|
|
headers: {"Accept": "application/json"},
|
|
|
|
);
|
|
|
|
|
|
|
|
if (res.statusCode == 200) {
|
|
|
|
final data = jsonDecode(res.body);
|
|
|
|
final endpoint = data['api']['endpoint'].toString();
|
|
|
|
|
|
|
|
if (endpoint.startsWith('/')) {
|
|
|
|
// Full URL is relative to base
|
|
|
|
return "$baseUrl$endpoint";
|
|
|
|
}
|
|
|
|
return endpoint;
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
debugPrint("Could not locate /.well-known/immich at $baseUrl");
|
|
|
|
}
|
|
|
|
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2022-07-13 05:23:48 -07:00
|
|
|
setAccessToken(String accessToken) {
|
2023-03-03 15:38:30 -07:00
|
|
|
_authToken = accessToken;
|
2022-07-18 12:14:25 -07:00
|
|
|
_apiClient.addDefaultHeader('Authorization', 'Bearer $accessToken');
|
2022-07-13 05:23:48 -07:00
|
|
|
}
|
2023-03-03 15:38:30 -07:00
|
|
|
|
|
|
|
ApiClient get apiClient => _apiClient;
|
2022-07-13 05:23:48 -07:00
|
|
|
}
|