mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
142 lines
4.5 KiB
Dart
142 lines
4.5 KiB
Dart
// ignore_for_file: use_build_context_synchronously
|
|
import 'dart:io';
|
|
import 'package:app_installer/app_installer.dart';
|
|
import 'package:device_apps/device_apps.dart';
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter_i18n/flutter_i18n.dart';
|
|
import 'package:flutter_local_notifications/flutter_local_notifications.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:injectable/injectable.dart';
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
|
import 'package:revanced_manager/main_viewmodel.dart';
|
|
import 'package:revanced_manager/models/patched_application.dart';
|
|
import 'package:revanced_manager/services/manager_api.dart';
|
|
import 'package:revanced_manager/services/patcher_api.dart';
|
|
import 'package:revanced_manager/ui/views/patcher/patcher_viewmodel.dart';
|
|
import 'package:stacked/stacked.dart';
|
|
|
|
@lazySingleton
|
|
class HomeViewModel extends BaseViewModel {
|
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
|
final PatcherAPI _patcherAPI = locator<PatcherAPI>();
|
|
final FlutterLocalNotificationsPlugin flutterLocalNotificationsPlugin =
|
|
FlutterLocalNotificationsPlugin();
|
|
bool showUpdatableApps = true;
|
|
List<PatchedApplication> patchedInstalledApps = [];
|
|
List<PatchedApplication> patchedUpdatableApps = [];
|
|
|
|
Future<void> initialize() async {
|
|
await _getPatchedApps();
|
|
await _patcherAPI.loadPatches();
|
|
await flutterLocalNotificationsPlugin.initialize(
|
|
const InitializationSettings(
|
|
android: AndroidInitializationSettings('ic_notification'),
|
|
),
|
|
onSelectNotification: (p) => DeviceApps.openApp('app.revanced.manager'),
|
|
);
|
|
_managerAPI.reAssessSavedApps().then((_) => notifyListeners());
|
|
}
|
|
|
|
void toggleUpdatableApps(bool value) {
|
|
showUpdatableApps = value;
|
|
notifyListeners();
|
|
}
|
|
|
|
void navigateToPatcher(PatchedApplication app) async {
|
|
locator<PatcherViewModel>().selectedApp = app;
|
|
locator<PatcherViewModel>().selectedPatches =
|
|
await _patcherAPI.getAppliedPatches(app);
|
|
locator<PatcherViewModel>().notifyListeners();
|
|
locator<MainViewModel>().setIndex(1);
|
|
}
|
|
|
|
Future<void> _getPatchedApps() async {
|
|
patchedInstalledApps = _managerAPI
|
|
.getPatchedApps()
|
|
.where((app) => app.hasUpdates == false)
|
|
.toList();
|
|
patchedUpdatableApps = _managerAPI
|
|
.getPatchedApps()
|
|
.where((app) => app.hasUpdates == true)
|
|
.toList();
|
|
notifyListeners();
|
|
}
|
|
|
|
Future<bool> hasManagerUpdates() async {
|
|
String? latestVersion = await _managerAPI.getLatestManagerVersion();
|
|
String currentVersion = await _managerAPI.getCurrentManagerVersion();
|
|
if (latestVersion != null) {
|
|
try {
|
|
int latestVersionInt =
|
|
int.parse(latestVersion.replaceAll(RegExp('[^0-9]'), ''));
|
|
int currentVersionInt =
|
|
int.parse(currentVersion.replaceAll(RegExp('[^0-9]'), ''));
|
|
return latestVersionInt > currentVersionInt;
|
|
} on Exception {
|
|
return false;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void updateManager(BuildContext context) async {
|
|
Fluttertoast.showToast(
|
|
msg: FlutterI18n.translate(
|
|
context,
|
|
'homeView.downloadingMessage',
|
|
),
|
|
toastLength: Toast.LENGTH_LONG,
|
|
gravity: ToastGravity.CENTER,
|
|
);
|
|
File? managerApk = await _managerAPI.downloadManager('.apk');
|
|
if (managerApk != null) {
|
|
flutterLocalNotificationsPlugin.show(
|
|
0,
|
|
FlutterI18n.translate(
|
|
context,
|
|
'homeView.notificationTitle',
|
|
),
|
|
FlutterI18n.translate(
|
|
context,
|
|
'homeView.notificationText',
|
|
),
|
|
const NotificationDetails(
|
|
android: AndroidNotificationDetails(
|
|
'revanced_manager_channel',
|
|
'ReVanced Manager Channel',
|
|
),
|
|
),
|
|
);
|
|
try {
|
|
Fluttertoast.showToast(
|
|
msg: FlutterI18n.translate(
|
|
context,
|
|
'homeView.installingMessage',
|
|
),
|
|
toastLength: Toast.LENGTH_LONG,
|
|
gravity: ToastGravity.CENTER,
|
|
);
|
|
await AppInstaller.installApk(managerApk.path);
|
|
} on Exception {
|
|
Fluttertoast.showToast(
|
|
msg: FlutterI18n.translate(
|
|
context,
|
|
'homeView.errorInstallMessage',
|
|
),
|
|
toastLength: Toast.LENGTH_LONG,
|
|
gravity: ToastGravity.CENTER,
|
|
);
|
|
}
|
|
} else {
|
|
Fluttertoast.showToast(
|
|
msg: FlutterI18n.translate(
|
|
context,
|
|
'homeView.errorDownloadMessage',
|
|
),
|
|
toastLength: Toast.LENGTH_LONG,
|
|
gravity: ToastGravity.CENTER,
|
|
);
|
|
}
|
|
}
|
|
}
|