mirror of
https://github.com/dstark5/Openlib.git
synced 2025-05-21 00:16:30 +08:00
88 lines
3.0 KiB
Dart
88 lines
3.0 KiB
Dart
// Flutter imports:
|
|
import 'package:flutter/material.dart';
|
|
|
|
// Package imports:
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_inappwebview/flutter_inappwebview.dart';
|
|
|
|
class Webview extends ConsumerStatefulWidget {
|
|
const Webview({super.key, required this.url});
|
|
final String url;
|
|
@override
|
|
// ignore: library_private_types_in_public_api
|
|
_WebviewState createState() => _WebviewState();
|
|
}
|
|
|
|
class _WebviewState extends ConsumerState<Webview> {
|
|
final GlobalKey webViewKey = GlobalKey();
|
|
|
|
InAppWebViewController? webViewController;
|
|
|
|
final urlController = TextEditingController();
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
automaticallyImplyLeading: false,
|
|
title: const Text("Solve Captcha"),
|
|
),
|
|
body: SafeArea(
|
|
child: Column(
|
|
children: <Widget>[
|
|
Expanded(
|
|
child: Stack(
|
|
children: [
|
|
InAppWebView(
|
|
key: webViewKey,
|
|
initialUrlRequest: URLRequest(url: WebUri(widget.url)),
|
|
onWebViewCreated: (controller) {
|
|
webViewController = controller;
|
|
},
|
|
onLoadStart: (controller, url) {},
|
|
onLoadStop: (controller, url) async {
|
|
List<String> bookDownloadLinks = [];
|
|
if (url.toString().contains("slow_download")) {
|
|
String query =
|
|
"""var paragraphTag=document.querySelector('p[class="mb-4 text-xl font-bold"]');var anchorTagHref=paragraphTag.querySelector('a').href;var url=()=>{return anchorTagHref};url();""";
|
|
String? mirrorLink = await webViewController
|
|
?.evaluateJavascript(source: query);
|
|
if (mirrorLink != null) {
|
|
bookDownloadLinks.add(mirrorLink);
|
|
}
|
|
} else {
|
|
String query =
|
|
"""var ipfsLinkTags=document.querySelectorAll('ul>li>a');var ipfsLinks=[];var getIpfsLinks=()=>{ipfsLinkTags.forEach(e=>{ipfsLinks.push(e.href)});return ipfsLinks};getIpfsLinks();""";
|
|
List<dynamic> mirrorLinks = await webViewController
|
|
?.evaluateJavascript(source: query);
|
|
bookDownloadLinks = mirrorLinks.cast<String>();
|
|
}
|
|
|
|
if (bookDownloadLinks.isNotEmpty) {
|
|
Future.delayed(const Duration(milliseconds: 70), () {
|
|
// ignore: use_build_context_synchronously
|
|
Navigator.pop(context, bookDownloadLinks);
|
|
});
|
|
}
|
|
},
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|