2018-04-19 13:29:05 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Windows.Forms;
|
2018-04-23 00:11:02 +08:00
|
|
|
|
using System.Xml;
|
2018-04-23 16:26:56 +08:00
|
|
|
|
using System.Net;
|
2018-04-29 09:16:01 +08:00
|
|
|
|
using System.Net.Http;
|
|
|
|
|
using System.Net.Http.Headers;
|
2018-04-29 16:10:46 +08:00
|
|
|
|
using System.Net.Security;
|
|
|
|
|
using System.Security.Cryptography.X509Certificates;
|
2018-04-19 13:29:05 +08:00
|
|
|
|
|
|
|
|
|
namespace net.nutcore.aliddns
|
|
|
|
|
{
|
|
|
|
|
public partial class Form_About : Form
|
|
|
|
|
{
|
2018-04-29 16:10:46 +08:00
|
|
|
|
public static bool RemoteCertificateValidationCallback(Object sender,
|
|
|
|
|
X509Certificate certificate,
|
|
|
|
|
X509Chain chain,
|
|
|
|
|
SslPolicyErrors sslPolicyErrors)
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
private static bool CheckValidationResult(object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors errors)
|
|
|
|
|
{
|
|
|
|
|
return true; //总是接受
|
|
|
|
|
}
|
2018-04-19 13:29:05 +08:00
|
|
|
|
public Form_About()
|
|
|
|
|
{
|
2018-04-29 09:16:01 +08:00
|
|
|
|
|
2018-04-19 13:29:05 +08:00
|
|
|
|
InitializeComponent();
|
2018-04-21 16:54:21 +08:00
|
|
|
|
this.MinimizeBox = false; //取消窗口最小化按钮
|
|
|
|
|
this.MaximizeBox = false; //取消窗口最大化按钮
|
2018-04-23 16:26:56 +08:00
|
|
|
|
label_currentVer.Text = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString(); //获取当前版本
|
2018-04-23 00:11:02 +08:00
|
|
|
|
if (mainForm.checkUpdate == true)
|
2018-04-23 16:26:56 +08:00
|
|
|
|
{
|
2018-04-23 00:11:02 +08:00
|
|
|
|
checkBox_autoCheckUpdate.Checked = true;
|
2018-04-23 16:26:56 +08:00
|
|
|
|
//获取远程版本信息
|
2018-04-29 09:16:01 +08:00
|
|
|
|
try
|
|
|
|
|
{
|
2018-04-29 16:10:46 +08:00
|
|
|
|
|
|
|
|
|
string strUrl = "https://api.github.com/wisdomwei201804/AliDDNS/releases/latest"; //从控件获取WAN口IP查询网址,默认值为:"http://whatismyip.akamai.com/";
|
|
|
|
|
Uri uri = new Uri(strUrl);
|
|
|
|
|
if (strUrl.StartsWith("https"))
|
|
|
|
|
System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072;
|
|
|
|
|
WebRequest webreq = WebRequest.Create(uri);
|
|
|
|
|
Stream s = webreq.GetResponse().GetResponseStream();
|
|
|
|
|
StreamReader sr = new StreamReader(s, Encoding.Default);
|
|
|
|
|
string all = sr.ReadToEnd();
|
|
|
|
|
MessageBox.Show(all.ToString());
|
|
|
|
|
}
|
|
|
|
|
/*try
|
|
|
|
|
{
|
|
|
|
|
string strUrl = "https://github.com/wisdomwei201804/AliDDNS/releases/latest";
|
|
|
|
|
if(strUrl.StartsWith("https"))
|
|
|
|
|
System.Net.ServicePointManager.SecurityProtocol = (SecurityProtocolType)3072; // SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls1.2 | SecurityProtocolType.Tls12;
|
|
|
|
|
HttpClient httpClient = new HttpClient();
|
|
|
|
|
HttpContent httpContent = new StringContent("Authorization: token 7e5aaa4649a6bdb9d5459abd221ef15ec484da79");
|
2018-04-29 09:16:01 +08:00
|
|
|
|
httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/json");
|
|
|
|
|
httpContent.Headers.ContentType.CharSet = "utf-8";
|
2018-04-29 16:10:46 +08:00
|
|
|
|
//httpContent.Headers.ContentType = new MediaTypeHeaderValue("application/x-www-form-urlencoded");
|
|
|
|
|
|
|
|
|
|
//httpContent.Headers.Add("token", "7e5aaa4649a6bdb9d5459abd221ef15ec484da79");
|
2018-04-29 09:16:01 +08:00
|
|
|
|
// httpContent.Headers.Add("appId", appId);
|
|
|
|
|
//httpContent.Headers.Add("serviceURL", serviceURL);
|
2018-04-29 16:10:46 +08:00
|
|
|
|
|
|
|
|
|
//ServicePointManager.ServerCertificateValidationCallback = new RemoteCertificateValidationCallback(CheckValidationResult);
|
2018-04-29 09:16:01 +08:00
|
|
|
|
//httpClient..setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET, "utf-8");
|
2018-04-29 16:10:46 +08:00
|
|
|
|
HttpResponseMessage response = httpClient.PostAsync(strUrl, httpContent).Result;
|
2018-04-29 09:16:01 +08:00
|
|
|
|
//statusCode = response.StatusCode.ToString();
|
2018-04-29 16:10:46 +08:00
|
|
|
|
// if (response.IsSuccessStatusCode)
|
|
|
|
|
//{
|
2018-04-29 09:16:01 +08:00
|
|
|
|
string result = response.Content.ReadAsStringAsync().Result;
|
2018-04-29 16:10:46 +08:00
|
|
|
|
MessageBox.Show(result.ToString());
|
2018-04-29 09:16:01 +08:00
|
|
|
|
// return result;
|
2018-04-29 16:10:46 +08:00
|
|
|
|
//}
|
|
|
|
|
}*/
|
2018-04-29 09:16:01 +08:00
|
|
|
|
catch( Exception error)
|
|
|
|
|
{
|
|
|
|
|
MessageBox.Show(error.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-23 16:26:56 +08:00
|
|
|
|
}
|
2018-04-23 00:11:02 +08:00
|
|
|
|
else checkBox_autoCheckUpdate.Checked = false;
|
2018-04-19 13:29:05 +08:00
|
|
|
|
textBox_updateInfo.ReadOnly = true;
|
|
|
|
|
string filePath = System.AppDomain.CurrentDomain.BaseDirectory;
|
|
|
|
|
string updateInfoFile = filePath + "updateinfo.txt";
|
|
|
|
|
if (File.Exists(updateInfoFile))
|
|
|
|
|
textBox_updateInfo.Text = File.ReadAllText(updateInfoFile, Encoding.Default);
|
|
|
|
|
else
|
|
|
|
|
textBox_updateInfo.Text = "软件运行目录下没有找到updateinfo.txt文件!";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void PublishLink_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("explorer.exe", "https://github.com/wisdomwei201804/AliDDNS/");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void personalWebsite_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("explorer.exe", "http://www.nutcore.net/");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
System.Diagnostics.Process.Start("explorer.exe", "https://bbs.aliyun.com/read/289624.html");
|
|
|
|
|
}
|
2018-04-23 00:11:02 +08:00
|
|
|
|
|
|
|
|
|
private void checkBox_autoCheckUpdate_CheckedChanged(object sender, EventArgs e)
|
|
|
|
|
{
|
|
|
|
|
string ExePath = System.AppDomain.CurrentDomain.BaseDirectory;
|
|
|
|
|
string config_file = ExePath + "aliddns_config.xml";
|
|
|
|
|
if(File.Exists(config_file))
|
|
|
|
|
{
|
|
|
|
|
XmlDocument xmlDOC = new XmlDocument();
|
|
|
|
|
xmlDOC.Load(config_file);
|
|
|
|
|
if (xmlDOC.GetElementsByTagName("autoCheckUpdate")[0] == null)
|
|
|
|
|
{
|
|
|
|
|
XmlNode node = xmlDOC.CreateNode(XmlNodeType.Element, "autoCheckUpdate",null);
|
|
|
|
|
if (checkBox_autoCheckUpdate.Checked == true)
|
|
|
|
|
node.InnerText = "On";
|
|
|
|
|
else
|
|
|
|
|
node.InnerText = "Off";
|
|
|
|
|
xmlDOC.DocumentElement.AppendChild(node);
|
|
|
|
|
xmlDOC.Save(config_file);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
XmlNode node = xmlDOC.GetElementsByTagName("autoCheckUpdate")[0];
|
|
|
|
|
if (checkBox_autoCheckUpdate.Checked == true)
|
|
|
|
|
node.InnerText = "On";
|
|
|
|
|
else
|
|
|
|
|
node.InnerText = "Off";
|
|
|
|
|
xmlDOC.DocumentElement.AppendChild(node);
|
|
|
|
|
xmlDOC.Save(config_file);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/*
|
|
|
|
|
ExeConfigurationFileMap map = new ExeConfigurationFileMap();
|
|
|
|
|
map.ExeConfigFilename = config_file;
|
|
|
|
|
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(map, ConfigurationUserLevel.None);
|
|
|
|
|
if(checkBox_autoCheckUpdate.Checked == true)
|
|
|
|
|
{
|
|
|
|
|
if (config.AppSettings.Settings["autoCheckUpdate"] == null)
|
|
|
|
|
{
|
|
|
|
|
config.AppSettings.Settings.Add("autoCheckUpdate", "On");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
config.AppSettings.Settings["autoCheckUpdate"].Value = "On";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (config.AppSettings.Settings["autoCheckUpdate"] == null)
|
|
|
|
|
{
|
|
|
|
|
config.AppSettings.Settings.Add("autoCheckUpdate", "Off");
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
config.AppSettings.Settings["autoCheckUpdate"].Value = "Off";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
config.Save();
|
|
|
|
|
*/
|
|
|
|
|
}
|
2018-04-19 13:29:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|