mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-05-20 16:15:47 +08:00
301 lines
11 KiB
Dart
301 lines
11 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:easy_permission/easy_permission.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_barcode_scanner/flutter_barcode_scanner.dart';
|
|
import 'package:flutter_toastr/flutter_toastr.dart';
|
|
import 'package:network_proxy/native/vpn.dart';
|
|
import 'package:network_proxy/network/bin/server.dart';
|
|
import 'package:network_proxy/network/http_client.dart';
|
|
import 'package:network_proxy/network/components/host_filter.dart';
|
|
import 'package:network_proxy/network/components/request_rewrite_manager.dart';
|
|
import 'package:network_proxy/ui/component/toolbox.dart';
|
|
import 'package:network_proxy/ui/mobile/connect_remote.dart';
|
|
import 'package:network_proxy/ui/mobile/request/favorite.dart';
|
|
import 'package:network_proxy/ui/mobile/request/history.dart';
|
|
import 'package:network_proxy/ui/mobile/request/list.dart';
|
|
import 'package:network_proxy/ui/mobile/setting/app_whitelist.dart';
|
|
import 'package:network_proxy/ui/mobile/setting/filter.dart';
|
|
import 'package:network_proxy/ui/mobile/setting/proxy.dart';
|
|
import 'package:network_proxy/ui/mobile/setting/request_rewrite.dart';
|
|
import 'package:network_proxy/ui/mobile/setting/script.dart';
|
|
import 'package:network_proxy/ui/mobile/setting/ssl.dart';
|
|
import 'package:network_proxy/ui/mobile/setting/theme.dart';
|
|
import 'package:network_proxy/utils/ip.dart';
|
|
import 'package:qr_flutter/qr_flutter.dart';
|
|
import 'package:qrscan/qrscan.dart' as scanner;
|
|
import 'package:url_launcher/url_launcher.dart';
|
|
|
|
///左侧抽屉
|
|
class DrawerWidget extends StatelessWidget {
|
|
final ProxyServer proxyServer;
|
|
final GlobalKey<RequestListState> requestStateKey;
|
|
|
|
const DrawerWidget({super.key, required this.proxyServer, required this.requestStateKey});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Drawer(
|
|
child: ListView(
|
|
padding: EdgeInsets.zero,
|
|
children: [
|
|
DrawerHeader(
|
|
decoration: BoxDecoration(color: Theme.of(context).colorScheme.primaryContainer),
|
|
child: const Text(''),
|
|
),
|
|
ListTile(
|
|
leading: const Icon(Icons.favorite),
|
|
title: const Text("收藏"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(context, MobileFavorites(proxyServer: proxyServer))),
|
|
ListTile(
|
|
leading: const Icon(Icons.history),
|
|
title: const Text("历史"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(context, MobileHistory(proxyServer: proxyServer, requestStateKey: requestStateKey)),
|
|
),
|
|
const Divider(thickness: 0.3),
|
|
ListTile(
|
|
title: const Text("代理"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(context, ProxySetting(proxyServer: proxyServer))),
|
|
ListTile(
|
|
title: const Text("HTTPS抓包"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(context, MobileSslWidget(proxyServer: proxyServer))),
|
|
const MobileThemeSetting(),
|
|
Platform.isIOS
|
|
? const SizedBox()
|
|
: ListTile(
|
|
title: const Text("应用白名单"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(context, AppWhitelist(proxyServer: proxyServer))),
|
|
ListTile(
|
|
title: const Text("域名白名单"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(
|
|
context, MobileFilterWidget(configuration: proxyServer.configuration, hostList: HostFilter.whitelist))),
|
|
ListTile(
|
|
title: const Text("域名黑名单"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(
|
|
context, MobileFilterWidget(configuration: proxyServer.configuration, hostList: HostFilter.blacklist))),
|
|
ListTile(
|
|
title: const Text("请求重写"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () async =>
|
|
navigator(context, MobileRequestRewrite(requestRewrites: (await RequestRewrites.instance)))),
|
|
ListTile(
|
|
title: const Text("脚本"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(context, const MobileScript())),
|
|
ListTile(
|
|
title: const Text("关于"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () => navigator(context, const About())),
|
|
],
|
|
));
|
|
}
|
|
|
|
///跳转页面
|
|
navigator(BuildContext context, Widget widget) {
|
|
Navigator.of(context).push(
|
|
MaterialPageRoute(builder: (BuildContext context) {
|
|
return widget;
|
|
}),
|
|
);
|
|
}
|
|
}
|
|
|
|
/// +号菜单
|
|
class MoreEnum extends StatelessWidget {
|
|
final ProxyServer proxyServer;
|
|
final ValueNotifier<RemoteModel> desktop;
|
|
|
|
const MoreEnum({super.key, required this.proxyServer, required this.desktop});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return PopupMenuButton(
|
|
tooltip: "扫码连接",
|
|
offset: const Offset(0, 30),
|
|
child: const SizedBox(height: 38, width: 38, child: Icon(Icons.add_circle_outline, size: 26)),
|
|
itemBuilder: (BuildContext context) {
|
|
return <PopupMenuItem>[
|
|
PopupMenuItem(
|
|
child: ListTile(
|
|
dense: true,
|
|
title: const Text("HTTPS抓包"),
|
|
leading: Icon(Icons.https, color: proxyServer.enableSsl ? null : Colors.red),
|
|
onTap: () {
|
|
Navigator.of(context).push(
|
|
MaterialPageRoute(builder: (BuildContext context) {
|
|
return MobileSslWidget(proxyServer: proxyServer);
|
|
}),
|
|
);
|
|
})),
|
|
PopupMenuItem(
|
|
child: ListTile(
|
|
dense: true,
|
|
leading: const Icon(Icons.qr_code_scanner_outlined),
|
|
title: const Text("连接终端"),
|
|
onTap: () {
|
|
connectRemote(context);
|
|
},
|
|
)),
|
|
PopupMenuItem(
|
|
child: ListTile(
|
|
dense: true,
|
|
leading: const Icon(Icons.phone_iphone),
|
|
title: const Text("我的二维码"),
|
|
onTap: () async {
|
|
var ip = await localIp();
|
|
if (context.mounted) {
|
|
connectQrCode(context, ip, proxyServer.port);
|
|
}
|
|
},
|
|
)),
|
|
PopupMenuItem(
|
|
child: ListTile(
|
|
dense: true,
|
|
leading: const Icon(Icons.construction),
|
|
title: const Text("工具箱"),
|
|
onTap: () => Navigator.of(context).push(
|
|
MaterialPageRoute(builder: (BuildContext context) {
|
|
return Scaffold(
|
|
appBar:
|
|
AppBar(title: const Text("工具箱", style: TextStyle(fontSize: 16)), centerTitle: true),
|
|
body: Toolbox(proxyServer: proxyServer));
|
|
}),
|
|
))),
|
|
];
|
|
},
|
|
);
|
|
}
|
|
|
|
///扫码连接
|
|
connectRemote(BuildContext context) async {
|
|
String scanRes;
|
|
if (Platform.isAndroid) {
|
|
await EasyPermission.requestPermissions([PermissionType.CAMERA]);
|
|
scanRes = await scanner.scan() ?? "-1";
|
|
} else {
|
|
scanRes = await FlutterBarcodeScanner.scanBarcode("#ff6666", "取消", true, ScanMode.QR);
|
|
}
|
|
if (scanRes == "-1") return;
|
|
if (scanRes.startsWith("http")) {
|
|
launchUrl(Uri.parse(scanRes), mode: LaunchMode.externalApplication);
|
|
return;
|
|
}
|
|
|
|
if (scanRes.startsWith("proxypin://connect")) {
|
|
Uri uri = Uri.parse(scanRes);
|
|
var host = uri.queryParameters['host'];
|
|
var port = uri.queryParameters['port'];
|
|
|
|
try {
|
|
var response = await HttpClients.get("http://$host:$port/ping").timeout(const Duration(seconds: 1));
|
|
if (response.bodyAsString == "pong") {
|
|
desktop.value = RemoteModel(
|
|
connect: true,
|
|
host: host,
|
|
port: int.parse(port!),
|
|
os: response.headers.get("os"),
|
|
hostname: response.headers.get("hostname"));
|
|
|
|
if (context.mounted && Navigator.canPop(context)) {
|
|
FlutterToastr.show("连接成功${Vpn.isVpnStarted ? '' : ',手机需要开启抓包才可以抓取请求哦'}", context, duration: 3);
|
|
Navigator.pop(context);
|
|
}
|
|
}
|
|
} catch (e) {
|
|
print(e);
|
|
if (context.mounted) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (BuildContext context) {
|
|
return const AlertDialog(content: Text("连接失败,请检查是否在同一局域网"));
|
|
});
|
|
}
|
|
}
|
|
return;
|
|
}
|
|
if (context.mounted) {
|
|
FlutterToastr.show("无法识别的二维码", context);
|
|
}
|
|
}
|
|
|
|
///连接二维码
|
|
connectQrCode(BuildContext context, String host, int port) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (context) {
|
|
return AlertDialog(
|
|
contentPadding: const EdgeInsets.only(top: 5),
|
|
actionsPadding: const EdgeInsets.only(bottom: 5),
|
|
title: const Text("远程连接,将请求转发到其他终端", style: TextStyle(fontSize: 16)),
|
|
content: SizedBox(
|
|
height: 240,
|
|
width: 300,
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
QrImageView(
|
|
backgroundColor: Colors.white,
|
|
data: "proxypin://connect?host=$host&port=${proxyServer.port}",
|
|
version: QrVersions.auto,
|
|
size: 200.0,
|
|
),
|
|
const SizedBox(height: 20),
|
|
const Text("请使用手机扫描二维码"),
|
|
],
|
|
)),
|
|
actions: [
|
|
TextButton(
|
|
onPressed: () {
|
|
Navigator.of(context).pop();
|
|
},
|
|
child: const Text("取消")),
|
|
],
|
|
);
|
|
});
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 关于
|
|
*/
|
|
class About extends StatelessWidget {
|
|
const About({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(title: const Text("关于", style: TextStyle(fontSize: 16)), centerTitle: true),
|
|
body: Column(
|
|
children: [
|
|
const SizedBox(height: 10),
|
|
const Text("ProxyPin", style: TextStyle(fontSize: 20)),
|
|
const SizedBox(height: 20),
|
|
const Text("全平台开源免费抓包软件"),
|
|
const SizedBox(height: 10),
|
|
const Text("V1.0.5"),
|
|
ListTile(
|
|
title: const Text("Github"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () {
|
|
launchUrl(Uri.parse("https://github.com/wanghongenpin/network_proxy_flutter"),
|
|
mode: LaunchMode.externalApplication);
|
|
}),
|
|
ListTile(
|
|
title: const Text("下载地址"),
|
|
trailing: const Icon(Icons.arrow_right),
|
|
onTap: () {
|
|
launchUrl(Uri.parse("https://gitee.com/wanghongenpin/network-proxy-flutter/releases"),
|
|
mode: LaunchMode.externalApplication);
|
|
})
|
|
],
|
|
));
|
|
}
|
|
}
|