2022-08-06 15:04:18 +02:00
|
|
|
import 'dart:io';
|
2023-01-30 13:35:06 +01:00
|
|
|
|
2022-09-11 03:01:06 +02:00
|
|
|
import 'package:collection/collection.dart';
|
2023-01-30 13:35:06 +01:00
|
|
|
import 'package:cr_file_saver/file_saver.dart';
|
2022-08-13 11:56:30 +02:00
|
|
|
import 'package:device_apps/device_apps.dart';
|
2023-01-30 13:35:06 +01:00
|
|
|
import 'package:flutter/foundation.dart';
|
2022-08-06 15:04:18 +02:00
|
|
|
import 'package:flutter/services.dart';
|
2022-08-09 01:01:06 +02:00
|
|
|
import 'package:injectable/injectable.dart';
|
2023-07-15 03:10:36 +02:00
|
|
|
import 'package:install_plugin/install_plugin.dart';
|
2022-08-13 11:56:30 +02:00
|
|
|
import 'package:path_provider/path_provider.dart';
|
2022-08-25 01:51:47 +02:00
|
|
|
import 'package:revanced_manager/app/app.locator.dart';
|
2022-08-06 23:35:35 +02:00
|
|
|
import 'package:revanced_manager/models/patch.dart';
|
2022-08-14 20:40:34 +02:00
|
|
|
import 'package:revanced_manager/models/patched_application.dart';
|
2022-08-18 16:33:33 +02:00
|
|
|
import 'package:revanced_manager/services/manager_api.dart';
|
2022-08-14 20:40:34 +02:00
|
|
|
import 'package:revanced_manager/services/root_api.dart';
|
2022-08-13 11:56:30 +02:00
|
|
|
import 'package:share_extend/share_extend.dart';
|
2022-08-06 15:04:18 +02:00
|
|
|
|
2022-08-09 01:01:06 +02:00
|
|
|
@lazySingleton
|
2022-08-09 02:20:50 +02:00
|
|
|
class PatcherAPI {
|
2022-09-12 14:53:34 +02:00
|
|
|
static const patcherChannel =
|
2023-10-12 02:00:39 +02:00
|
|
|
MethodChannel('app.revanced.manager.flutter/patcher');
|
2022-08-25 01:51:47 +02:00
|
|
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
2022-08-18 16:33:33 +02:00
|
|
|
final RootAPI _rootAPI = RootAPI();
|
2022-10-09 20:35:43 +02:00
|
|
|
late Directory _dataDir;
|
2022-08-30 03:18:20 +02:00
|
|
|
late Directory _tmpDir;
|
2022-09-07 19:25:12 +02:00
|
|
|
late File _keyStoreFile;
|
2022-08-29 18:44:45 +02:00
|
|
|
List<Patch> _patches = [];
|
2023-09-15 17:58:15 +02:00
|
|
|
List<Patch> _universalPatches = [];
|
|
|
|
List<String> _compatiblePackages = [];
|
2022-12-15 19:05:45 +01:00
|
|
|
Map filteredPatches = <String, List<Patch>>{};
|
2023-09-30 21:40:03 +02:00
|
|
|
File? outFile;
|
2022-08-09 01:01:06 +02:00
|
|
|
|
2022-08-29 18:44:45 +02:00
|
|
|
Future<void> initialize() async {
|
2023-10-04 21:16:56 +02:00
|
|
|
await loadPatches();
|
2023-08-11 03:11:19 +02:00
|
|
|
await _managerAPI.downloadIntegrations();
|
2023-01-30 13:35:06 +01:00
|
|
|
final Directory appCache = await getTemporaryDirectory();
|
2022-10-09 20:35:43 +02:00
|
|
|
_dataDir = await getExternalStorageDirectory() ?? appCache;
|
2022-08-30 03:18:20 +02:00
|
|
|
_tmpDir = Directory('${appCache.path}/patcher');
|
2022-10-09 20:35:43 +02:00
|
|
|
_keyStoreFile = File('${_dataDir.path}/revanced-manager.keystore');
|
2022-08-30 03:18:20 +02:00
|
|
|
cleanPatcher();
|
|
|
|
}
|
|
|
|
|
|
|
|
void cleanPatcher() {
|
|
|
|
if (_tmpDir.existsSync()) {
|
|
|
|
_tmpDir.deleteSync(recursive: true);
|
|
|
|
}
|
2022-08-19 20:13:43 +02:00
|
|
|
}
|
|
|
|
|
2023-09-15 17:58:15 +02:00
|
|
|
List<String> getCompatiblePackages() {
|
|
|
|
final List<String> compatiblePackages = [];
|
|
|
|
for (final Patch patch in _patches) {
|
|
|
|
for (final Package package in patch.compatiblePackages) {
|
|
|
|
if (!compatiblePackages.contains(package.name)) {
|
|
|
|
compatiblePackages.add(package.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return compatiblePackages;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Patch> getUniversalPatches() {
|
2023-10-03 18:54:51 +02:00
|
|
|
return _patches.where((patch) => patch.compatiblePackages.isEmpty).toList();
|
2023-09-15 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2023-10-04 21:16:56 +02:00
|
|
|
Future<void> loadPatches() async {
|
2022-08-29 18:44:45 +02:00
|
|
|
try {
|
|
|
|
if (_patches.isEmpty) {
|
2022-09-11 03:01:06 +02:00
|
|
|
_patches = await _managerAPI.getPatches();
|
2022-08-06 15:04:18 +02:00
|
|
|
}
|
2023-03-05 10:12:46 +01:00
|
|
|
} on Exception catch (e) {
|
|
|
|
if (kDebugMode) {
|
|
|
|
print(e);
|
|
|
|
}
|
2022-08-29 18:44:45 +02:00
|
|
|
_patches = List.empty();
|
2022-08-06 15:04:18 +02:00
|
|
|
}
|
2023-09-15 17:58:15 +02:00
|
|
|
|
|
|
|
_compatiblePackages = getCompatiblePackages();
|
|
|
|
_universalPatches = getUniversalPatches();
|
2022-08-06 15:04:18 +02:00
|
|
|
}
|
|
|
|
|
2023-01-30 13:35:06 +01:00
|
|
|
Future<List<ApplicationWithIcon>> getFilteredInstalledApps(
|
2023-10-12 02:00:39 +02:00
|
|
|
bool showUniversalPatches,) async {
|
2023-01-30 13:35:06 +01:00
|
|
|
final List<ApplicationWithIcon> filteredApps = [];
|
|
|
|
final bool allAppsIncluded =
|
2023-10-03 18:54:51 +02:00
|
|
|
_universalPatches.isNotEmpty && showUniversalPatches;
|
2022-12-11 13:30:44 +01:00
|
|
|
if (allAppsIncluded) {
|
2023-09-15 17:58:15 +02:00
|
|
|
final appList = await DeviceApps.getInstalledApplications(
|
2022-12-11 13:30:44 +01:00
|
|
|
includeAppIcons: true,
|
|
|
|
onlyAppsWithLaunchIntent: true,
|
|
|
|
);
|
2023-09-15 17:58:15 +02:00
|
|
|
|
2023-10-03 18:54:51 +02:00
|
|
|
for (final app in appList) {
|
2023-09-15 17:58:15 +02:00
|
|
|
filteredApps.add(app as ApplicationWithIcon);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for (final packageName in _compatiblePackages) {
|
|
|
|
try {
|
|
|
|
if (!filteredApps.any((app) => app.packageName == packageName)) {
|
|
|
|
final ApplicationWithIcon? app = await DeviceApps.getApp(
|
|
|
|
packageName,
|
2022-12-11 13:30:44 +01:00
|
|
|
true,
|
|
|
|
) as ApplicationWithIcon?;
|
2023-09-15 17:58:15 +02:00
|
|
|
if (app != null) {
|
|
|
|
filteredApps.add(app);
|
2022-12-11 13:30:44 +01:00
|
|
|
}
|
|
|
|
}
|
2023-09-15 17:58:15 +02:00
|
|
|
} on Exception catch (e) {
|
|
|
|
if (kDebugMode) {
|
|
|
|
print(e);
|
2022-08-06 15:04:18 +02:00
|
|
|
}
|
2022-08-17 19:44:27 +02:00
|
|
|
}
|
|
|
|
}
|
2022-08-29 18:44:45 +02:00
|
|
|
return filteredApps;
|
2022-08-17 19:44:27 +02:00
|
|
|
}
|
|
|
|
|
2022-12-15 19:05:45 +01:00
|
|
|
List<Patch> getFilteredPatches(String packageName) {
|
2023-09-15 17:58:15 +02:00
|
|
|
if (!_compatiblePackages.contains(packageName)) {
|
|
|
|
return _universalPatches;
|
|
|
|
}
|
|
|
|
|
2023-08-05 15:19:36 +02:00
|
|
|
final List<Patch> patches = _patches
|
|
|
|
.where(
|
|
|
|
(patch) =>
|
2023-10-12 02:00:39 +02:00
|
|
|
patch.compatiblePackages.isEmpty ||
|
|
|
|
!patch.name.contains('settings') &&
|
|
|
|
patch.compatiblePackages
|
|
|
|
.any((pack) => pack.name == packageName),
|
|
|
|
)
|
2023-08-05 15:19:36 +02:00
|
|
|
.toList();
|
|
|
|
if (!_managerAPI.areUniversalPatchesEnabled()) {
|
|
|
|
filteredPatches[packageName] = patches
|
|
|
|
.where((patch) => patch.compatiblePackages.isNotEmpty)
|
2022-12-15 19:05:45 +01:00
|
|
|
.toList();
|
2023-08-05 15:19:36 +02:00
|
|
|
} else {
|
2022-12-15 19:05:45 +01:00
|
|
|
filteredPatches[packageName] = patches;
|
|
|
|
}
|
|
|
|
return filteredPatches[packageName];
|
2022-08-13 11:56:30 +02:00
|
|
|
}
|
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
Future<List<Patch>> getAppliedPatches(List<String> appliedPatches,) async {
|
2022-08-29 18:44:45 +02:00
|
|
|
return _patches
|
|
|
|
.where((patch) => appliedPatches.contains(patch.name))
|
|
|
|
.toList();
|
2022-08-13 11:56:30 +02:00
|
|
|
}
|
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
Future<void> runPatcher(String packageName,
|
|
|
|
String apkFilePath,
|
|
|
|
List<Patch> selectedPatches,) async {
|
2023-04-18 21:51:08 +02:00
|
|
|
final File? integrationsFile = await _managerAPI.downloadIntegrations();
|
2023-10-12 02:00:39 +02:00
|
|
|
final Map<String, Map<String, dynamic>> options = {};
|
|
|
|
for (final patch in selectedPatches) {
|
|
|
|
if (patch.options.isNotEmpty) {
|
|
|
|
final Map<String, dynamic> patchOptions = {};
|
|
|
|
for (final option in patch.options) {
|
|
|
|
final patchOption = _managerAPI.getPatchOption(packageName, patch.name, option.key);
|
|
|
|
if (patchOption != null) {
|
|
|
|
patchOptions[patchOption.key] = patchOption.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
options[patch.name] = patchOptions;
|
|
|
|
}
|
|
|
|
}
|
2023-10-03 18:54:51 +02:00
|
|
|
|
|
|
|
if (integrationsFile != null) {
|
2022-10-09 20:35:43 +02:00
|
|
|
_dataDir.createSync();
|
2022-08-30 03:18:20 +02:00
|
|
|
_tmpDir.createSync();
|
2023-01-30 13:35:06 +01:00
|
|
|
final Directory workDir = _tmpDir.createTempSync('tmp-');
|
|
|
|
final File inputFile = File('${workDir.path}/base.apk');
|
|
|
|
final File patchedFile = File('${workDir.path}/patched.apk');
|
2023-09-30 21:40:03 +02:00
|
|
|
outFile = File('${workDir.path}/out.apk');
|
2023-01-30 13:35:06 +01:00
|
|
|
final Directory cacheDir = Directory('${workDir.path}/cache');
|
2022-08-29 18:44:45 +02:00
|
|
|
cacheDir.createSync();
|
2023-07-30 05:35:34 +02:00
|
|
|
final String originalFilePath = apkFilePath;
|
2023-10-12 02:00:39 +02:00
|
|
|
|
2022-10-14 20:05:33 +02:00
|
|
|
try {
|
|
|
|
await patcherChannel.invokeMethod(
|
|
|
|
'runPatcher',
|
|
|
|
{
|
2023-06-23 00:03:03 +02:00
|
|
|
'originalFilePath': originalFilePath,
|
2022-10-14 20:05:33 +02:00
|
|
|
'inputFilePath': inputFile.path,
|
|
|
|
'patchedFilePath': patchedFile.path,
|
2023-09-30 21:40:03 +02:00
|
|
|
'outFilePath': outFile!.path,
|
2023-10-03 18:54:51 +02:00
|
|
|
'integrationsPath': integrationsFile.path,
|
2023-04-18 21:51:08 +02:00
|
|
|
'selectedPatches': selectedPatches.map((p) => p.name).toList(),
|
2023-10-12 02:00:39 +02:00
|
|
|
'options': options,
|
2022-10-14 20:05:33 +02:00
|
|
|
'cacheDirPath': cacheDir.path,
|
|
|
|
'keyStoreFilePath': _keyStoreFile.path,
|
2023-04-18 11:38:10 +02:00
|
|
|
'keystorePassword': _managerAPI.getKeystorePassword(),
|
2022-10-14 20:05:33 +02:00
|
|
|
},
|
|
|
|
);
|
2023-03-05 10:12:46 +01:00
|
|
|
} on Exception catch (e) {
|
2023-01-30 13:35:06 +01:00
|
|
|
if (kDebugMode) {
|
|
|
|
print(e);
|
|
|
|
}
|
2022-10-14 20:05:33 +02:00
|
|
|
}
|
2022-08-29 18:44:45 +02:00
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> stopPatcher() async {
|
|
|
|
try {
|
|
|
|
await patcherChannel.invokeMethod('stopPatcher');
|
|
|
|
} on Exception catch (e) {
|
|
|
|
if (kDebugMode) {
|
|
|
|
print(e);
|
|
|
|
}
|
2022-08-13 11:56:30 +02:00
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
}
|
2022-08-13 11:56:30 +02:00
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
Future<bool> installPatchedFile(PatchedApplication patchedApp) async {
|
|
|
|
if (outFile != null) {
|
2023-08-03 23:40:08 +02:00
|
|
|
try {
|
2023-10-12 02:00:39 +02:00
|
|
|
if (patchedApp.isRooted) {
|
|
|
|
final bool hasRootPermissions = await _rootAPI.hasRootPermissions();
|
|
|
|
if (hasRootPermissions) {
|
|
|
|
return _rootAPI.installApp(
|
|
|
|
patchedApp.packageName,
|
|
|
|
patchedApp.apkFilePath,
|
|
|
|
outFile!.path,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
final install = await InstallPlugin.installApk(outFile!.path);
|
|
|
|
return install['isSuccess'];
|
|
|
|
}
|
2023-08-03 23:40:08 +02:00
|
|
|
} on Exception catch (e) {
|
|
|
|
if (kDebugMode) {
|
|
|
|
print(e);
|
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
return false;
|
2023-08-03 23:40:08 +02:00
|
|
|
}
|
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
return false;
|
|
|
|
}
|
2023-08-03 23:40:08 +02:00
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
void exportPatchedFile(String appName, String version) {
|
|
|
|
try {
|
2023-09-30 21:40:03 +02:00
|
|
|
if (outFile != null) {
|
2023-10-12 02:00:39 +02:00
|
|
|
final String newName = _getFileName(appName, version);
|
|
|
|
CRFileSaver.saveFileWithDialog(
|
|
|
|
SaveFileDialogParams(
|
|
|
|
sourceFilePath: outFile!.path,
|
|
|
|
destinationFileName: newName,
|
|
|
|
),
|
|
|
|
);
|
2022-08-13 11:56:30 +02:00
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
} on Exception catch (e) {
|
|
|
|
if (kDebugMode) {
|
|
|
|
print(e);
|
2022-11-02 12:52:40 +01:00
|
|
|
}
|
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
}
|
2022-11-02 12:52:40 +01:00
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
void sharePatchedFile(String appName, String version) {
|
|
|
|
try {
|
|
|
|
if (outFile != null) {
|
|
|
|
final String newName = _getFileName(appName, version);
|
|
|
|
final int lastSeparator = outFile!.path.lastIndexOf('/');
|
|
|
|
final String newPath =
|
|
|
|
outFile!.path.substring(0, lastSeparator + 1) + newName;
|
|
|
|
final File shareFile = outFile!.copySync(newPath);
|
|
|
|
ShareExtend.share(shareFile.path, 'file');
|
|
|
|
}
|
|
|
|
} on Exception catch (e) {
|
|
|
|
if (kDebugMode) {
|
|
|
|
print(e);
|
2022-08-13 11:56:30 +02:00
|
|
|
}
|
2022-08-06 15:04:18 +02:00
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
}
|
2022-08-15 04:31:36 +02:00
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
String _getFileName(String appName, String version) {
|
|
|
|
final String prefix = appName.toLowerCase().replaceAll(' ', '-');
|
|
|
|
final String newName = '$prefix-revanced_v$version.apk';
|
|
|
|
return newName;
|
|
|
|
}
|
2022-11-02 12:52:40 +01:00
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
Future<void> exportPatcherLog(String logs) async {
|
|
|
|
final Directory appCache = await getTemporaryDirectory();
|
|
|
|
final Directory logDir = Directory('${appCache.path}/logs');
|
|
|
|
logDir.createSync();
|
|
|
|
final String dateTime = DateTime.now()
|
|
|
|
.toIso8601String()
|
|
|
|
.replaceAll('-', '')
|
|
|
|
.replaceAll(':', '')
|
|
|
|
.replaceAll('T', '')
|
|
|
|
.replaceAll('.', '');
|
|
|
|
final String fileName = 'revanced-manager_patcher_$dateTime.txt';
|
|
|
|
final File log = File('${logDir.path}/$fileName');
|
|
|
|
log.writeAsStringSync(logs);
|
|
|
|
CRFileSaver.saveFileWithDialog(
|
|
|
|
SaveFileDialogParams(
|
|
|
|
sourceFilePath: log.path,
|
|
|
|
destinationFileName: fileName,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
2022-09-18 04:14:48 +02:00
|
|
|
|
2023-10-12 02:00:39 +02:00
|
|
|
String getSuggestedVersion(String packageName) {
|
|
|
|
final Map<String, int> versions = {};
|
|
|
|
for (final Patch patch in _patches) {
|
|
|
|
final Package? package = patch.compatiblePackages.firstWhereOrNull(
|
|
|
|
(pack) => pack.name == packageName,
|
|
|
|
);
|
|
|
|
if (package != null) {
|
|
|
|
for (final String version in package.versions) {
|
|
|
|
versions.update(
|
|
|
|
version,
|
|
|
|
(value) => versions[version]! + 1,
|
|
|
|
ifAbsent: () => 1,
|
|
|
|
);
|
2022-09-18 04:14:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-10-12 02:00:39 +02:00
|
|
|
if (versions.isNotEmpty) {
|
|
|
|
final entries = versions.entries.toList()
|
|
|
|
..sort((a, b) => a.value.compareTo(b.value));
|
|
|
|
versions
|
|
|
|
..clear()
|
|
|
|
..addEntries(entries);
|
|
|
|
versions.removeWhere((key, value) => value != versions.values.last);
|
|
|
|
return (versions.keys.toList()
|
|
|
|
..sort()).last;
|
|
|
|
}
|
|
|
|
return '';
|
|
|
|
}}
|