2022-03-10 15:09:03 -07:00
|
|
|
import 'package:hooks_riverpod/hooks_riverpod.dart';
|
|
|
|
|
|
|
|
import 'package:immich_mobile/shared/models/mapbox_info.model.dart';
|
2022-03-21 23:22:04 -07:00
|
|
|
import 'package:immich_mobile/shared/models/server_info_state.model.dart';
|
|
|
|
import 'package:immich_mobile/shared/models/server_version.model.dart';
|
2022-03-10 15:09:03 -07:00
|
|
|
import 'package:immich_mobile/shared/services/server_info.service.dart';
|
2022-03-21 23:22:04 -07:00
|
|
|
import 'package:package_info_plus/package_info_plus.dart';
|
2022-03-10 15:09:03 -07:00
|
|
|
|
|
|
|
class ServerInfoNotifier extends StateNotifier<ServerInfoState> {
|
|
|
|
ServerInfoNotifier()
|
|
|
|
: super(
|
|
|
|
ServerInfoState(
|
|
|
|
mapboxInfo: MapboxInfo(isEnable: false, mapboxSecret: ""),
|
2022-06-22 21:14:14 -07:00
|
|
|
serverVersion:
|
|
|
|
ServerVersion(major: 0, patch: 0, minor: 0, build: 0),
|
2022-03-21 23:22:04 -07:00
|
|
|
isVersionMismatch: false,
|
|
|
|
versionMismatchErrorMessage: "",
|
2022-03-10 15:09:03 -07:00
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
final ServerInfoService _serverInfoService = ServerInfoService();
|
|
|
|
|
2022-03-21 23:22:04 -07:00
|
|
|
getServerVersion() async {
|
|
|
|
ServerVersion? serverVersion = await _serverInfoService.getServerVersion();
|
|
|
|
|
|
|
|
if (serverVersion == null) {
|
|
|
|
state = state.copyWith(
|
|
|
|
isVersionMismatch: true,
|
|
|
|
versionMismatchErrorMessage:
|
|
|
|
"Server is out of date. Some functionalities might not working correctly. Download and rebuild server",
|
|
|
|
);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
state = state.copyWith(serverVersion: serverVersion);
|
|
|
|
|
2022-06-22 21:14:14 -07:00
|
|
|
var packageInfo = await PackageInfo.fromPlatform();
|
2022-03-21 23:22:04 -07:00
|
|
|
|
|
|
|
Map<String, int> appVersion = _getDetailVersion(packageInfo.version);
|
|
|
|
|
|
|
|
if (appVersion["major"]! > serverVersion.major) {
|
|
|
|
state = state.copyWith(
|
|
|
|
isVersionMismatch: true,
|
|
|
|
versionMismatchErrorMessage:
|
|
|
|
"Server is out of date in major version. Some functionalities might not work correctly. Download and rebuild server",
|
|
|
|
);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (appVersion["minor"]! > serverVersion.minor) {
|
|
|
|
state = state.copyWith(
|
|
|
|
isVersionMismatch: true,
|
|
|
|
versionMismatchErrorMessage:
|
|
|
|
"Server is out of date in minor version. Some functionalities might not work correctly. Consider download and rebuild server",
|
|
|
|
);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-06-22 21:14:14 -07:00
|
|
|
state = state.copyWith(
|
|
|
|
isVersionMismatch: false, versionMismatchErrorMessage: "");
|
2022-03-21 23:22:04 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Map<String, int> _getDetailVersion(String version) {
|
|
|
|
List<String> detail = version.split(".");
|
|
|
|
|
|
|
|
var major = detail[0];
|
|
|
|
var minor = detail[1];
|
|
|
|
var patch = detail[2];
|
|
|
|
|
|
|
|
return {
|
|
|
|
"major": int.parse(major),
|
|
|
|
"minor": int.parse(minor),
|
|
|
|
"patch": int.parse(patch),
|
|
|
|
};
|
|
|
|
}
|
2022-03-10 15:09:03 -07:00
|
|
|
}
|
|
|
|
|
2022-06-22 21:14:14 -07:00
|
|
|
final serverInfoProvider =
|
|
|
|
StateNotifierProvider<ServerInfoNotifier, ServerInfoState>((ref) {
|
2022-03-10 15:09:03 -07:00
|
|
|
return ServerInfoNotifier();
|
|
|
|
});
|