mirror of
				https://github.com/ImranR98/Obtainium.git
				synced 2025-10-30 21:13:28 +01:00 
			
		
		
		
	Compare commits
	
		
			26 Commits
		
	
	
		
			v0.11.31-b
			...
			v0.11.35-b
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
|  | ce44e200a5 | ||
|  | e8ebf53626 | ||
|  | cdd6a4124c | ||
|  | 09c71e4e9f | ||
|  | 28a996441c | ||
|  | 396bf012c9 | ||
|  | 02da24aa75 | ||
|  | 3c6e66ce12 | ||
|  | 0213b542e3 | ||
|  | b0e8a4a297 | ||
|  | e72b33ebf2 | ||
|  | 283722319b | ||
|  | b406bb5c6a | ||
|  | de2b7fa7a1 | ||
|  | be61220af4 | ||
|  | 3e732a4317 | ||
|  | 9f2db4e4e7 | ||
|  | 78141998f4 | ||
|  | 934f237e34 | ||
|  | 1b2a9a39e3 | ||
|  | dc52fb6181 | ||
|  | 9e4ac397d8 | ||
|  | 0ec944eae9 | ||
|  | ad250c30e4 | ||
|  | 1090f15508 | ||
|  | 666941350e | 
| @@ -226,7 +226,7 @@ | |||||||
|     "autoApkFilterByArch": "Nach Möglichkeit versuchen, APKs nach CPU-Architektur zu filtern", |     "autoApkFilterByArch": "Nach Möglichkeit versuchen, APKs nach CPU-Architektur zu filtern", | ||||||
|     "removeAppQuestion": { |     "removeAppQuestion": { | ||||||
|         "one": "App entfernen?", |         "one": "App entfernen?", | ||||||
|         "other": "App entfernen?" |         "other": "Apps entfernen?" | ||||||
|     }, |     }, | ||||||
|     "tooManyRequestsTryAgainInMinutes": { |     "tooManyRequestsTryAgainInMinutes": { | ||||||
|         "one": "Zu viele Anfragen (Rate begrenzt) - versuchen Sie es in {} Minute erneut", |         "one": "Zu viele Anfragen (Rate begrenzt) - versuchen Sie es in {} Minute erneut", | ||||||
|   | |||||||
| @@ -122,7 +122,7 @@ | |||||||
|     "followSystem": "Rendszer szerint", |     "followSystem": "Rendszer szerint", | ||||||
|     "obtainium": "Obtainium", |     "obtainium": "Obtainium", | ||||||
|     "materialYou": "Material You", |     "materialYou": "Material You", | ||||||
|     "useBlackTheme": "Use pure black dark theme", |     "useBlackTheme": "Használjon tiszta fekete sötét témát", | ||||||
|     "appSortBy": "App rendezés...", |     "appSortBy": "App rendezés...", | ||||||
|     "authorName": "Szerző/Név", |     "authorName": "Szerző/Név", | ||||||
|     "nameAuthor": "Név/Szerző", |     "nameAuthor": "Név/Szerző", | ||||||
| @@ -207,7 +207,7 @@ | |||||||
|     "addCategory": "Új kategória", |     "addCategory": "Új kategória", | ||||||
|     "label": "Címke", |     "label": "Címke", | ||||||
|     "language": "Nyelv", |     "language": "Nyelv", | ||||||
|     "copiedToClipboard": "Copied to Clipboard", |     "copiedToClipboard": "Másolva a vágólapra", | ||||||
|     "storagePermissionDenied": "Tárhely engedély megtagadva", |     "storagePermissionDenied": "Tárhely engedély megtagadva", | ||||||
|     "selectedCategorizeWarning": "Ez felváltja a kiválasztott alkalmazások meglévő kategória-beállításait.", |     "selectedCategorizeWarning": "Ez felváltja a kiválasztott alkalmazások meglévő kategória-beállításait.", | ||||||
|     "filterAPKsByRegEx": "Az APK-k szűrése reguláris kifejezéssel", |     "filterAPKsByRegEx": "Az APK-k szűrése reguláris kifejezéssel", | ||||||
|   | |||||||
| @@ -1,6 +1,7 @@ | |||||||
| import 'dart:convert'; | import 'dart:convert'; | ||||||
| import 'package:easy_localization/easy_localization.dart'; | import 'package:easy_localization/easy_localization.dart'; | ||||||
| import 'package:http/http.dart'; | import 'package:http/http.dart'; | ||||||
|  | import 'package:obtainium/app_sources/github.dart'; | ||||||
| import 'package:obtainium/components/generated_form.dart'; | import 'package:obtainium/components/generated_form.dart'; | ||||||
| import 'package:obtainium/custom_errors.dart'; | import 'package:obtainium/custom_errors.dart'; | ||||||
| import 'package:obtainium/providers/source_provider.dart'; | import 'package:obtainium/providers/source_provider.dart'; | ||||||
| @@ -35,6 +36,8 @@ class Codeberg extends AppSource { | |||||||
|     canSearch = true; |     canSearch = true; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |   var gh = GitHub(); | ||||||
|  |  | ||||||
|   @override |   @override | ||||||
|   String standardizeURL(String url) { |   String standardizeURL(String url) { | ||||||
|     RegExp standardUrlRegEx = RegExp('^https?://$host/[^/]+/[^/]+'); |     RegExp standardUrlRegEx = RegExp('^https?://$host/[^/]+/[^/]+'); | ||||||
| @@ -54,80 +57,10 @@ class Codeberg extends AppSource { | |||||||
|     String standardUrl, |     String standardUrl, | ||||||
|     Map<String, dynamic> additionalSettings, |     Map<String, dynamic> additionalSettings, | ||||||
|   ) async { |   ) async { | ||||||
|     bool includePrereleases = additionalSettings['includePrereleases'] == true; |     return gh.getLatestAPKDetailsCommon( | ||||||
|     bool fallbackToOlderReleases = |         'https://$host/api/v1/repos${standardUrl.substring('https://$host'.length)}/releases?per_page=100', | ||||||
|         additionalSettings['fallbackToOlderReleases'] == true; |         standardUrl, | ||||||
|     String? regexFilter = |         additionalSettings); | ||||||
|         (additionalSettings['filterReleaseTitlesByRegEx'] as String?) |  | ||||||
|                     ?.isNotEmpty == |  | ||||||
|                 true |  | ||||||
|             ? additionalSettings['filterReleaseTitlesByRegEx'] |  | ||||||
|             : null; |  | ||||||
|     Response res = await get(Uri.parse( |  | ||||||
|         'https://$host/api/v1/repos${standardUrl.substring('https://$host'.length)}/releases?per_page=100')); |  | ||||||
|     if (res.statusCode == 200) { |  | ||||||
|       var releases = jsonDecode(res.body) as List<dynamic>; |  | ||||||
|  |  | ||||||
|       List<MapEntry<String, String>> getReleaseAPKUrls(dynamic release) => |  | ||||||
|           (release['assets'] as List<dynamic>?) |  | ||||||
|               ?.map((e) { |  | ||||||
|                 return e['name'] != null && e['browser_download_url'] != null |  | ||||||
|                     ? MapEntry(e['name'] as String, |  | ||||||
|                         e['browser_download_url'] as String) |  | ||||||
|                     : const MapEntry('', ''); |  | ||||||
|               }) |  | ||||||
|               .where((element) => element.key.toLowerCase().endsWith('.apk')) |  | ||||||
|               .toList() ?? |  | ||||||
|           []; |  | ||||||
|  |  | ||||||
|       dynamic targetRelease; |  | ||||||
|       var prerrelsSkipped = 0; |  | ||||||
|       for (int i = 0; i < releases.length; i++) { |  | ||||||
|         if (!fallbackToOlderReleases && i > prerrelsSkipped) break; |  | ||||||
|         if (!includePrereleases && releases[i]['prerelease'] == true) { |  | ||||||
|           prerrelsSkipped++; |  | ||||||
|           continue; |  | ||||||
|         } |  | ||||||
|         if (releases[i]['draft'] == true) { |  | ||||||
|           // Draft releases not supported |  | ||||||
|         } |  | ||||||
|         var nameToFilter = releases[i]['name'] as String?; |  | ||||||
|         if (nameToFilter == null || nameToFilter.trim().isEmpty) { |  | ||||||
|           // Some leave titles empty so tag is used |  | ||||||
|           nameToFilter = releases[i]['tag_name'] as String; |  | ||||||
|         } |  | ||||||
|         if (regexFilter != null && |  | ||||||
|             !RegExp(regexFilter).hasMatch(nameToFilter.trim())) { |  | ||||||
|           continue; |  | ||||||
|         } |  | ||||||
|         var apkUrls = getReleaseAPKUrls(releases[i]); |  | ||||||
|         if (apkUrls.isEmpty && additionalSettings['trackOnly'] != true) { |  | ||||||
|           continue; |  | ||||||
|         } |  | ||||||
|         targetRelease = releases[i]; |  | ||||||
|         targetRelease['apkUrls'] = apkUrls; |  | ||||||
|         break; |  | ||||||
|       } |  | ||||||
|       if (targetRelease == null) { |  | ||||||
|         throw NoReleasesError(); |  | ||||||
|       } |  | ||||||
|       String? version = targetRelease['tag_name']; |  | ||||||
|       DateTime? releaseDate = targetRelease['published_at'] != null |  | ||||||
|           ? DateTime.parse(targetRelease['published_at']) |  | ||||||
|           : null; |  | ||||||
|       if (version == null) { |  | ||||||
|         throw NoVersionError(); |  | ||||||
|       } |  | ||||||
|       var changeLog = targetRelease['body'].toString(); |  | ||||||
|       return APKDetails( |  | ||||||
|           version, |  | ||||||
|           targetRelease['apkUrls'] as List<MapEntry<String, String>>, |  | ||||||
|           getAppNames(standardUrl), |  | ||||||
|           releaseDate: releaseDate, |  | ||||||
|           changeLog: changeLog.isEmpty ? null : changeLog); |  | ||||||
|     } else { |  | ||||||
|       throw getObtainiumHttpError(res); |  | ||||||
|     } |  | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   AppNames getAppNames(String standardUrl) { |   AppNames getAppNames(String standardUrl) { | ||||||
| @@ -138,20 +71,9 @@ class Codeberg extends AppSource { | |||||||
|  |  | ||||||
|   @override |   @override | ||||||
|   Future<Map<String, String>> search(String query) async { |   Future<Map<String, String>> search(String query) async { | ||||||
|     Response res = await get(Uri.parse( |     return gh.searchCommon( | ||||||
|         'https://$host/api/v1/repos/search?q=${Uri.encodeQueryComponent(query)}&limit=100')); |         query, | ||||||
|     if (res.statusCode == 200) { |         'https://$host/api/v1/repos/search?q=${Uri.encodeQueryComponent(query)}&limit=100', | ||||||
|       Map<String, String> urlsWithDescriptions = {}; |         'data'); | ||||||
|       for (var e in (jsonDecode(res.body)['data'] as List<dynamic>)) { |  | ||||||
|         urlsWithDescriptions.addAll({ |  | ||||||
|           e['html_url'] as String: e['description'] != null |  | ||||||
|               ? e['description'] as String |  | ||||||
|               : tr('noDescription') |  | ||||||
|         }); |  | ||||||
|       } |  | ||||||
|       return urlsWithDescriptions; |  | ||||||
|     } else { |  | ||||||
|       throw getObtainiumHttpError(res); |  | ||||||
|     } |  | ||||||
|   } |   } | ||||||
| } | } | ||||||
|   | |||||||
| @@ -96,11 +96,9 @@ class GitHub extends AppSource { | |||||||
|   String? changeLogPageFromStandardUrl(String standardUrl) => |   String? changeLogPageFromStandardUrl(String standardUrl) => | ||||||
|       '$standardUrl/releases'; |       '$standardUrl/releases'; | ||||||
|  |  | ||||||
|   @override |   Future<APKDetails> getLatestAPKDetailsCommon(String requestUrl, | ||||||
|   Future<APKDetails> getLatestAPKDetails( |       String standardUrl, Map<String, dynamic> additionalSettings, | ||||||
|     String standardUrl, |       {Function(Response)? onHttpErrorCode}) async { | ||||||
|     Map<String, dynamic> additionalSettings, |  | ||||||
|   ) async { |  | ||||||
|     bool includePrereleases = additionalSettings['includePrereleases'] == true; |     bool includePrereleases = additionalSettings['includePrereleases'] == true; | ||||||
|     bool fallbackToOlderReleases = |     bool fallbackToOlderReleases = | ||||||
|         additionalSettings['fallbackToOlderReleases'] == true; |         additionalSettings['fallbackToOlderReleases'] == true; | ||||||
| @@ -110,22 +108,40 @@ class GitHub extends AppSource { | |||||||
|                 true |                 true | ||||||
|             ? additionalSettings['filterReleaseTitlesByRegEx'] |             ? additionalSettings['filterReleaseTitlesByRegEx'] | ||||||
|             : null; |             : null; | ||||||
|     Response res = await get(Uri.parse( |     Response res = await get(Uri.parse(requestUrl)); | ||||||
|         'https://${await getCredentialPrefixIfAny()}api.$host/repos${standardUrl.substring('https://$host'.length)}/releases?per_page=100')); |  | ||||||
|     if (res.statusCode == 200) { |     if (res.statusCode == 200) { | ||||||
|       var releases = jsonDecode(res.body) as List<dynamic>; |       var releases = jsonDecode(res.body) as List<dynamic>; | ||||||
|  |  | ||||||
|       List<String> getReleaseAPKUrls(dynamic release) => |       List<MapEntry<String, String>> getReleaseAPKUrls(dynamic release) => | ||||||
|           (release['assets'] as List<dynamic>?) |           (release['assets'] as List<dynamic>?) | ||||||
|               ?.map((e) { |               ?.map((e) { | ||||||
|                 return e['browser_download_url'] != null |                 return e['name'] != null && e['browser_download_url'] != null | ||||||
|                     ? e['browser_download_url'] as String |                     ? MapEntry(e['name'] as String, | ||||||
|                     : ''; |                         e['browser_download_url'] as String) | ||||||
|  |                     : const MapEntry('', ''); | ||||||
|               }) |               }) | ||||||
|               .where((element) => element.toLowerCase().endsWith('.apk')) |               .where((element) => element.key.toLowerCase().endsWith('.apk')) | ||||||
|               .toList() ?? |               .toList() ?? | ||||||
|           []; |           []; | ||||||
|  |  | ||||||
|  |       DateTime? getReleaseDateFromRelease(dynamic rel) => | ||||||
|  |           rel?['published_at'] != null | ||||||
|  |               ? DateTime.parse(rel['published_at']) | ||||||
|  |               : null; | ||||||
|  |       releases.sort((a, b) { | ||||||
|  |         // See #478 | ||||||
|  |         if (a == b) { | ||||||
|  |           return 0; | ||||||
|  |         } else if (a == null) { | ||||||
|  |           return -1; | ||||||
|  |         } else if (b == null) { | ||||||
|  |           return 1; | ||||||
|  |         } else { | ||||||
|  |           return getReleaseDateFromRelease(a)! | ||||||
|  |               .compareTo(getReleaseDateFromRelease(b)!); | ||||||
|  |         } | ||||||
|  |       }); | ||||||
|  |       releases = releases.reversed.toList(); | ||||||
|       dynamic targetRelease; |       dynamic targetRelease; | ||||||
|       var prerrelsSkipped = 0; |       var prerrelsSkipped = 0; | ||||||
|       for (int i = 0; i < releases.length; i++) { |       for (int i = 0; i < releases.length; i++) { | ||||||
| @@ -134,6 +150,10 @@ class GitHub extends AppSource { | |||||||
|           prerrelsSkipped++; |           prerrelsSkipped++; | ||||||
|           continue; |           continue; | ||||||
|         } |         } | ||||||
|  |         if (releases[i]['draft'] == true) { | ||||||
|  |           // Draft releases not supported | ||||||
|  |           continue; | ||||||
|  |         } | ||||||
|         var nameToFilter = releases[i]['name'] as String?; |         var nameToFilter = releases[i]['name'] as String?; | ||||||
|         if (nameToFilter == null || nameToFilter.trim().isEmpty) { |         if (nameToFilter == null || nameToFilter.trim().isEmpty) { | ||||||
|           // Some leave titles empty so tag is used |           // Some leave titles empty so tag is used | ||||||
| @@ -155,38 +175,51 @@ class GitHub extends AppSource { | |||||||
|         throw NoReleasesError(); |         throw NoReleasesError(); | ||||||
|       } |       } | ||||||
|       String? version = targetRelease['tag_name']; |       String? version = targetRelease['tag_name']; | ||||||
|       DateTime? releaseDate = targetRelease['published_at'] != null |       DateTime? releaseDate = getReleaseDateFromRelease(targetRelease); | ||||||
|           ? DateTime.parse(targetRelease['published_at']) |  | ||||||
|           : null; |  | ||||||
|       if (version == null) { |       if (version == null) { | ||||||
|         throw NoVersionError(); |         throw NoVersionError(); | ||||||
|       } |       } | ||||||
|       var changeLog = targetRelease['body'].toString(); |       var changeLog = targetRelease['body'].toString(); | ||||||
|       return APKDetails( |       return APKDetails( | ||||||
|           version, |           version, | ||||||
|           getApkUrlsFromUrls(targetRelease['apkUrls'] as List<String>), |           targetRelease['apkUrls'] as List<MapEntry<String, String>>, | ||||||
|           getAppNames(standardUrl), |           getAppNames(standardUrl), | ||||||
|           releaseDate: releaseDate, |           releaseDate: releaseDate, | ||||||
|           changeLog: changeLog.isEmpty ? null : changeLog); |           changeLog: changeLog.isEmpty ? null : changeLog); | ||||||
|     } else { |     } else { | ||||||
|       rateLimitErrorCheck(res); |       if (onHttpErrorCode != null) { | ||||||
|  |         onHttpErrorCode(res); | ||||||
|  |       } | ||||||
|       throw getObtainiumHttpError(res); |       throw getObtainiumHttpError(res); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |   @override | ||||||
|  |   Future<APKDetails> getLatestAPKDetails( | ||||||
|  |     String standardUrl, | ||||||
|  |     Map<String, dynamic> additionalSettings, | ||||||
|  |   ) async { | ||||||
|  |     return getLatestAPKDetailsCommon( | ||||||
|  |         'https://${await getCredentialPrefixIfAny()}api.$host/repos${standardUrl.substring('https://$host'.length)}/releases?per_page=100', | ||||||
|  |         standardUrl, | ||||||
|  |         additionalSettings, onHttpErrorCode: (Response res) { | ||||||
|  |       rateLimitErrorCheck(res); | ||||||
|  |     }); | ||||||
|  |   } | ||||||
|  |  | ||||||
|   AppNames getAppNames(String standardUrl) { |   AppNames getAppNames(String standardUrl) { | ||||||
|     String temp = standardUrl.substring(standardUrl.indexOf('://') + 3); |     String temp = standardUrl.substring(standardUrl.indexOf('://') + 3); | ||||||
|     List<String> names = temp.substring(temp.indexOf('/') + 1).split('/'); |     List<String> names = temp.substring(temp.indexOf('/') + 1).split('/'); | ||||||
|     return AppNames(names[0], names[1]); |     return AppNames(names[0], names[1]); | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   @override |   Future<Map<String, String>> searchCommon( | ||||||
|   Future<Map<String, String>> search(String query) async { |       String query, String requestUrl, String rootProp, | ||||||
|     Response res = await get(Uri.parse( |       {Function(Response)? onHttpErrorCode}) async { | ||||||
|         'https://${await getCredentialPrefixIfAny()}api.$host/search/repositories?q=${Uri.encodeQueryComponent(query)}&per_page=100')); |     Response res = await get(Uri.parse(requestUrl)); | ||||||
|     if (res.statusCode == 200) { |     if (res.statusCode == 200) { | ||||||
|       Map<String, String> urlsWithDescriptions = {}; |       Map<String, String> urlsWithDescriptions = {}; | ||||||
|       for (var e in (jsonDecode(res.body)['items'] as List<dynamic>)) { |       for (var e in (jsonDecode(res.body)[rootProp] as List<dynamic>)) { | ||||||
|         urlsWithDescriptions.addAll({ |         urlsWithDescriptions.addAll({ | ||||||
|           e['html_url'] as String: |           e['html_url'] as String: | ||||||
|               ((e['archived'] == true ? '[ARCHIVED] ' : '') + |               ((e['archived'] == true ? '[ARCHIVED] ' : '') + | ||||||
| @@ -197,11 +230,23 @@ class GitHub extends AppSource { | |||||||
|       } |       } | ||||||
|       return urlsWithDescriptions; |       return urlsWithDescriptions; | ||||||
|     } else { |     } else { | ||||||
|       rateLimitErrorCheck(res); |       if (onHttpErrorCode != null) { | ||||||
|  |         onHttpErrorCode(res); | ||||||
|  |       } | ||||||
|       throw getObtainiumHttpError(res); |       throw getObtainiumHttpError(res); | ||||||
|     } |     } | ||||||
|   } |   } | ||||||
|  |  | ||||||
|  |   @override | ||||||
|  |   Future<Map<String, String>> search(String query) async { | ||||||
|  |     return searchCommon( | ||||||
|  |         query, | ||||||
|  |         'https://${await getCredentialPrefixIfAny()}api.$host/search/repositories?q=${Uri.encodeQueryComponent(query)}&per_page=100', | ||||||
|  |         'items', onHttpErrorCode: (Response res) { | ||||||
|  |       rateLimitErrorCheck(res); | ||||||
|  |     }); | ||||||
|  |   } | ||||||
|  |  | ||||||
|   rateLimitErrorCheck(Response res) { |   rateLimitErrorCheck(Response res) { | ||||||
|     if (res.headers['x-ratelimit-remaining'] == '0') { |     if (res.headers['x-ratelimit-remaining'] == '0') { | ||||||
|       throw RateLimitError( |       throw RateLimitError( | ||||||
|   | |||||||
| @@ -3,10 +3,19 @@ import 'package:http/http.dart'; | |||||||
| import 'package:obtainium/app_sources/github.dart'; | import 'package:obtainium/app_sources/github.dart'; | ||||||
| import 'package:obtainium/custom_errors.dart'; | import 'package:obtainium/custom_errors.dart'; | ||||||
| import 'package:obtainium/providers/source_provider.dart'; | import 'package:obtainium/providers/source_provider.dart'; | ||||||
|  | import 'package:obtainium/components/generated_form.dart'; | ||||||
|  | import 'package:easy_localization/easy_localization.dart'; | ||||||
|  |  | ||||||
| class GitLab extends AppSource { | class GitLab extends AppSource { | ||||||
|   GitLab() { |   GitLab() { | ||||||
|     host = 'gitlab.com'; |     host = 'gitlab.com'; | ||||||
|  |  | ||||||
|  |     additionalSourceAppSpecificSettingFormItems = [ | ||||||
|  |       [ | ||||||
|  |         GeneratedFormSwitch('fallbackToOlderReleases', | ||||||
|  |             label: tr('fallbackToOlderReleases'), defaultValue: true) | ||||||
|  |       ] | ||||||
|  |     ]; | ||||||
|   } |   } | ||||||
|  |  | ||||||
|   @override |   @override | ||||||
| @@ -28,41 +37,58 @@ class GitLab extends AppSource { | |||||||
|     String standardUrl, |     String standardUrl, | ||||||
|     Map<String, dynamic> additionalSettings, |     Map<String, dynamic> additionalSettings, | ||||||
|   ) async { |   ) async { | ||||||
|  |     bool fallbackToOlderReleases = | ||||||
|  |         additionalSettings['fallbackToOlderReleases'] == true; | ||||||
|     Response res = await get(Uri.parse('$standardUrl/-/tags?format=atom')); |     Response res = await get(Uri.parse('$standardUrl/-/tags?format=atom')); | ||||||
|     if (res.statusCode == 200) { |     if (res.statusCode == 200) { | ||||||
|       var standardUri = Uri.parse(standardUrl); |       var standardUri = Uri.parse(standardUrl); | ||||||
|       var parsedHtml = parse(res.body); |       var parsedHtml = parse(res.body); | ||||||
|       var entry = parsedHtml.querySelector('entry'); |       var apkDetailsList = parsedHtml.querySelectorAll('entry').map((entry) { | ||||||
|       var entryContent = |         var entryContent = parse( | ||||||
|           parse(parseFragment(entry?.querySelector('content')!.innerHtml).text); |             parseFragment(entry.querySelector('content')!.innerHtml).text); | ||||||
|       var apkUrls = [ |         var apkUrls = [ | ||||||
|         ...getLinksFromParsedHTML( |           ...getLinksFromParsedHTML( | ||||||
|             entryContent, |               entryContent, | ||||||
|             RegExp( |               RegExp( | ||||||
|                 '^${standardUri.path.replaceAllMapped(RegExp(r'[.*+?^${}()|[\]\\]'), (x) { |                   '^${standardUri.path.replaceAllMapped(RegExp(r'[.*+?^${}()|[\]\\]'), (x) { | ||||||
|                   return '\\${x[0]}'; |                     return '\\${x[0]}'; | ||||||
|                 })}/uploads/[^/]+/[^/]+\\.apk\$', |                   })}/uploads/[^/]+/[^/]+\\.apk\$', | ||||||
|                 caseSensitive: false), |                   caseSensitive: false), | ||||||
|             standardUri.origin), |               standardUri.origin), | ||||||
|         // GitLab releases may contain links to externally hosted APKs |           // GitLab releases may contain links to externally hosted APKs | ||||||
|         ...getLinksFromParsedHTML(entryContent, |           ...getLinksFromParsedHTML(entryContent, | ||||||
|                 RegExp('/[^/]+\\.apk\$', caseSensitive: false), '') |                   RegExp('/[^/]+\\.apk\$', caseSensitive: false), '') | ||||||
|             .where((element) => Uri.parse(element).host != '') |               .where((element) => Uri.parse(element).host != '') | ||||||
|             .toList() |               .toList() | ||||||
|       ]; |         ]; | ||||||
|  |  | ||||||
|       var entryId = entry?.querySelector('id')?.innerHtml; |         var entryId = entry.querySelector('id')?.innerHtml; | ||||||
|       var version = |         var version = | ||||||
|           entryId == null ? null : Uri.parse(entryId).pathSegments.last; |             entryId == null ? null : Uri.parse(entryId).pathSegments.last; | ||||||
|       var releaseDateString = entry?.querySelector('updated')?.innerHtml; |         var releaseDateString = entry.querySelector('updated')?.innerHtml; | ||||||
|       DateTime? releaseDate = |         DateTime? releaseDate = releaseDateString != null | ||||||
|           releaseDateString != null ? DateTime.parse(releaseDateString) : null; |             ? DateTime.parse(releaseDateString) | ||||||
|       if (version == null) { |             : null; | ||||||
|         throw NoVersionError(); |         if (version == null) { | ||||||
|  |           throw NoVersionError(); | ||||||
|  |         } | ||||||
|  |         return APKDetails(version, getApkUrlsFromUrls(apkUrls), | ||||||
|  |             GitHub().getAppNames(standardUrl), | ||||||
|  |             releaseDate: releaseDate); | ||||||
|  |       }); | ||||||
|  |       if (apkDetailsList.isEmpty) { | ||||||
|  |         throw NoReleasesError(); | ||||||
|       } |       } | ||||||
|       return APKDetails(version, getApkUrlsFromUrls(apkUrls), |       if (fallbackToOlderReleases) { | ||||||
|           GitHub().getAppNames(standardUrl), |         if (additionalSettings['trackOnly'] != true) { | ||||||
|           releaseDate: releaseDate); |           apkDetailsList = | ||||||
|  |               apkDetailsList.where((e) => e.apkUrls.isNotEmpty).toList(); | ||||||
|  |         } | ||||||
|  |         if (apkDetailsList.isEmpty) { | ||||||
|  |           throw NoReleasesError(); | ||||||
|  |         } | ||||||
|  |       } | ||||||
|  |       return apkDetailsList.first; | ||||||
|     } else { |     } else { | ||||||
|       throw getObtainiumHttpError(res); |       throw getObtainiumHttpError(res); | ||||||
|     } |     } | ||||||
|   | |||||||
| @@ -41,9 +41,14 @@ class HTML extends AppSource { | |||||||
|         } catch (err) { |         } catch (err) { | ||||||
|           // is relative |           // is relative | ||||||
|         } |         } | ||||||
|         var currPathSegments = uri.path.split('/'); |         var currPathSegments = uri.path | ||||||
|  |             .split('/') | ||||||
|  |             .where((element) => element.trim().isNotEmpty) | ||||||
|  |             .toList(); | ||||||
|         if (e.startsWith('/') || currPathSegments.isEmpty) { |         if (e.startsWith('/') || currPathSegments.isEmpty) { | ||||||
|           return '${uri.origin}/$e'; |           return '${uri.origin}/$e'; | ||||||
|  |         } else if (e.split('/').length == 1) { | ||||||
|  |           return '${uri.origin}/${currPathSegments.join('/')}/$e'; | ||||||
|         } else { |         } else { | ||||||
|           return '${uri.origin}/${currPathSegments.sublist(0, currPathSegments.length - 1).join('/')}/$e'; |           return '${uri.origin}/${currPathSegments.sublist(0, currPathSegments.length - 1).join('/')}/$e'; | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -31,7 +31,8 @@ class SourceForge extends AppSource { | |||||||
|       getVersion(String url) { |       getVersion(String url) { | ||||||
|         try { |         try { | ||||||
|           var tokens = url.split('/'); |           var tokens = url.split('/'); | ||||||
|           return tokens[tokens.length - 3]; |           var fi = tokens.indexOf('files'); | ||||||
|  |           return tokens[tokens[fi + 2] == 'download' ? fi - 1 : fi + 1]; | ||||||
|         } catch (e) { |         } catch (e) { | ||||||
|           return null; |           return null; | ||||||
|         } |         } | ||||||
|   | |||||||
| @@ -21,7 +21,7 @@ import 'package:easy_localization/src/easy_localization_controller.dart'; | |||||||
| // ignore: implementation_imports | // ignore: implementation_imports | ||||||
| import 'package:easy_localization/src/localization.dart'; | import 'package:easy_localization/src/localization.dart'; | ||||||
|  |  | ||||||
| const String currentVersion = '0.11.31'; | const String currentVersion = '0.11.35'; | ||||||
| const String currentReleaseTag = | const String currentReleaseTag = | ||||||
|     'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES |     'v$currentVersion-beta'; // KEEP THIS IN SYNC WITH GITHUB RELEASES | ||||||
|  |  | ||||||
|   | |||||||
| @@ -127,7 +127,8 @@ class _AddAppPageState extends State<AddAppPage> { | |||||||
|             if (apkUrl == null) { |             if (apkUrl == null) { | ||||||
|               throw ObtainiumError(tr('cancelled')); |               throw ObtainiumError(tr('cancelled')); | ||||||
|             } |             } | ||||||
|             app.preferredApkIndex = app.apkUrls.indexOf(apkUrl); |             app.preferredApkIndex = | ||||||
|  |                 app.apkUrls.map((e) => e.value).toList().indexOf(apkUrl.value); | ||||||
|             // ignore: use_build_context_synchronously |             // ignore: use_build_context_synchronously | ||||||
|             var downloadedApk = await appsProvider.downloadApp( |             var downloadedApk = await appsProvider.downloadApp( | ||||||
|                 app, globalNavigatorKey.currentContext); |                 app, globalNavigatorKey.currentContext); | ||||||
|   | |||||||
| @@ -268,9 +268,7 @@ class _AppPageState extends State<AppPage> { | |||||||
|             }).toList(); |             }).toList(); | ||||||
|  |  | ||||||
|             return GeneratedFormModal( |             return GeneratedFormModal( | ||||||
|               title: tr('additionalOptions'), |                 title: tr('additionalOptions'), items: items); | ||||||
|               items: items, |  | ||||||
|             ); |  | ||||||
|           }); |           }); | ||||||
|     } |     } | ||||||
|  |  | ||||||
| @@ -307,6 +305,15 @@ class _AppPageState extends State<AppPage> { | |||||||
|       } |       } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|  |     getResetInstallStatusButton() => TextButton( | ||||||
|  |         onPressed: app?.app == null | ||||||
|  |             ? null | ||||||
|  |             : () { | ||||||
|  |                 app!.app.installedVersion = null; | ||||||
|  |                 appsProvider.saveApps([app.app]); | ||||||
|  |               }, | ||||||
|  |         child: Text(tr('resetInstallStatus'))); | ||||||
|  |  | ||||||
|     getInstallOrUpdateButton() => TextButton( |     getInstallOrUpdateButton() => TextButton( | ||||||
|         onPressed: (app?.app.installedVersion == null || |         onPressed: (app?.app.installedVersion == null || | ||||||
|                     app?.app.installedVersion != app?.app.latestVersion) && |                     app?.app.installedVersion != app?.app.latestVersion) && | ||||||
| @@ -402,7 +409,13 @@ class _AppPageState extends State<AppPage> { | |||||||
|                             icon: const Icon(Icons.more_horiz), |                             icon: const Icon(Icons.more_horiz), | ||||||
|                             tooltip: tr('more')), |                             tooltip: tr('more')), | ||||||
|                       const SizedBox(width: 16.0), |                       const SizedBox(width: 16.0), | ||||||
|                       Expanded(child: getInstallOrUpdateButton()), |                       Expanded( | ||||||
|  |                           child: !isVersionDetectionStandard && | ||||||
|  |                                   app?.app.installedVersion != null && | ||||||
|  |                                   app?.app.installedVersion == | ||||||
|  |                                       app?.app.latestVersion | ||||||
|  |                               ? getResetInstallStatusButton() | ||||||
|  |                               : getInstallOrUpdateButton()), | ||||||
|                       const SizedBox(width: 16.0), |                       const SizedBox(width: 16.0), | ||||||
|                       Expanded( |                       Expanded( | ||||||
|                           child: TextButton( |                           child: TextButton( | ||||||
|   | |||||||
| @@ -224,6 +224,7 @@ class AppsPageState extends State<AppsPage> { | |||||||
|             return GeneratedFormModal( |             return GeneratedFormModal( | ||||||
|               title: tr('changes'), |               title: tr('changes'), | ||||||
|               items: const [], |               items: const [], | ||||||
|  |               message: listedApps[index].app.latestVersion, | ||||||
|               additionalWidgets: [ |               additionalWidgets: [ | ||||||
|                 changesUrl != null |                 changesUrl != null | ||||||
|                     ? GestureDetector( |                     ? GestureDetector( | ||||||
| @@ -363,7 +364,7 @@ class AppsPageState extends State<AppsPage> { | |||||||
|                         child: Image( |                         child: Image( | ||||||
|                           image: const AssetImage( |                           image: const AssetImage( | ||||||
|                               'assets/graphics/icon_small.png'), |                               'assets/graphics/icon_small.png'), | ||||||
|                           color: Colors.white.withOpacity(0.1), |                           color: Colors.white.withOpacity(0.3), | ||||||
|                           colorBlendMode: BlendMode.modulate, |                           colorBlendMode: BlendMode.modulate, | ||||||
|                           gaplessPlayback: true, |                           gaplessPlayback: true, | ||||||
|                         ), |                         ), | ||||||
| @@ -405,7 +406,8 @@ class AppsPageState extends State<AppsPage> { | |||||||
|             children: [ |             children: [ | ||||||
|               Row(mainAxisSize: MainAxisSize.min, children: [ |               Row(mainAxisSize: MainAxisSize.min, children: [ | ||||||
|                 Container( |                 Container( | ||||||
|                     constraints: const BoxConstraints(maxWidth: 150), |                     constraints: BoxConstraints( | ||||||
|  |                         maxWidth: MediaQuery.of(context).size.width / 4), | ||||||
|                     child: Text( |                     child: Text( | ||||||
|                       getVersionText(index), |                       getVersionText(index), | ||||||
|                       overflow: TextOverflow.ellipsis, |                       overflow: TextOverflow.ellipsis, | ||||||
| @@ -754,30 +756,28 @@ class AppsPageState extends State<AppsPage> { | |||||||
|       Navigator.of(context).pop(); |       Navigator.of(context).pop(); | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     resetSelectedAppsInstallStatuses() { |     resetSelectedAppsInstallStatuses() async { | ||||||
|       () async { |       try { | ||||||
|         try { |         var values = await showDialog( | ||||||
|           var values = await showDialog( |             context: context, | ||||||
|               context: context, |             builder: (BuildContext ctx) { | ||||||
|               builder: (BuildContext ctx) { |               return GeneratedFormModal( | ||||||
|                 return GeneratedFormModal( |                 title: tr('resetInstallStatusForSelectedAppsQuestion'), | ||||||
|                   title: tr('resetInstallStatusForSelectedAppsQuestion'), |                 items: const [], | ||||||
|                   items: const [], |                 initValid: true, | ||||||
|                   initValid: true, |                 message: tr('installStatusOfXWillBeResetExplanation', | ||||||
|                   message: tr('installStatusOfXWillBeResetExplanation', |                     args: [plural('app', selectedAppIds.length)]), | ||||||
|                       args: [plural('app', selectedAppIds.length)]), |               ); | ||||||
|                 ); |             }); | ||||||
|               }); |         if (values != null) { | ||||||
|           if (values != null) { |           appsProvider.saveApps(selectedApps.map((e) { | ||||||
|             appsProvider.saveApps(selectedApps.map((e) { |             e.installedVersion = null; | ||||||
|               e.installedVersion = null; |             return e; | ||||||
|               return e; |           }).toList()); | ||||||
|             }).toList()); |  | ||||||
|           } |  | ||||||
|         } finally { |  | ||||||
|           Navigator.of(context).pop(); |  | ||||||
|         } |         } | ||||||
|       }; |       } finally { | ||||||
|  |         Navigator.of(context).pop(); | ||||||
|  |       } | ||||||
|     } |     } | ||||||
|  |  | ||||||
|     showMoreOptionsDialog() { |     showMoreOptionsDialog() { | ||||||
| @@ -825,7 +825,7 @@ class AppsPageState extends State<AppsPage> { | |||||||
|                         icon: const Icon(Icons.share), |                         icon: const Icon(Icons.share), | ||||||
|                       ), |                       ), | ||||||
|                       IconButton( |                       IconButton( | ||||||
|                         onPressed: resetSelectedAppsInstallStatuses(), |                         onPressed: resetSelectedAppsInstallStatuses, | ||||||
|                         tooltip: tr('resetInstallStatus'), |                         tooltip: tr('resetInstallStatus'), | ||||||
|                         icon: const Icon(Icons.restore_page_outlined), |                         icon: const Icon(Icons.restore_page_outlined), | ||||||
|                       ), |                       ), | ||||||
|   | |||||||
| @@ -506,7 +506,7 @@ class _UrlSelectionModalState extends State<UrlSelectionModal> { | |||||||
|           widget.onlyOneSelectionAllowed ? tr('selectURL') : tr('selectURLs')), |           widget.onlyOneSelectionAllowed ? tr('selectURL') : tr('selectURLs')), | ||||||
|       content: Column(children: [ |       content: Column(children: [ | ||||||
|         ...urlWithDescriptionSelections.keys.map((urlWithD) { |         ...urlWithDescriptionSelections.keys.map((urlWithD) { | ||||||
|           select(bool? value) { |           selectThis(bool? value) { | ||||||
|             setState(() { |             setState(() { | ||||||
|               value ??= false; |               value ??= false; | ||||||
|               if (value! && widget.onlyOneSelectionAllowed) { |               if (value! && widget.onlyOneSelectionAllowed) { | ||||||
| @@ -517,11 +517,56 @@ class _UrlSelectionModalState extends State<UrlSelectionModal> { | |||||||
|             }); |             }); | ||||||
|           } |           } | ||||||
|  |  | ||||||
|           return Row(children: [ |           var urlLink = GestureDetector( | ||||||
|  |               onTap: () { | ||||||
|  |                 launchUrlString(urlWithD.key, | ||||||
|  |                     mode: LaunchMode.externalApplication); | ||||||
|  |               }, | ||||||
|  |               child: Text( | ||||||
|  |                 Uri.parse(urlWithD.key).path.substring(1), | ||||||
|  |                 style: const TextStyle(decoration: TextDecoration.underline), | ||||||
|  |                 textAlign: TextAlign.start, | ||||||
|  |               )); | ||||||
|  |  | ||||||
|  |           var descriptionText = Text( | ||||||
|  |             urlWithD.value.length > 128 | ||||||
|  |                 ? '${urlWithD.value.substring(0, 128)}...' | ||||||
|  |                 : urlWithD.value, | ||||||
|  |             style: const TextStyle(fontStyle: FontStyle.italic, fontSize: 12), | ||||||
|  |           ); | ||||||
|  |  | ||||||
|  |           var selectedUrlsWithDs = urlWithDescriptionSelections.entries | ||||||
|  |               .where((e) => e.value) | ||||||
|  |               .toList(); | ||||||
|  |  | ||||||
|  |           var singleSelectTile = ListTile( | ||||||
|  |             title: urlLink, | ||||||
|  |             subtitle: GestureDetector( | ||||||
|  |               onTap: () { | ||||||
|  |                 setState(() { | ||||||
|  |                   selectOnlyOne(urlWithD.key); | ||||||
|  |                 }); | ||||||
|  |               }, | ||||||
|  |               child: descriptionText, | ||||||
|  |             ), | ||||||
|  |             leading: Radio<String>( | ||||||
|  |               value: urlWithD.key, | ||||||
|  |               groupValue: selectedUrlsWithDs.isEmpty | ||||||
|  |                   ? null | ||||||
|  |                   : selectedUrlsWithDs.first.key.key, | ||||||
|  |               onChanged: (value) { | ||||||
|  |                 setState(() { | ||||||
|  |                   selectOnlyOne(urlWithD.key); | ||||||
|  |                 }); | ||||||
|  |               }, | ||||||
|  |             ), | ||||||
|  |           ); | ||||||
|  |  | ||||||
|  |           var multiSelectTile = Row(children: [ | ||||||
|             Checkbox( |             Checkbox( | ||||||
|                 value: urlWithDescriptionSelections[urlWithD], |                 value: urlWithDescriptionSelections[urlWithD], | ||||||
|                 onChanged: (value) { |                 onChanged: (value) { | ||||||
|                   select(value); |                   selectThis(value); | ||||||
|                 }), |                 }), | ||||||
|             const SizedBox( |             const SizedBox( | ||||||
|               width: 8, |               width: 8, | ||||||
| @@ -534,28 +579,13 @@ class _UrlSelectionModalState extends State<UrlSelectionModal> { | |||||||
|                 const SizedBox( |                 const SizedBox( | ||||||
|                   height: 8, |                   height: 8, | ||||||
|                 ), |                 ), | ||||||
|                 GestureDetector( |                 urlLink, | ||||||
|                     onTap: () { |  | ||||||
|                       launchUrlString(urlWithD.key, |  | ||||||
|                           mode: LaunchMode.externalApplication); |  | ||||||
|                     }, |  | ||||||
|                     child: Text( |  | ||||||
|                       Uri.parse(urlWithD.key).path.substring(1), |  | ||||||
|                       style: |  | ||||||
|                           const TextStyle(decoration: TextDecoration.underline), |  | ||||||
|                       textAlign: TextAlign.start, |  | ||||||
|                     )), |  | ||||||
|                 GestureDetector( |                 GestureDetector( | ||||||
|                   onTap: () { |                   onTap: () { | ||||||
|                     select(!(urlWithDescriptionSelections[urlWithD] ?? false)); |                     selectThis( | ||||||
|  |                         !(urlWithDescriptionSelections[urlWithD] ?? false)); | ||||||
|                   }, |                   }, | ||||||
|                   child: Text( |                   child: descriptionText, | ||||||
|                     urlWithD.value.length > 128 |  | ||||||
|                         ? '${urlWithD.value.substring(0, 128)}...' |  | ||||||
|                         : urlWithD.value, |  | ||||||
|                     style: const TextStyle( |  | ||||||
|                         fontStyle: FontStyle.italic, fontSize: 12), |  | ||||||
|                   ), |  | ||||||
|                 ), |                 ), | ||||||
|                 const SizedBox( |                 const SizedBox( | ||||||
|                   height: 8, |                   height: 8, | ||||||
| @@ -563,6 +593,10 @@ class _UrlSelectionModalState extends State<UrlSelectionModal> { | |||||||
|               ], |               ], | ||||||
|             )) |             )) | ||||||
|           ]); |           ]); | ||||||
|  |  | ||||||
|  |           return widget.onlyOneSelectionAllowed | ||||||
|  |               ? singleSelectTile | ||||||
|  |               : multiSelectTile; | ||||||
|         }) |         }) | ||||||
|       ]), |       ]), | ||||||
|       actions: [ |       actions: [ | ||||||
|   | |||||||
| @@ -204,7 +204,8 @@ class AppsProvider with ChangeNotifier { | |||||||
|       // The former case should be handled (give the App its real ID), the latter is a security issue |       // The former case should be handled (give the App its real ID), the latter is a security issue | ||||||
|       var newInfo = await PackageArchiveInfo.fromPath(downloadedFile.path); |       var newInfo = await PackageArchiveInfo.fromPath(downloadedFile.path); | ||||||
|       if (app.id != newInfo.packageName) { |       if (app.id != newInfo.packageName) { | ||||||
|         if (apps[app.id] != null && !SourceProvider().isTempId(app)) { |         var isTempId = SourceProvider().isTempId(app); | ||||||
|  |         if (apps[app.id] != null && !isTempId) { | ||||||
|           throw IDChangedError(); |           throw IDChangedError(); | ||||||
|         } |         } | ||||||
|         var originalAppId = app.id; |         var originalAppId = app.id; | ||||||
| @@ -213,7 +214,7 @@ class AppsProvider with ChangeNotifier { | |||||||
|             '${downloadedFile.parent.path}/${app.id}-${downloadUrl.hashCode}.apk'); |             '${downloadedFile.parent.path}/${app.id}-${downloadUrl.hashCode}.apk'); | ||||||
|         if (apps[originalAppId] != null) { |         if (apps[originalAppId] != null) { | ||||||
|           await removeApps([originalAppId]); |           await removeApps([originalAppId]); | ||||||
|           await saveApps([app]); |           await saveApps([app], onlyIfExists: !isTempId); | ||||||
|         } |         } | ||||||
|       } |       } | ||||||
|       return DownloadedApk(app.id, downloadedFile); |       return DownloadedApk(app.id, downloadedFile); | ||||||
| @@ -304,7 +305,8 @@ class AppsProvider with ChangeNotifier { | |||||||
|   Future<MapEntry<String, String>?> confirmApkUrl( |   Future<MapEntry<String, String>?> confirmApkUrl( | ||||||
|       App app, BuildContext? context) async { |       App app, BuildContext? context) async { | ||||||
|     // If the App has more than one APK, the user should pick one (if context provided) |     // If the App has more than one APK, the user should pick one (if context provided) | ||||||
|     MapEntry<String, String>? apkUrl = app.apkUrls[app.preferredApkIndex]; |     MapEntry<String, String>? apkUrl = | ||||||
|  |         app.apkUrls[app.preferredApkIndex >= 0 ? app.preferredApkIndex : 0]; | ||||||
|     // get device supported architecture |     // get device supported architecture | ||||||
|     List<String> archs = (await DeviceInfoPlugin().androidInfo).supportedAbis; |     List<String> archs = (await DeviceInfoPlugin().androidInfo).supportedAbis; | ||||||
|  |  | ||||||
| @@ -365,8 +367,13 @@ class AppsProvider with ChangeNotifier { | |||||||
|         apkUrl = await confirmApkUrl(apps[id]!.app, context); |         apkUrl = await confirmApkUrl(apps[id]!.app, context); | ||||||
|       } |       } | ||||||
|       if (apkUrl != null) { |       if (apkUrl != null) { | ||||||
|         int urlInd = apps[id]!.app.apkUrls.indexOf(apkUrl); |         int urlInd = apps[id]! | ||||||
|         if (urlInd != apps[id]!.app.preferredApkIndex) { |             .app | ||||||
|  |             .apkUrls | ||||||
|  |             .map((e) => e.value) | ||||||
|  |             .toList() | ||||||
|  |             .indexOf(apkUrl.value); | ||||||
|  |         if (urlInd >= 0 && urlInd != apps[id]!.app.preferredApkIndex) { | ||||||
|           apps[id]!.app.preferredApkIndex = urlInd; |           apps[id]!.app.preferredApkIndex = urlInd; | ||||||
|           await saveApps([apps[id]!.app]); |           await saveApps([apps[id]!.app]); | ||||||
|         } |         } | ||||||
| @@ -907,7 +914,7 @@ class AppsProvider with ChangeNotifier { | |||||||
|  |  | ||||||
|   Future<List<List<String>>> addAppsByURL(List<String> urls) async { |   Future<List<List<String>>> addAppsByURL(List<String> urls) async { | ||||||
|     List<dynamic> results = await SourceProvider().getAppsByURLNaive(urls, |     List<dynamic> results = await SourceProvider().getAppsByURLNaive(urls, | ||||||
|         ignoreUrls: apps.values.map((e) => e.app.url).toList()); |         alreadyAddedUrls: apps.values.map((e) => e.app.url).toList()); | ||||||
|     List<App> pps = results[0]; |     List<App> pps = results[0]; | ||||||
|     Map<String, dynamic> errorsMap = results[1]; |     Map<String, dynamic> errorsMap = results[1]; | ||||||
|     for (var app in pps) { |     for (var app in pps) { | ||||||
|   | |||||||
| @@ -266,10 +266,12 @@ Map<String, dynamic> getDefaultValuesFromFormItems( | |||||||
|       .reduce((value, element) => [...value, ...element])); |       .reduce((value, element) => [...value, ...element])); | ||||||
| } | } | ||||||
|  |  | ||||||
| getApkUrlsFromUrls(List<String> urls) => urls | List<MapEntry<String, String>> getApkUrlsFromUrls(List<String> urls) => | ||||||
|     .map((e) => |     urls.map((e) { | ||||||
|         MapEntry(e.split('/').where((el) => el.trim().isNotEmpty).last, e)) |       var segments = e.split('/').where((el) => el.trim().isNotEmpty); | ||||||
|     .toList(); |       var apkSegs = segments.where((s) => s.toLowerCase().endsWith('.apk')); | ||||||
|  |       return MapEntry(apkSegs.isNotEmpty ? apkSegs.last : segments.last, e); | ||||||
|  |     }).toList(); | ||||||
|  |  | ||||||
| class AppSource { | class AppSource { | ||||||
|   String? host; |   String? host; | ||||||
| @@ -517,11 +519,14 @@ class SourceProvider { | |||||||
|  |  | ||||||
|   // Returns errors in [results, errors] instead of throwing them |   // Returns errors in [results, errors] instead of throwing them | ||||||
|   Future<List<dynamic>> getAppsByURLNaive(List<String> urls, |   Future<List<dynamic>> getAppsByURLNaive(List<String> urls, | ||||||
|       {List<String> ignoreUrls = const []}) async { |       {List<String> alreadyAddedUrls = const []}) async { | ||||||
|     List<App> apps = []; |     List<App> apps = []; | ||||||
|     Map<String, dynamic> errors = {}; |     Map<String, dynamic> errors = {}; | ||||||
|     for (var url in urls.where((element) => !ignoreUrls.contains(element))) { |     for (var url in urls) { | ||||||
|       try { |       try { | ||||||
|  |         if (alreadyAddedUrls.contains(url)) { | ||||||
|  |           throw ObtainiumError(tr('appAlreadyAdded')); | ||||||
|  |         } | ||||||
|         var source = getSource(url); |         var source = getSource(url); | ||||||
|         apps.add(await getApp( |         apps.add(await getApp( | ||||||
|             source, |             source, | ||||||
|   | |||||||
							
								
								
									
										96
									
								
								pubspec.lock
									
									
									
									
									
								
							
							
						
						
									
										96
									
								
								pubspec.lock
									
									
									
									
									
								
							| @@ -5,18 +5,18 @@ packages: | |||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: android_alarm_manager_plus |       name: android_alarm_manager_plus | ||||||
|       sha256: f6d0347734fa2ea716349a5a3e16ffdc1800ca64e5640112896d128c6815c178 |       sha256: "88a8001851fdc9bd54fa4e30d0277bb900a50f3d86ff244da7f027400bf23ac0" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.1.2" |     version: "2.1.4" | ||||||
|   android_intent_plus: |   android_intent_plus: | ||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: android_intent_plus |       name: android_intent_plus | ||||||
|       sha256: "6bcdcd20461ac7a0c785f6298cdda96ad275d5bcbc1ecf28829cbe03ec6690be" |       sha256: "04cbc7c332a6f0bba88fed354de78813e9d24049c1800aaf10f449c7adc22603" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "3.1.7" |     version: "3.1.9" | ||||||
|   animations: |   animations: | ||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
| @@ -117,10 +117,10 @@ packages: | |||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: device_info_plus |       name: device_info_plus | ||||||
|       sha256: "435383ca05f212760b0a70426b5a90354fe6bd65992b3a5e27ab6ede74c02f5c" |       sha256: f52ab3b76b36ede4d135aab80194df8925b553686f0fa12226b4e2d658e45903 | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "8.2.0" |     version: "8.2.2" | ||||||
|   device_info_plus_platform_interface: |   device_info_plus_platform_interface: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -181,10 +181,10 @@ packages: | |||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: file_picker |       name: file_picker | ||||||
|       sha256: dcde5ad1a0cebcf3715ea3f24d0db1888bf77027a26c77d7779e8ef63b8ade62 |       sha256: b85eb92b175767fdaa0c543bf3b0d1f610fe966412ea72845fe5ba7801e763ff | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "5.2.9" |     version: "5.2.10" | ||||||
|   flutter: |   flutter: | ||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: flutter |     description: flutter | ||||||
| @@ -210,26 +210,26 @@ packages: | |||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: flutter_local_notifications |       name: flutter_local_notifications | ||||||
|       sha256: "293995f94e120c8afce768981bd1fa9c5d6de67c547568e3b42ae2defdcbb4a0" |       sha256: "2876372952b65ca7f684e698eba22bda1cf581fa071dd30ba2f01900f507d0d1" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "13.0.0" |     version: "14.0.0+1" | ||||||
|   flutter_local_notifications_linux: |   flutter_local_notifications_linux: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: flutter_local_notifications_linux |       name: flutter_local_notifications_linux | ||||||
|       sha256: ccb08b93703aeedb58856e5637450bf3ffec899adb66dc325630b68994734b89 |       sha256: "909bb95de05a2e793503a2437146285a2f600cd0b3f826e26b870a334d8586d7" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "3.0.0+1" |     version: "4.0.0" | ||||||
|   flutter_local_notifications_platform_interface: |   flutter_local_notifications_platform_interface: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: flutter_local_notifications_platform_interface |       name: flutter_local_notifications_platform_interface | ||||||
|       sha256: "5ec1feac5f7f7d9266759488bc5f76416152baba9aa1b26fe572246caa00d1ab" |       sha256: "63235c42de5b6c99846969a27ad0209c401e6b77b0498939813725b5791c107c" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "6.0.0" |     version: "7.0.0" | ||||||
|   flutter_localizations: |   flutter_localizations: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: flutter |     description: flutter | ||||||
| @@ -247,10 +247,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: flutter_plugin_android_lifecycle |       name: flutter_plugin_android_lifecycle | ||||||
|       sha256: c224ac897bed083dabf11f238dd11a239809b446740be0c2044608c50029ffdf |       sha256: "8ffe990dac54a4a5492747added38571a5ab474c8e5d196809ea08849c69b1bb" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.0.9" |     version: "2.0.13" | ||||||
|   flutter_test: |   flutter_test: | ||||||
|     dependency: "direct dev" |     dependency: "direct dev" | ||||||
|     description: flutter |     description: flutter | ||||||
| @@ -417,10 +417,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: path_provider_android |       name: path_provider_android | ||||||
|       sha256: "019f18c9c10ae370b08dce1f3e3b73bc9f58e7f087bb5e921f06529438ac0ae7" |       sha256: "2cec049d282c7f13c594b4a73976b0b4f2d7a1838a6dd5aaf7bd9719196bee86" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.0.24" |     version: "2.0.27" | ||||||
|   path_provider_foundation: |   path_provider_foundation: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -449,10 +449,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: path_provider_windows |       name: path_provider_windows | ||||||
|       sha256: f53720498d5a543f9607db4b0e997c4b5438884de25b0f73098cc2671a51b130 |       sha256: d3f80b32e83ec208ac95253e0cd4d298e104fbc63cb29c5c69edaed43b0c69d6 | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.1.5" |     version: "2.1.6" | ||||||
|   permission_handler: |   permission_handler: | ||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
| @@ -537,10 +537,10 @@ packages: | |||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: share_plus |       name: share_plus | ||||||
|       sha256: "692261968a494e47323dcc8bc66d8d52e81bc27cb4b808e4e8d7e8079d4cc01a" |       sha256: b1f15232d41e9701ab2f04181f21610c36c83a12ae426b79b4bd011c567934b1 | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "6.3.2" |     version: "6.3.4" | ||||||
|   share_plus_platform_interface: |   share_plus_platform_interface: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -561,10 +561,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: shared_preferences_android |       name: shared_preferences_android | ||||||
|       sha256: "1bc5d734b109c327b922b0891b41fc51483ccbd53c0d19952b7e230349a5d90b" |       sha256: "6478c6bbbecfe9aced34c483171e90d7c078f5883558b30ec3163cf18402c749" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.1.1" |     version: "2.1.4" | ||||||
|   shared_preferences_foundation: |   shared_preferences_foundation: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -622,18 +622,18 @@ packages: | |||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: sqflite |       name: sqflite | ||||||
|       sha256: "500d6fec583d2c021f2d25a056d96654f910662c64f836cd2063167b8f1fa758" |       sha256: "8453780d1f703ead201a39673deb93decf85d543f359f750e2afc4908b55533f" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.2.6" |     version: "2.2.8" | ||||||
|   sqflite_common: |   sqflite_common: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: sqflite_common |       name: sqflite_common | ||||||
|       sha256: "963dad8c4aa2f814ce7d2d5b1da2f36f31bd1a439d8f27e3dc189bb9d26bc684" |       sha256: e77abf6ff961d69dfef41daccbb66b51e9983cdd5cb35bf30733598057401555 | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.4.3" |     version: "2.4.5" | ||||||
|   stack_trace: |   stack_trace: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -662,10 +662,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: synchronized |       name: synchronized | ||||||
|       sha256: "33b31b6beb98100bf9add464a36a8dd03eb10c7a8cf15aeec535e9b054aaf04b" |       sha256: "5fcbd27688af6082f5abd611af56ee575342c30e87541d0245f7ff99faa02c60" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "3.0.1" |     version: "3.1.0" | ||||||
|   term_glyph: |   term_glyph: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -686,10 +686,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: timezone |       name: timezone | ||||||
|       sha256: "24c8fcdd49a805d95777a39064862133ff816ebfffe0ceff110fb5960e557964" |       sha256: "1cfd8ddc2d1cfd836bc93e67b9be88c3adaeca6f40a00ca999104c30693cdca0" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "0.9.1" |     version: "0.9.2" | ||||||
|   typed_data: |   typed_data: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -710,10 +710,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: url_launcher_android |       name: url_launcher_android | ||||||
|       sha256: a52628068d282d01a07cd86e6ba99e497aa45ce8c91159015b2416907d78e411 |       sha256: "22f8db4a72be26e9e3a4aa3f194b1f7afbc76d20ec141f84be1d787db2155cbd" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "6.0.27" |     version: "6.0.31" | ||||||
|   url_launcher_ios: |   url_launcher_ios: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -726,10 +726,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: url_launcher_linux |       name: url_launcher_linux | ||||||
|       sha256: "206fb8334a700ef7754d6a9ed119e7349bc830448098f21a69bf1b4ed038cabc" |       sha256: "207f4ddda99b95b4d4868320a352d374b0b7e05eefad95a4a26f57da413443f5" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "3.0.4" |     version: "3.0.5" | ||||||
|   url_launcher_macos: |   url_launcher_macos: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -758,10 +758,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: url_launcher_windows |       name: url_launcher_windows | ||||||
|       sha256: a83ba3607a507758669cfafb03f9de09bf6e6280c14d9b9cb18f013e406dcacd |       sha256: "254708f17f7c20a9c8c471f67d86d76d4a3f9c1591aad1e15292008aceb82771" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "3.0.5" |     version: "3.0.6" | ||||||
|   uuid: |   uuid: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -782,34 +782,34 @@ packages: | |||||||
|     dependency: "direct main" |     dependency: "direct main" | ||||||
|     description: |     description: | ||||||
|       name: webview_flutter |       name: webview_flutter | ||||||
|       sha256: "47663d51a9061451aa3880a214ee9a65dcbb933b77bc44388e194279ab3ccaf6" |       sha256: "1a37bdbaaf5fbe09ad8579ab09ecfd473284ce482f900b5aea27cf834386a567" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "4.0.7" |     version: "4.2.0" | ||||||
|   webview_flutter_android: |   webview_flutter_android: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: webview_flutter_android |       name: webview_flutter_android | ||||||
|       sha256: bdd3ddbeaf341c75620e153d22b6f4f6c4a342fe4439ed3a10db74dd82e65d1c |       sha256: d6cf18cd6c809c5a9294cd99707a21986aac4e08c87e1916ce2590315fb55d3a | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "3.5.1" |     version: "3.6.2" | ||||||
|   webview_flutter_platform_interface: |   webview_flutter_platform_interface: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: webview_flutter_platform_interface |       name: webview_flutter_platform_interface | ||||||
|       sha256: "6341f92977609be71391f4d4dcd64bfaa8ac657af1dfb2e231b5c1724e8c6c36" |       sha256: "78715dc442b7849dbde74e92bb67de1cecf5addf95531c5fb474e72f5fe9a507" | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "2.2.0" |     version: "2.3.0" | ||||||
|   webview_flutter_wkwebview: |   webview_flutter_wkwebview: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: webview_flutter_wkwebview |       name: webview_flutter_wkwebview | ||||||
|       sha256: "2ef3f65fd49061c18e4d837a411308f2850417f2d0a7c11aad2c3857bee12c18" |       sha256: c94d242d8cbe1012c06ba7ac790c46d6e6b68723b7d34f8c74ed19f68d166f49 | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "3.3.0" |     version: "3.4.0" | ||||||
|   win32: |   win32: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
| @@ -822,10 +822,10 @@ packages: | |||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|       name: xdg_directories |       name: xdg_directories | ||||||
|       sha256: bd512f03919aac5f1313eb8249f223bacf4927031bf60b02601f81f687689e86 |       sha256: ee1505df1426458f7f60aac270645098d318a8b4766d85fde75f76f2e21807d1 | ||||||
|       url: "https://pub.dev" |       url: "https://pub.dev" | ||||||
|     source: hosted |     source: hosted | ||||||
|     version: "0.2.0+3" |     version: "1.0.0" | ||||||
|   xml: |   xml: | ||||||
|     dependency: transitive |     dependency: transitive | ||||||
|     description: |     description: | ||||||
|   | |||||||
| @@ -17,7 +17,7 @@ publish_to: 'none' # Remove this line if you wish to publish to pub.dev | |||||||
| # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | # https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html | ||||||
| # In Windows, build-name is used as the major, minor, and patch parts | # In Windows, build-name is used as the major, minor, and patch parts | ||||||
| # of the product and file versions while build-number is used as the build suffix. | # of the product and file versions while build-number is used as the build suffix. | ||||||
| version: 0.11.31+153 # When changing this, update the tag in main() accordingly | version: 0.11.35+157 # When changing this, update the tag in main() accordingly | ||||||
|  |  | ||||||
| environment: | environment: | ||||||
|   sdk: '>=2.18.2 <3.0.0' |   sdk: '>=2.18.2 <3.0.0' | ||||||
| @@ -38,7 +38,7 @@ dependencies: | |||||||
|   cupertino_icons: ^1.0.5 |   cupertino_icons: ^1.0.5 | ||||||
|   path_provider: ^2.0.11 |   path_provider: ^2.0.11 | ||||||
|   flutter_fgbg: ^0.2.0 # Try removing reliance on this |   flutter_fgbg: ^0.2.0 # Try removing reliance on this | ||||||
|   flutter_local_notifications: ^13.0.0 |   flutter_local_notifications: ^14.0.0+1 | ||||||
|   provider: ^6.0.3 |   provider: ^6.0.3 | ||||||
|   http: ^0.13.5 |   http: ^0.13.5 | ||||||
|   webview_flutter: ^4.0.0 |   webview_flutter: ^4.0.0 | ||||||
| @@ -49,7 +49,7 @@ dependencies: | |||||||
|   permission_handler: ^10.0.0 |   permission_handler: ^10.0.0 | ||||||
|   fluttertoast: ^8.0.9 |   fluttertoast: ^8.0.9 | ||||||
|   device_info_plus: ^8.0.0 |   device_info_plus: ^8.0.0 | ||||||
|   file_picker: ^5.1.0 |   file_picker: ^5.2.10 | ||||||
|   animations: ^2.0.4 |   animations: ^2.0.4 | ||||||
|   install_plugin_v2: ^1.0.0 |   install_plugin_v2: ^1.0.0 | ||||||
|   share_plus: ^6.0.1 |   share_plus: ^6.0.1 | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user