mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-13 13:26:43 +02:00
43 lines
1.3 KiB
Dart
43 lines
1.3 KiB
Dart
import 'package:easy_localization/easy_localization.dart';
|
|
import 'package:html/parser.dart';
|
|
import 'package:http/http.dart';
|
|
import 'package:obtainium/custom_errors.dart';
|
|
import 'package:obtainium/providers/source_provider.dart';
|
|
|
|
class TelegramApp extends AppSource {
|
|
TelegramApp() {
|
|
hosts = ['telegram.org'];
|
|
name = 'Telegram ${tr('app')}';
|
|
}
|
|
|
|
@override
|
|
String sourceSpecificStandardizeURL(String url, {bool forSelection = false}) {
|
|
return 'https://${hosts[0]}';
|
|
}
|
|
|
|
@override
|
|
Future<APKDetails> getLatestAPKDetails(
|
|
String standardUrl,
|
|
Map<String, dynamic> additionalSettings,
|
|
) async {
|
|
Response res =
|
|
await sourceRequest('https://t.me/s/TAndroidAPK', additionalSettings);
|
|
if (res.statusCode == 200) {
|
|
var http = parse(res.body);
|
|
var messages =
|
|
http.querySelectorAll('.tgme_widget_message_text.js-message_text');
|
|
var version = messages.isNotEmpty
|
|
? messages.last.innerHtml.split('\n').first.trim().split(' ').first
|
|
: null;
|
|
if (version == null) {
|
|
throw NoVersionError();
|
|
}
|
|
String? apkUrl = 'https://telegram.org/dl/android/apk';
|
|
return APKDetails(version, getApkUrlsFromUrls([apkUrl]),
|
|
AppNames('Telegram', 'Telegram'));
|
|
} else {
|
|
throw getObtainiumHttpError(res);
|
|
}
|
|
}
|
|
}
|