mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
feat: Add API migration code (#1615)
This commit is contained in:
parent
edd86024b9
commit
28ae2766f0
@ -15,6 +15,7 @@ import 'package:revanced_manager/services/github_api.dart';
|
|||||||
import 'package:revanced_manager/services/patcher_api.dart';
|
import 'package:revanced_manager/services/patcher_api.dart';
|
||||||
import 'package:revanced_manager/services/revanced_api.dart';
|
import 'package:revanced_manager/services/revanced_api.dart';
|
||||||
import 'package:revanced_manager/services/root_api.dart';
|
import 'package:revanced_manager/services/root_api.dart';
|
||||||
|
import 'package:revanced_manager/services/toast.dart';
|
||||||
import 'package:revanced_manager/utils/check_for_supported_patch.dart';
|
import 'package:revanced_manager/utils/check_for_supported_patch.dart';
|
||||||
import 'package:shared_preferences/shared_preferences.dart';
|
import 'package:shared_preferences/shared_preferences.dart';
|
||||||
import 'package:timeago/timeago.dart';
|
import 'package:timeago/timeago.dart';
|
||||||
@ -23,6 +24,7 @@ import 'package:timeago/timeago.dart';
|
|||||||
class ManagerAPI {
|
class ManagerAPI {
|
||||||
final RevancedAPI _revancedAPI = locator<RevancedAPI>();
|
final RevancedAPI _revancedAPI = locator<RevancedAPI>();
|
||||||
final GithubAPI _githubAPI = locator<GithubAPI>();
|
final GithubAPI _githubAPI = locator<GithubAPI>();
|
||||||
|
final Toast _toast = locator<Toast>();
|
||||||
final RootAPI _rootAPI = RootAPI();
|
final RootAPI _rootAPI = RootAPI();
|
||||||
final String patcherRepo = 'revanced-patcher';
|
final String patcherRepo = 'revanced-patcher';
|
||||||
final String cliRepo = 'revanced-cli';
|
final String cliRepo = 'revanced-cli';
|
||||||
@ -65,6 +67,16 @@ class ManagerAPI {
|
|||||||
(await getSdkVersion()) >= 31; // ANDROID_12_SDK_VERSION = 31
|
(await getSdkVersion()) >= 31; // ANDROID_12_SDK_VERSION = 31
|
||||||
storedPatchesFile =
|
storedPatchesFile =
|
||||||
(await getApplicationDocumentsDirectory()).path + storedPatchesFile;
|
(await getApplicationDocumentsDirectory()).path + storedPatchesFile;
|
||||||
|
|
||||||
|
// Migrate to new API URL if not done yet as the old one is sunset.
|
||||||
|
final bool hasMigrated = _prefs.getBool('migratedToNewApiUrl') ?? false;
|
||||||
|
if (!hasMigrated) {
|
||||||
|
final String apiUrl = getApiUrl().toLowerCase();
|
||||||
|
if (apiUrl.contains('releases.revanced.app')) {
|
||||||
|
await setApiUrl(''); // Reset to default.
|
||||||
|
_prefs.setBool('migratedToNewApiUrl', true);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<int> getSdkVersion() async {
|
Future<int> getSdkVersion() async {
|
||||||
@ -82,6 +94,7 @@ class ManagerAPI {
|
|||||||
}
|
}
|
||||||
await _revancedAPI.clearAllCache();
|
await _revancedAPI.clearAllCache();
|
||||||
await _prefs.setString('apiUrl', url);
|
await _prefs.setString('apiUrl', url);
|
||||||
|
_toast.showBottom('settingsView.restartAppForChanges');
|
||||||
}
|
}
|
||||||
|
|
||||||
String getRepoUrl() {
|
String getRepoUrl() {
|
||||||
|
@ -10,7 +10,6 @@ import 'package:stacked/stacked.dart';
|
|||||||
|
|
||||||
class SManageApiUrl extends BaseViewModel {
|
class SManageApiUrl extends BaseViewModel {
|
||||||
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
final ManagerAPI _managerAPI = locator<ManagerAPI>();
|
||||||
final Toast _toast = locator<Toast>();
|
|
||||||
|
|
||||||
final TextEditingController _apiUrlController = TextEditingController();
|
final TextEditingController _apiUrlController = TextEditingController();
|
||||||
|
|
||||||
@ -66,7 +65,6 @@ class SManageApiUrl extends BaseViewModel {
|
|||||||
apiUrl = 'https://$apiUrl';
|
apiUrl = 'https://$apiUrl';
|
||||||
}
|
}
|
||||||
_managerAPI.setApiUrl(apiUrl);
|
_managerAPI.setApiUrl(apiUrl);
|
||||||
_toast.showBottom('settingsView.restartAppForChanges');
|
|
||||||
Navigator.of(context).pop();
|
Navigator.of(context).pop();
|
||||||
},
|
},
|
||||||
child: I18nText('okButton'),
|
child: I18nText('okButton'),
|
||||||
@ -90,7 +88,6 @@ class SManageApiUrl extends BaseViewModel {
|
|||||||
FilledButton(
|
FilledButton(
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
_managerAPI.setApiUrl('');
|
_managerAPI.setApiUrl('');
|
||||||
_toast.showBottom('settingsView.restartAppForChanges');
|
|
||||||
Navigator.of(context)
|
Navigator.of(context)
|
||||||
..pop()
|
..pop()
|
||||||
..pop();
|
..pop();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user