diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs index 628b721..267237c 100644 --- a/ProxySU/MainWindow.xaml.cs +++ b/ProxySU/MainWindow.xaml.cs @@ -525,7 +525,22 @@ namespace ProxySU client.RunCommand("sed -i 's/##mkcpHeaderType##/" + ReceiveConfigurationParameters[5] + "/' " + upLoadPath); client.RunCommand("systemctl restart v2ray"); - //如果是WebSocket + TLS + Web模式,需要安装Caddy + //打开防火墙端口 + string openFireWallPort = ReceiveConfigurationParameters[1]; + if (String.Equals(openFireWallPort, "443")) + { + client.RunCommand("firewall-cmd --zone=public --add-port=80/tcp --permanent"); + client.RunCommand("firewall-cmd --zone=public --add-port=443/tcp --permanent"); + client.RunCommand("firewall-cmd --reload"); + } + else + { + client.RunCommand($"firewall-cmd --zone=public --add-port={openFireWallPort}/tcp --permanent"); + client.RunCommand($"firewall-cmd --zone=public --add-port={openFireWallPort}/udp --permanent"); + client.RunCommand("firewall-cmd --reload"); + } + + //如果是WebSocket + TLS + Web模式,需要安装Caddy if (appConfig.Contains("WebSocketTLSWeb")==true) { currentStatus = "使用WebSocket + TLS + Web模式,正在安装Caddy......"; @@ -563,20 +578,7 @@ namespace ProxySU sshCmd = "caddy -service install -agree -conf /etc/caddy/Caddyfile -email " + email; //MessageBox.Show(sshCmd); client.RunCommand(sshCmd); - //打开防火墙端口 - string openFireWallPort = ReceiveConfigurationParameters[1]; - if (String.Equals(openFireWallPort, "443")) - { - client.RunCommand("firewall-cmd --zone=public --add-port=80/tcp --permanent"); - client.RunCommand("firewall-cmd --zone=public --add-port=443/tcp --permanent"); - client.RunCommand("firewall-cmd --reload"); - } - else - { - client.RunCommand($"firewall-cmd --zone=public --add-port={openFireWallPort}/tcp --permanent"); - client.RunCommand($"firewall-cmd --zone=public --add-port={openFireWallPort}/udp --permanent"); - client.RunCommand("firewall-cmd --reload"); - } + //启动Caddy服务 client.RunCommand("caddy -service start"); diff --git a/ProxySU/ResultClientInformation.xaml.cs b/ProxySU/ResultClientInformation.xaml.cs index a7363d2..999451e 100644 --- a/ProxySU/ResultClientInformation.xaml.cs +++ b/ProxySU/ResultClientInformation.xaml.cs @@ -182,6 +182,12 @@ namespace ProxySU //MessageBox.Show(v2rayNjsonObject["v"].ToString()); saveFileFolder = v2rayNjsonObject["ps"].ToString(); + int num = 1; + while(Directory.Exists(@"config\" + saveFileFolder)) + { + saveFileFolder = saveFileFolder + "_copy_" + num.ToString(); + num++; + } CheckDir(@"config\" + saveFileFolder); //MessageBox.Show(v2rayNjsonObject.ToString()); string vmessUrl = "vmess://" + ToBase64Encode(v2rayNjsonObject.ToString()); @@ -249,11 +255,11 @@ namespace ProxySU //ImageShareQRcode.Source = @"config\v2rayN.bmp"; } //判断目录是否存在,不存在则创建 - public static bool CheckDir(string folder) + private static bool CheckDir(string folder) { try { - if (!Directory.Exists(folder))//如果不存在就创建file文件夹      + if (!Directory.Exists(folder))//如果不存在就创建file文件夹 Directory.CreateDirectory(folder);//创建该文件夹   return true; } @@ -265,7 +271,7 @@ namespace ProxySU private void Button_Click(object sender, RoutedEventArgs e) { - string openFolderPath = @"config"; + string openFolderPath = @"config\" + saveFileFolder; System.Diagnostics.Process.Start("explorer.exe", openFolderPath); this.Close(); } diff --git a/ProxySU/bin/Release/ProxySU.exe b/ProxySU/bin/Release/ProxySU.exe index 8a7b5aa..e5e52d8 100644 Binary files a/ProxySU/bin/Release/ProxySU.exe and b/ProxySU/bin/Release/ProxySU.exe differ diff --git a/ProxySU/bin/Release/Release.zip b/ProxySU/bin/Release/Release.zip index 8000aa7..7abc39c 100644 Binary files a/ProxySU/bin/Release/Release.zip and b/ProxySU/bin/Release/Release.zip differ