mirror of
https://github.com/immich-app/immich.git
synced 2025-01-04 02:46:47 +01:00
33 lines
879 B
Dart
33 lines
879 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
import 'package:immich_mobile/shared/services/api.service.dart';
|
|
import 'package:openapi/api.dart';
|
|
|
|
final serverInfoServiceProvider = Provider(
|
|
(ref) => ServerInfoService(
|
|
ref.watch(apiServiceProvider),
|
|
),
|
|
);
|
|
|
|
class ServerInfoService {
|
|
final ApiService _apiService;
|
|
ServerInfoService(this._apiService);
|
|
|
|
Future<ServerInfoResponseDto?> getServerInfo() async {
|
|
try {
|
|
return await _apiService.serverInfoApi.getServerInfo();
|
|
} catch (e) {
|
|
debugPrint("Error [getServerInfo] ${e.toString()}");
|
|
return null;
|
|
}
|
|
}
|
|
|
|
Future<ServerVersionReponseDto?> getServerVersion() async {
|
|
try {
|
|
return await _apiService.serverInfoApi.getServerVersion();
|
|
} catch (e) {
|
|
debugPrint("Error getting server info");
|
|
return null;
|
|
}
|
|
}
|
|
}
|