diff --git a/ProxySU/MainWindow.xaml b/ProxySU/MainWindow.xaml
index b63db44..ac8aa4c 100644
--- a/ProxySU/MainWindow.xaml
+++ b/ProxySU/MainWindow.xaml
@@ -7,122 +7,149 @@
mc:Ignorable="d"
Title="ProxySU" Height="550" Width="600">
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ProxySU/MainWindow.xaml.cs b/ProxySU/MainWindow.xaml.cs
index 267237c..c1deecf 100644
--- a/ProxySU/MainWindow.xaml.cs
+++ b/ProxySU/MainWindow.xaml.cs
@@ -36,6 +36,7 @@ namespace ProxySU
//ReceiveConfigurationParameters[3]----path
//ReceiveConfigurationParameters[4]----domain
//ReceiveConfigurationParameters[5]----mKCP伪装类型
+ //public static ConnectionInfo ConnectionInfo;
public MainWindow()
{
InitializeComponent();
@@ -46,18 +47,17 @@ namespace ProxySU
ReceiveConfigurationParameters = new string[6];
}
- //开始布署安装
-
- private void Button_Login_Click(object sender, RoutedEventArgs e)
-
+ //远程主机连接信息
+ private ConnectionInfo GenerateConnectionInfo()
{
+ ConnectionInfo connectionInfo;
//ProgressBarSetUpProcessing.IsIndeterminate = true;
#region 检测输入的内空是否有错,并读取内容
if (string.IsNullOrEmpty(TextBoxHost.Text) == true || string.IsNullOrEmpty(TextBoxPort.Text) == true || string.IsNullOrEmpty(TextBoxUserName.Text) == true)
{
MessageBox.Show("主机地址、主机端口、用户名为必填项,不能为空");
//exitProgram.Kill();
- return;
+ return connectionInfo = null;
}
string sshHostName = TextBoxHost.Text.ToString();
int sshPort = int.Parse(TextBoxPort.Text);
@@ -65,27 +65,27 @@ namespace ProxySU
if (RadioButtonPasswordLogin.IsChecked == true && string.IsNullOrEmpty(PasswordBoxHostPassword.Password) == true)
{
MessageBox.Show("登录密码为必填项,不能为空");
- return;
+ return connectionInfo = null;
}
string sshPassword = PasswordBoxHostPassword.Password.ToString();
if (RadioButtonCertLogin.IsChecked == true && string.IsNullOrEmpty(TextBoxCertFilePath.Text) == true)
{
MessageBox.Show("密钥文件为必填项,不能为空");
- return;
+ return connectionInfo = null;
}
string sshPrivateKey = TextBoxCertFilePath.Text.ToString();
ProxyTypes proxyTypes = new ProxyTypes();//默认为None
//MessageBox.Show(proxyTypes.ToString());
//proxyTypes = ProxyTypes.Socks5;
- if (RadioButtonHttp.IsChecked==true)
+ if (RadioButtonHttp.IsChecked == true)
{
proxyTypes = ProxyTypes.Http;
}
- else if (RadioButtonSocks4.IsChecked==true)
+ else if (RadioButtonSocks4.IsChecked == true)
{
proxyTypes = ProxyTypes.Socks4;
}
- else if (RadioButtonSocks5.IsChecked==true)
+ else if (RadioButtonSocks5.IsChecked == true)
{
proxyTypes = ProxyTypes.Socks5;
}
@@ -95,17 +95,17 @@ namespace ProxySU
}
//MessageBox.Show(proxyTypes.ToString());
- if (RadioButtonNoProxy.IsChecked==false&&(string.IsNullOrEmpty(TextBoxProxyHost.Text)==true||string.IsNullOrEmpty(TextBoxProxyPort.Text)==true))
+ if (RadioButtonNoProxy.IsChecked == false && (string.IsNullOrEmpty(TextBoxProxyHost.Text) == true || string.IsNullOrEmpty(TextBoxProxyPort.Text) == true))
{
MessageBox.Show("如果选择了代理,则代理地址与端口不能为空");
- return;
+ return connectionInfo = null;
}
string sshProxyHost = TextBoxProxyHost.Text.ToString();
int sshProxyPort = int.Parse(TextBoxProxyPort.Text.ToString());
if (RadiobuttonProxyYesLogin.IsChecked == true && (string.IsNullOrEmpty(TextBoxProxyUserName.Text) == true || string.IsNullOrEmpty(PasswordBoxProxyPassword.Password) == true))
{
MessageBox.Show("如果代理需要登录,则代理登录的用户名与密码不能为空");
- return;
+ return connectionInfo = null;
}
string sshProxyUser = TextBoxProxyUserName.Text.ToString();
string sshProxyPassword = PasswordBoxProxyPassword.Password.ToString();
@@ -115,7 +115,7 @@ namespace ProxySU
//var connectionInfo = new PasswordConnectionInfo(sshHostName, sshPort, sshUser, sshPassword);
- var connectionInfo = new ConnectionInfo(
+ connectionInfo = new ConnectionInfo(
sshHostName,
sshPort,
sshUser,
@@ -144,7 +144,19 @@ namespace ProxySU
);
}
+ return connectionInfo;
+ }
+ //开始布署安装
+ private void Button_Login_Click(object sender, RoutedEventArgs e)
+
+ {
+ ConnectionInfo connectionInfo = GenerateConnectionInfo();
+ if(connectionInfo==null)
+ {
+ MessageBox.Show("远程主机连接信息有误,请检查");
+ return;
+ }
//using (var client = new SshClient(sshHostName, sshPort, sshUser, sshPassword))
//Action startSetUpAction = new Action(StartSetUpRemoteHost);
//string appConfig = TextBoxJsonPath.Text.ToString().Replace("\\","\\\\");
@@ -443,6 +455,28 @@ namespace ProxySU
Thread.Sleep(1000);
return;
}
+
+ //校对时间
+ currentStatus = "校对时间......";
+ textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ Thread.Sleep(1000);
+ //获取远程主机的时间戳
+ long timeStampVPS = Convert.ToInt64(client.RunCommand("date +%s").Result.ToString());
+ //MessageBox.Show(timesStampVPS.ToString());
+ //获取本地时间戳
+ TimeSpan ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0);
+ long timeStampLocal = Convert.ToInt64(ts.TotalSeconds);
+ if (Math.Abs(timeStampLocal - timeStampVPS) >= 90)
+ {
+
+ MessageBox.Show("本地时间与远程主机时间相差超过限制(90秒),请先用\"系统工具-->时间校对\"校对时间后再设置");
+ currentStatus = "时间较对失败......";
+ textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ Thread.Sleep(1000);
+ return;
+ }
+ //MessageBox.Show(timesStamp2.ToString());
+
//如果使用如果是WebSocket + TLS + Web模式,需要检测域名解析是否正确
if (appConfig.Contains("WebSocketTLSWeb") == true)
{
@@ -583,6 +617,9 @@ namespace ProxySU
//启动Caddy服务
client.RunCommand("caddy -service start");
}
+
+
+
//生成客户端配置
currentStatus = "生成客户端配置......";
textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
@@ -851,10 +888,13 @@ namespace ProxySU
var connectionInfo = new PasswordConnectionInfo(sshHostName, sshPort, sshUser, sshPassword);
using (var client = new SshClient(connectionInfo))
{
- //client.Connect();
-
-
- //client.Disconnect();
+ client.Connect();
+ //MessageBox.Show(client.RunCommand("date +%s").Result.ToString());
+ long timesStamp1 = Convert.ToInt64(client.RunCommand("date +%s").Result.ToString());
+ MessageBox.Show(timesStamp1.ToString());
+ long timesStamp2 = timesStamp1 - 300;
+ MessageBox.Show(timesStamp2.ToString());
+ client.Disconnect();
return;
}
}
@@ -938,6 +978,31 @@ namespace ProxySU
}
}
}
+
+ private void Button_Click_5(object sender, RoutedEventArgs e)
+ {
+ TimeSpan ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0);
+ long timeStamp = Convert.ToInt64(ts.TotalSeconds);
+ MessageBox.Show(timeStamp.ToString());
+
+ //DateTime dateNow = DateTime.Now;
+ //MessageBox.Show(TimeZoneInfo.ConvertTimeToUtc(dateNow).ToString());
+ //Console.WriteLine("The date and time are {0} UTC.",
+ // TimeZoneInfo.ConvertTimeToUtc(dateNow));
+ }
+
+ private void ButtonProofreadTime_Click(object sender, RoutedEventArgs e)
+ {
+ ConnectionInfo connectionInfo = GenerateConnectionInfo();
+ if (connectionInfo == null)
+ {
+ MessageBox.Show("远程主机连接信息有误,请检查");
+ return;
+ }
+ ProofreadTimeWindow proofreadTimeWindow = new ProofreadTimeWindow();
+ ProofreadTimeWindow.ProfreadTimeReceiveConnectionInfo = connectionInfo;
+ proofreadTimeWindow.ShowDialog();
+ }
}
}
diff --git a/ProxySU/ProofreadTimeWindow.xaml b/ProxySU/ProofreadTimeWindow.xaml
new file mode 100644
index 0000000..3a8b44b
--- /dev/null
+++ b/ProxySU/ProofreadTimeWindow.xaml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ProxySU/ProofreadTimeWindow.xaml.cs b/ProxySU/ProofreadTimeWindow.xaml.cs
new file mode 100644
index 0000000..cb24480
--- /dev/null
+++ b/ProxySU/ProofreadTimeWindow.xaml.cs
@@ -0,0 +1,71 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Windows;
+using System.Windows.Controls;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Input;
+using System.Windows.Media;
+using System.Windows.Media.Imaging;
+using System.Windows.Shapes;
+using System.Text.RegularExpressions;
+using System.Threading;
+using System.Threading.Tasks;
+using System.IO;
+using Renci.SshNet;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Linq;
+using Newtonsoft.Json.Serialization;
+using System.Drawing;
+using QRCoder;
+
+namespace ProxySU
+{
+ ///
+ /// ProofreadTimeWindow.xaml 的交互逻辑
+ ///
+ public partial class ProofreadTimeWindow : Window
+ {
+ public static ConnectionInfo ProfreadTimeReceiveConnectionInfo { get; set; }
+ //ProfreadTimeReceiveParameters
+ public ProofreadTimeWindow()
+ {
+ InitializeComponent();
+
+ }
+
+ private void ButtonTestTime_Click(object sender, RoutedEventArgs e)
+ {
+ using (var client = new SshClient(ProfreadTimeReceiveConnectionInfo))
+ {
+ client.Connect();
+ long timeStampVPS = Convert.ToInt64(client.RunCommand("date +%s").Result.ToString());
+ //MessageBox.Show(timesStampVPS.ToString());
+ //获取本地时间戳
+ TimeSpan ts = DateTime.Now - new DateTime(1970, 1, 1, 0, 0, 0, 0);
+ long timeStampLocal = Convert.ToInt64(ts.TotalSeconds);
+ client.Disconnect();
+ if (Math.Abs(timeStampLocal - timeStampVPS) >= 90)
+ {
+
+ MessageBox.Show("本地时间与远程主机时间相差超过限制(90秒),请先用\"系统工具-->时间校对\"校对时间后再设置");
+ //currentStatus = "时间较对失败......";
+ //textBlockName.Dispatcher.BeginInvoke(updateAction, textBlockName, progressBar, currentStatus);
+ //Thread.Sleep(1000);
+ return;
+ }
+ else
+ {
+ MessageBox.Show("误差为:"+Math.Abs(timeStampLocal - timeStampVPS).ToString());
+ }
+ }
+ }
+
+
+ //MainWindow.ConnectionInfo
+ //using (var client = new SshClient(MainWindow.ConnectionInfo))
+
+ }
+}
diff --git a/ProxySU/ProxySU.csproj b/ProxySU/ProxySU.csproj
index cecb565..097a7f9 100644
--- a/ProxySU/ProxySU.csproj
+++ b/ProxySU/ProxySU.csproj
@@ -81,6 +81,9 @@
MSBuild:Compile
Designer
+
+ ProofreadTimeWindow.xaml
+
ResultClientInformation.xaml
@@ -99,6 +102,10 @@
MainWindow.xaml
Code
+
+ Designer
+ MSBuild:Compile
+
Designer
MSBuild:Compile
diff --git a/ProxySU/bin/Release/Release.zip b/ProxySU/bin/Release/Release.zip
deleted file mode 100644
index 0c9fe76..0000000
Binary files a/ProxySU/bin/Release/Release.zip and /dev/null differ