selfprivacy.org.app/lib/logic/cubit/services/services_cubit.dart

32 lines
1.1 KiB
Dart
Raw Normal View History

import 'package:selfprivacy/logic/api_maps/server.dart';
2021-08-29 16:54:28 +03:00
import 'package:selfprivacy/logic/common_enum/common_enum.dart';
import 'package:selfprivacy/logic/cubit/app_config_dependent/authentication_dependend_cubit.dart';
2021-08-29 12:50:24 +03:00
part 'services_state.dart';
class ServicesCubit extends ServerInstallationDependendCubit<ServicesState> {
2022-06-05 22:36:32 +03:00
ServicesCubit(final ServerInstallationCubit serverInstallationCubit)
: super(serverInstallationCubit, ServicesState.allOff());
2022-06-05 22:36:32 +03:00
final ServerApi api = ServerApi();
2022-05-24 21:55:39 +03:00
@override
Future<void> load() async {
if (serverInstallationCubit.state is ServerInstallationFinished) {
2022-06-05 22:36:32 +03:00
final Map<ServiceTypes, bool> statuses = await api.servicesPowerCheck();
2021-09-29 21:28:47 +03:00
emit(
ServicesState(
isPasswordManagerEnable: statuses[ServiceTypes.passwordManager]!,
isCloudEnable: statuses[ServiceTypes.cloud]!,
isGitEnable: statuses[ServiceTypes.git]!,
isSocialNetworkEnable: statuses[ServiceTypes.socialNetwork]!,
isVpnEnable: statuses[ServiceTypes.vpn]!,
),
);
}
2021-08-29 16:54:28 +03:00
}
@override
void clear() async {
2021-08-29 16:54:28 +03:00
emit(ServicesState.allOff());
}
2021-08-29 12:50:24 +03:00
}