mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
136 lines
4.4 KiB
Dart
136 lines
4.4 KiB
Dart
import 'dart:convert';
|
|
import 'dart:io';
|
|
import 'package:device_apps/device_apps.dart';
|
|
import 'package:github/github.dart';
|
|
import 'package:injectable/injectable.dart';
|
|
import 'package:package_info_plus/package_info_plus.dart';
|
|
import 'package:revanced_manager/constants.dart';
|
|
import 'package:revanced_manager/models/patched_application.dart';
|
|
import 'package:revanced_manager/services/github_api.dart';
|
|
import 'package:revanced_manager/services/root_api.dart';
|
|
import 'package:shared_preferences/shared_preferences.dart';
|
|
|
|
@lazySingleton
|
|
class ManagerAPI {
|
|
final GithubAPI _githubAPI = GithubAPI();
|
|
final RootAPI _rootAPI = RootAPI();
|
|
late SharedPreferences _prefs;
|
|
|
|
Future<void> initialize() async {
|
|
_prefs = await SharedPreferences.getInstance();
|
|
}
|
|
|
|
Future<File?> downloadPatches(String extension) async {
|
|
return await _githubAPI.latestReleaseFile(extension, ghOrg, patchesRepo);
|
|
}
|
|
|
|
Future<File?> downloadIntegrations(String extension) async {
|
|
return await _githubAPI.latestReleaseFile(
|
|
extension,
|
|
ghOrg,
|
|
integrationsRepo,
|
|
);
|
|
}
|
|
|
|
Future<File?> downloadManager(String extension) async {
|
|
return await _githubAPI.latestReleaseFile(extension, ghOrg, managerRepo);
|
|
}
|
|
|
|
Future<String?> getLatestPatchesVersion() async {
|
|
return await _githubAPI.latestReleaseVersion(ghOrg, patchesRepo);
|
|
}
|
|
|
|
Future<String?> getLatestManagerVersion() async {
|
|
return await _githubAPI.latestReleaseVersion(ghOrg, managerRepo);
|
|
}
|
|
|
|
Future<String> getCurrentManagerVersion() async {
|
|
PackageInfo packageInfo = await PackageInfo.fromPlatform();
|
|
return packageInfo.version;
|
|
}
|
|
|
|
bool? isRooted() {
|
|
return _prefs.getBool('isRooted');
|
|
}
|
|
|
|
List<PatchedApplication> getPatchedApps() {
|
|
List<String> apps = _prefs.getStringList('patchedApps') ?? [];
|
|
return apps
|
|
.map((a) => PatchedApplication.fromJson(json.decode(a)))
|
|
.toList();
|
|
}
|
|
|
|
Future<void> setPatchedApps(List<PatchedApplication> patchedApps) async {
|
|
await _prefs.setStringList('patchedApps',
|
|
patchedApps.map((a) => json.encode(a.toJson())).toList());
|
|
}
|
|
|
|
Future<void> savePatchedApp(PatchedApplication app) async {
|
|
List<PatchedApplication> patchedApps = getPatchedApps();
|
|
patchedApps.removeWhere((a) => a.packageName == app.packageName);
|
|
patchedApps.add(app);
|
|
await setPatchedApps(patchedApps);
|
|
}
|
|
|
|
Future<void> reAssessSavedApps() async {
|
|
bool isRoot = isRooted() ?? false;
|
|
List<PatchedApplication> patchedApps = getPatchedApps();
|
|
List<PatchedApplication> toRemove = [];
|
|
for (PatchedApplication app in patchedApps) {
|
|
bool isRemove = await isAppUninstalled(app, isRoot);
|
|
if (isRemove) {
|
|
toRemove.add(app);
|
|
} else {
|
|
app.hasUpdates = await hasAppUpdates(app.packageName, app.patchDate);
|
|
app.changelog = await getAppChangelog(app.packageName, app.patchDate);
|
|
}
|
|
}
|
|
patchedApps.removeWhere((a) => toRemove.contains(a));
|
|
await setPatchedApps(patchedApps);
|
|
}
|
|
|
|
Future<bool> isAppUninstalled(PatchedApplication app, bool isRoot) async {
|
|
bool existsRoot = false;
|
|
if (isRoot) {
|
|
existsRoot = await _rootAPI.isAppInstalled(app.packageName);
|
|
}
|
|
bool existsNonRoot = await DeviceApps.isAppInstalled(app.packageName);
|
|
return !existsRoot && !existsNonRoot;
|
|
}
|
|
|
|
Future<bool> hasAppUpdates(String packageName, DateTime patchDate) async {
|
|
List<RepositoryCommit> commits =
|
|
await _githubAPI.getCommits(packageName, ghOrg, patchesRepo);
|
|
return commits.any((c) =>
|
|
c.commit != null &&
|
|
c.commit!.author != null &&
|
|
c.commit!.author!.date != null &&
|
|
c.commit!.author!.date!.isAfter(patchDate));
|
|
}
|
|
|
|
Future<List<String>> getAppChangelog(
|
|
String packageName,
|
|
DateTime patchDate,
|
|
) async {
|
|
List<RepositoryCommit> commits =
|
|
await _githubAPI.getCommits(packageName, ghOrg, patchesRepo);
|
|
List<String> newCommits = commits
|
|
.where((c) =>
|
|
c.commit != null &&
|
|
c.commit!.author != null &&
|
|
c.commit!.author!.date != null &&
|
|
c.commit!.author!.date!.isAfter(patchDate) &&
|
|
c.commit!.message != null)
|
|
.map((c) => c.commit!.message!)
|
|
.toList();
|
|
if (newCommits.isEmpty) {
|
|
newCommits = commits
|
|
.where((c) => c.commit != null && c.commit!.message != null)
|
|
.take(3)
|
|
.map((c) => c.commit!.message!)
|
|
.toList();
|
|
}
|
|
return newCommits;
|
|
}
|
|
}
|