mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-04-06 08:35:06 +08:00
159 lines
4.1 KiB
Dart
159 lines
4.1 KiB
Dart
import 'dart:async';
|
|
import 'dart:convert';
|
|
import 'dart:io';
|
|
|
|
import 'package:network_proxy/network/util/host_filter.dart';
|
|
|
|
import '../channel.dart';
|
|
import '../handler.dart';
|
|
import '../http/codec.dart';
|
|
import '../util/logger.dart';
|
|
import '../util/request_rewrite.dart';
|
|
import '../util/system_proxy.dart';
|
|
|
|
Future<void> main() async {
|
|
ProxyServer().start();
|
|
}
|
|
|
|
/// 代理服务器
|
|
class ProxyServer {
|
|
bool init = false;
|
|
int port = 8888;
|
|
bool _enableSsl = false;
|
|
|
|
Server? server;
|
|
EventListener? listener;
|
|
RequestRewrites requestRewrites = RequestRewrites();
|
|
|
|
ProxyServer({this.listener});
|
|
|
|
bool get enableSsl => _enableSsl;
|
|
|
|
File homeDir() {
|
|
var userHome = Platform.environment['HOME'] ?? Platform.environment['USERPROFILE'];
|
|
var separator = Platform.pathSeparator;
|
|
return File("${userHome!}$separator.proxypin");
|
|
}
|
|
|
|
/// 配置文件
|
|
File configFile() {
|
|
var separator = Platform.pathSeparator;
|
|
return File("${homeDir().path}${separator}config.cnf");
|
|
}
|
|
|
|
/// 是否启用ssl
|
|
set enableSsl(bool enableSsl) {
|
|
_enableSsl = enableSsl;
|
|
server?.enableSsl = enableSsl;
|
|
if (server == null || server?.isRunning == false) {
|
|
return;
|
|
}
|
|
|
|
if (Platform.isMacOS) {
|
|
SystemProxy.setSslProxyEnableMacOS(enableSsl, port);
|
|
}
|
|
}
|
|
|
|
/// 启动代理服务
|
|
Future<Server> start() async {
|
|
Server server = Server();
|
|
if (!init) {
|
|
// 读取配置文件
|
|
init = true;
|
|
await _loadConfig();
|
|
}
|
|
|
|
server.enableSsl = _enableSsl;
|
|
server.initChannel((channel) {
|
|
channel.pipeline.handle(HttpRequestCodec(), HttpResponseCodec(),
|
|
HttpChannelHandler(listener: listener, requestRewrites: requestRewrites));
|
|
});
|
|
return server.bind(port).then((serverSocket) {
|
|
logger.i("listen on $port");
|
|
SystemProxy.setSystemProxy(port, enableSsl);
|
|
this.server = server;
|
|
return server;
|
|
});
|
|
}
|
|
|
|
/// 停止代理服务
|
|
Future<Server?> stop() async {
|
|
logger.i("stop on $port");
|
|
if (Platform.isMacOS) {
|
|
await SystemProxy.setProxyEnableMacOS(false, enableSsl);
|
|
} else if (Platform.isWindows) {
|
|
await SystemProxy.setProxyEnableWindows(false);
|
|
}
|
|
await server?.stop();
|
|
return server;
|
|
}
|
|
|
|
/// 重启代理服务
|
|
restart() {
|
|
stop().then((value) => start());
|
|
}
|
|
|
|
/// 刷新配置文件
|
|
flushConfig() async {
|
|
var file = configFile();
|
|
await file.create(recursive: true);
|
|
HostFilter.whitelist.toJson();
|
|
HostFilter.blacklist.toJson();
|
|
var json = jsonEncode(toJson());
|
|
logger.i('刷新配置文件 $runtimeType ${toJson()}');
|
|
file.writeAsString(json);
|
|
}
|
|
|
|
/// 加载配置文件
|
|
Future<void> _loadConfig() async {
|
|
var file = configFile();
|
|
var exits = await file.exists();
|
|
if (!exits) {
|
|
return;
|
|
}
|
|
Map<String, dynamic> config = jsonDecode(await file.readAsString());
|
|
logger.i('加载配置文件 [$file] $config');
|
|
enableSsl = config['enableSsl'] == true;
|
|
port = config['port'] ?? port;
|
|
HostFilter.whitelist.load(config['whitelist']);
|
|
HostFilter.blacklist.load(config['blacklist']);
|
|
|
|
await _loadRequestRewriteConfig();
|
|
}
|
|
|
|
/// 加载请求重写配置文件
|
|
Future<void> _loadRequestRewriteConfig() async {
|
|
var file = File('${homeDir().path}${Platform.pathSeparator}request_rewrite.json');
|
|
var exits = await file.exists();
|
|
if (!exits) {
|
|
return;
|
|
}
|
|
|
|
Map<String, dynamic> config = jsonDecode(await file.readAsString());
|
|
|
|
logger.i('加载请求重写配置文件 [$file] $config');
|
|
requestRewrites.load(config);
|
|
}
|
|
|
|
/// 保存请求重写配置文件
|
|
flushRequestRewriteConfig() async {
|
|
var file = File('${homeDir().path}${Platform.pathSeparator}request_rewrite.json');
|
|
bool exists = await file.exists();
|
|
if (!exists) {
|
|
await file.create(recursive: true);
|
|
}
|
|
var json = jsonEncode(requestRewrites.toJson());
|
|
logger.i('刷新请求重写配置文件 ${file.path}');
|
|
file.writeAsString(json);
|
|
}
|
|
|
|
Map<String, dynamic> toJson() {
|
|
return {
|
|
'port': port,
|
|
'enableSsl': enableSsl,
|
|
'whitelist': HostFilter.whitelist.toJson(),
|
|
'blacklist': HostFilter.blacklist.toJson(),
|
|
};
|
|
}
|
|
}
|