2022-08-18 22:26:12 +01:00
|
|
|
// ignore_for_file: use_build_context_synchronously
|
2022-08-18 15:33:33 +01:00
|
|
|
import 'dart:io';
|
|
|
|
import 'package:app_installer/app_installer.dart';
|
2022-09-12 00:35:41 +01:00
|
|
|
import 'package:cross_connectivity/cross_connectivity.dart';
|
2022-08-18 15:33:33 +01:00
|
|
|
import 'package:device_apps/device_apps.dart';
|
2022-09-07 13:03:54 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2022-08-18 15:33:33 +01:00
|
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
|
|
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
2022-08-16 18:36:56 +05:30
|
|
|
import 'package:injectable/injectable.dart';
|
2022-08-06 22:35:35 +01:00
|
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
2022-09-05 15:30:26 +01:00
|
|
|
import 'package:revanced_manager/app/app.router.dart';
|
2022-08-16 18:36:56 +05:30
|
|
|
import 'package:revanced_manager/models/patched_application.dart';
|
2022-08-06 22:35:35 +01:00
|
|
|
import 'package:revanced_manager/services/manager_api.dart';
|
2022-08-17 18:44:27 +01:00
|
|
|
import 'package:revanced_manager/services/patcher_api.dart';
|
2022-09-20 00:49:31 +01:00
|
|
|
import 'package:revanced_manager/services/toast.dart';
|
2022-09-05 09:07:38 +01:00
|
|
|
import 'package:revanced_manager/ui/views/navigation/navigation_viewmodel.dart';
|
2022-08-18 15:33:33 +01:00
|
|
|
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
2022-09-23 13:00:30 +05:30
|
|
|
import 'package:revanced_manager/ui/widgets/shared/custom_material_button.dart';
|
2022-08-06 17:43:28 +05:30
|
|
|
import 'package:stacked/stacked.dart';
|
2022-09-05 15:30:26 +01:00
|
|
|
import 'package:stacked_services/stacked_services.dart';
|
2022-09-20 00:03:37 +01:00
|
|
|
import 'package:timezone/timezone.dart' as tz;
|
2022-08-06 17:43:28 +05:30
|
|
|
|
2022-08-16 18:36:56 +05:30
|
|
|
@lazySingleton
|
2022-08-06 17:43:28 +05:30
|
|
|
class HomeViewModel extends BaseViewModel {
|
2022-09-05 15:30:26 +01:00
|
|
|
final NavigationService _navigationService = locator<NavigationService>();
|
2022-08-25 00:51:47 +01:00
|
|
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
2022-08-18 15:33:33 +01:00
|
|
|
final PatcherAPI _patcherAPI = locator<PatcherAPI>();
|
2022-09-20 00:49:31 +01:00
|
|
|
final Toast _toast = locator<Toast>();
|
2022-09-11 02:01:06 +01:00
|
|
|
final flutterLocalNotificationsPlugin = FlutterLocalNotificationsPlugin();
|
|
|
|
DateTime? _lastUpdate;
|
2022-08-16 18:36:56 +05:30
|
|
|
bool showUpdatableApps = true;
|
2022-08-29 15:01:51 +01:00
|
|
|
List<PatchedApplication> patchedInstalledApps = [];
|
|
|
|
List<PatchedApplication> patchedUpdatableApps = [];
|
2022-08-16 18:36:56 +05:30
|
|
|
|
2022-09-12 00:35:41 +01:00
|
|
|
Future<void> initialize(BuildContext context) async {
|
2022-08-18 15:33:33 +01:00
|
|
|
await flutterLocalNotificationsPlugin.initialize(
|
|
|
|
const InitializationSettings(
|
|
|
|
android: AndroidInitializationSettings('ic_notification'),
|
|
|
|
),
|
2022-09-12 18:23:34 +05:30
|
|
|
onSelectNotification: (p) =>
|
|
|
|
DeviceApps.openApp('app.revanced.manager.flutter'),
|
2022-08-18 15:33:33 +01:00
|
|
|
);
|
2022-09-20 00:03:37 +01:00
|
|
|
flutterLocalNotificationsPlugin
|
|
|
|
.resolvePlatformSpecificImplementation<
|
|
|
|
AndroidFlutterLocalNotificationsPlugin>()
|
|
|
|
?.requestPermission();
|
2022-09-12 00:35:41 +01:00
|
|
|
bool isConnected = await Connectivity().checkConnection();
|
|
|
|
if (!isConnected) {
|
2022-09-20 00:49:31 +01:00
|
|
|
_toast.show('homeView.noConnection');
|
2022-09-12 00:35:41 +01:00
|
|
|
}
|
2022-08-30 02:07:28 +01:00
|
|
|
_getPatchedApps();
|
|
|
|
_managerAPI.reAssessSavedApps().then((_) => _getPatchedApps());
|
2022-08-17 18:44:27 +01:00
|
|
|
}
|
|
|
|
|
2022-09-05 15:30:26 +01:00
|
|
|
void navigateToAppInfo(PatchedApplication app) {
|
|
|
|
_navigationService.navigateTo(
|
|
|
|
Routes.appInfoView,
|
|
|
|
arguments: AppInfoViewArguments(app: app),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-08-16 18:36:56 +05:30
|
|
|
void toggleUpdatableApps(bool value) {
|
|
|
|
showUpdatableApps = value;
|
|
|
|
notifyListeners();
|
|
|
|
}
|
|
|
|
|
2022-08-21 02:30:40 +01:00
|
|
|
void navigateToPatcher(PatchedApplication app) async {
|
2022-08-18 15:33:33 +01:00
|
|
|
locator<PatcherViewModel>().selectedApp = app;
|
|
|
|
locator<PatcherViewModel>().selectedPatches =
|
2022-08-29 17:44:45 +01:00
|
|
|
await _patcherAPI.getAppliedPatches(app.appliedPatches);
|
2022-08-21 02:30:40 +01:00
|
|
|
locator<PatcherViewModel>().notifyListeners();
|
2022-09-05 09:07:38 +01:00
|
|
|
locator<NavigationViewModel>().setIndex(1);
|
2022-08-17 18:44:27 +01:00
|
|
|
}
|
|
|
|
|
2022-08-30 02:07:28 +01:00
|
|
|
void _getPatchedApps() {
|
2022-09-18 04:12:33 +01:00
|
|
|
patchedInstalledApps = _managerAPI
|
|
|
|
.getPatchedApps()
|
|
|
|
.where((app) => app.hasUpdates == false)
|
|
|
|
.toList();
|
2022-08-29 15:01:51 +01:00
|
|
|
patchedUpdatableApps = _managerAPI
|
|
|
|
.getPatchedApps()
|
|
|
|
.where((app) => app.hasUpdates == true)
|
|
|
|
.toList();
|
|
|
|
notifyListeners();
|
2022-08-16 18:36:56 +05:30
|
|
|
}
|
2022-08-18 15:33:33 +01:00
|
|
|
|
2022-08-18 17:32:58 +01:00
|
|
|
Future<bool> hasManagerUpdates() async {
|
|
|
|
String? latestVersion = await _managerAPI.getLatestManagerVersion();
|
|
|
|
String currentVersion = await _managerAPI.getCurrentManagerVersion();
|
|
|
|
if (latestVersion != null) {
|
|
|
|
try {
|
|
|
|
int latestVersionInt =
|
2022-08-26 02:01:53 +01:00
|
|
|
int.parse(latestVersion.replaceAll(RegExp('[^0-9]'), ''));
|
2022-08-18 17:32:58 +01:00
|
|
|
int currentVersionInt =
|
2022-08-26 02:01:53 +01:00
|
|
|
int.parse(currentVersion.replaceAll(RegExp('[^0-9]'), ''));
|
2022-08-18 17:32:58 +01:00
|
|
|
return latestVersionInt > currentVersionInt;
|
|
|
|
} on Exception {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-09-20 00:03:37 +01:00
|
|
|
Future<void> updateManager(BuildContext context) async {
|
|
|
|
try {
|
2022-09-20 00:49:31 +01:00
|
|
|
_toast.show('homeView.downloadingMessage');
|
2022-09-20 00:03:37 +01:00
|
|
|
File? managerApk = await _managerAPI.downloadManager();
|
|
|
|
if (managerApk != null) {
|
|
|
|
await flutterLocalNotificationsPlugin.zonedSchedule(
|
|
|
|
0,
|
|
|
|
FlutterI18n.translate(
|
|
|
|
context,
|
|
|
|
'homeView.notificationTitle',
|
|
|
|
),
|
|
|
|
FlutterI18n.translate(
|
|
|
|
context,
|
|
|
|
'homeView.notificationText',
|
|
|
|
),
|
|
|
|
tz.TZDateTime.now(tz.local).add(const Duration(seconds: 5)),
|
|
|
|
const NotificationDetails(
|
|
|
|
android: AndroidNotificationDetails(
|
|
|
|
'revanced_manager_channel',
|
|
|
|
'ReVanced Manager Channel',
|
|
|
|
importance: Importance.max,
|
|
|
|
priority: Priority.high,
|
|
|
|
ticker: 'ticker',
|
|
|
|
),
|
|
|
|
),
|
|
|
|
androidAllowWhileIdle: true,
|
|
|
|
uiLocalNotificationDateInterpretation:
|
|
|
|
UILocalNotificationDateInterpretation.absoluteTime,
|
|
|
|
);
|
2022-09-20 00:49:31 +01:00
|
|
|
_toast.show('homeView.installingMessage');
|
2022-08-18 22:26:12 +01:00
|
|
|
await AppInstaller.installApk(managerApk.path);
|
2022-09-20 00:03:37 +01:00
|
|
|
} else {
|
2022-09-20 00:49:31 +01:00
|
|
|
_toast.show('homeView.errorDownloadMessage');
|
2022-08-18 22:26:12 +01:00
|
|
|
}
|
2022-09-20 00:03:37 +01:00
|
|
|
} on Exception {
|
2022-09-20 00:49:31 +01:00
|
|
|
_toast.show('homeView.errorInstallMessage');
|
2022-08-18 15:33:33 +01:00
|
|
|
}
|
|
|
|
}
|
2022-09-07 13:03:54 +01:00
|
|
|
|
2022-09-20 00:03:37 +01:00
|
|
|
Future<void> showUpdateConfirmationDialog(BuildContext parentContext) async {
|
2022-09-07 13:03:54 +01:00
|
|
|
return showDialog(
|
2022-09-20 00:03:37 +01:00
|
|
|
context: parentContext,
|
2022-09-07 13:03:54 +01:00
|
|
|
builder: (context) => AlertDialog(
|
|
|
|
title: I18nText('homeView.updateDialogTitle'),
|
|
|
|
backgroundColor: Theme.of(context).colorScheme.secondaryContainer,
|
|
|
|
content: I18nText('homeView.updateDialogText'),
|
2022-09-12 14:20:25 +01:00
|
|
|
actions: <Widget>[
|
2022-09-07 13:03:54 +01:00
|
|
|
CustomMaterialButton(
|
|
|
|
isFilled: false,
|
2022-09-18 22:52:29 +01:00
|
|
|
label: I18nText('noButton'),
|
2022-09-07 13:03:54 +01:00
|
|
|
onPressed: () => Navigator.of(context).pop(),
|
|
|
|
),
|
|
|
|
CustomMaterialButton(
|
2022-09-18 22:52:29 +01:00
|
|
|
label: I18nText('yesButton'),
|
2022-09-14 12:30:53 +01:00
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
2022-09-20 00:03:37 +01:00
|
|
|
updateManager(parentContext);
|
2022-09-14 12:30:53 +01:00
|
|
|
},
|
2022-09-07 13:03:54 +01:00
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2022-09-11 02:01:06 +01:00
|
|
|
|
|
|
|
Future<String?> getLatestPatcherReleaseTime() async {
|
|
|
|
return _managerAPI.getLatestPatcherReleaseTime();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<String?> getLatestManagerReleaseTime() async {
|
|
|
|
return _managerAPI.getLatestManagerReleaseTime();
|
|
|
|
}
|
|
|
|
|
2022-09-12 00:35:41 +01:00
|
|
|
Future<void> forceRefresh(BuildContext context) async {
|
2022-09-11 02:01:06 +01:00
|
|
|
await Future.delayed(const Duration(seconds: 1));
|
|
|
|
if (_lastUpdate == null ||
|
|
|
|
_lastUpdate!.difference(DateTime.now()).inSeconds > 60) {
|
|
|
|
_managerAPI.clearAllData();
|
|
|
|
}
|
2022-09-12 00:35:41 +01:00
|
|
|
initialize(context);
|
2022-09-11 02:01:06 +01:00
|
|
|
}
|
2022-08-06 17:43:28 +05:30
|
|
|
}
|