- remove cronet_http & cupertino_http - use rhttp package as default http client - fix #198 #200 crashes on multiple downloads - fix #162 #102 unable to download with forbidden characters in the name (as it is fixed this can cause reading problems concerning chapters downloaded before this version) - now supports all features on all platforms such as VPNs and HTTP proxies thanks to rhttp package
33 lines
1.2 KiB
Dart
33 lines
1.2 KiB
Dart
import 'package:http_interceptor/http_interceptor.dart';
|
|
import 'package:mangayomi/models/video.dart';
|
|
import 'package:mangayomi/services/http/m_client.dart';
|
|
import 'package:mangayomi/utils/extensions/string_extensions.dart';
|
|
import 'package:mangayomi/utils/xpath_selector.dart';
|
|
|
|
class YourUploadExtractor {
|
|
final InterceptedClient client =
|
|
MClient.init(reqcopyWith: {'useDartHttpClient': true});
|
|
|
|
Future<List<Video>> videosFromUrl(String url, Map<String, String> headers,
|
|
{String name = "YourUpload", String prefix = ""}) async {
|
|
final newHeaders = Map<String, String>.from(headers);
|
|
newHeaders["referer"] = "https://www.yourupload.com/";
|
|
|
|
try {
|
|
final response = await client.get(Uri.parse(url), headers: newHeaders);
|
|
final baseData = xpathSelector(response.body)
|
|
.queryXPath('//script[contains(text(), "jwplayerOptions")]/text()')
|
|
.attrs;
|
|
if (baseData.isNotEmpty) {
|
|
final basicUrl =
|
|
baseData.first!.substringAfter("file: '").substringBefore("',");
|
|
final quality = prefix + name;
|
|
return [Video(basicUrl, quality, basicUrl, headers: newHeaders)];
|
|
} else {
|
|
return [];
|
|
}
|
|
} catch (_) {
|
|
return [];
|
|
}
|
|
}
|
|
}
|