v3.8.3.5 1、增加ngrok类。2、增加yml类。3、增加ngrok设置窗口。4、增加JSON类。5、修改主窗体加载时判断是否更新IP。6、代码调试中...

This commit is contained in:
wisdomwei201804 2018-06-20 22:37:30 +08:00
parent 6a6f62ba2c
commit 38ec164b6d
6 changed files with 71 additions and 28 deletions

View File

@ -136,6 +136,10 @@ namespace net.nutcore.aliddns
try //获取WAN口IP
{
localIP.Text = getLocalIP();
if ((localIP.Text != domainIP.Text) && (checkBox_autoBoot.Checked = true))
{
updatePrepare();
}
}
catch (Exception error)
{

View File

@ -58,6 +58,10 @@
<Reference Include="aliyun-net-sdk-core">
<HintPath>aliyun-net-sdk-core.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System" />
@ -77,6 +81,10 @@
<Reference Include="UIAutomationProvider" />
<Reference Include="WindowsBase" />
<Reference Include="WindowsFormsIntegration" />
<Reference Include="YamlDotNet, Version=0.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\YamlDotNet.4.3.2\lib\net45\YamlDotNet.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Form_About.cs">
@ -91,11 +99,11 @@
<Compile Include="Form_ngrok.Designer.cs">
<DependentUpon>Form_ngrok.cs</DependentUpon>
</Compile>
<Compile Include="main.cs">
<Compile Include="Form_main.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="main.Designer.cs">
<DependentUpon>main.cs</DependentUpon>
<Compile Include="Form_main.Designer.cs">
<DependentUpon>Form_main.cs</DependentUpon>
</Compile>
<Compile Include="ngrok.cs" />
<Compile Include="Program.cs" />
@ -107,8 +115,8 @@
<EmbeddedResource Include="Form_ngrok.resx">
<DependentUpon>Form_ngrok.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="main.resx">
<DependentUpon>main.cs</DependentUpon>
<EmbeddedResource Include="Form_main.resx">
<DependentUpon>Form_main.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
@ -120,6 +128,7 @@
<DependentUpon>Resources.resx</DependentUpon>
<DesignTime>True</DesignTime>
</Compile>
<None Include="packages.config" />
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
@ -157,7 +166,9 @@
<Install>false</Install>
</BootstrapperPackage>
</ItemGroup>
<ItemGroup />
<ItemGroup>
<WCFMetadata Include="Service References\" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PreBuildEvent>copy "$(SolutionDir)net.nutcore.aliddns\updateinfo.txt" "$(TargetDir)"</PreBuildEvent>

View File

@ -1,14 +1,18 @@
using System;
using Newtonsoft.Json;
using System;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Threading.Tasks;
using System.Windows.Forms;
using YamlDotNet.Serialization;
namespace net.nutcore.aliddns
{
class ngrok
internal class Ngrok
{
private static readonly string NgrokExecutable = "ngrok.exe";
private static readonly string NgrokYaml = "ngrok.yaml";
private static readonly string NgrokYaml = "ngrok.cfg";
public static readonly string CurrentDirectory = Path.GetDirectoryName(Application.ExecutablePath);
public static readonly string FileNgrokExecutable = Path.Combine(CurrentDirectory, NgrokExecutable);
public static readonly string FileConfig = Path.Combine(CurrentDirectory, NgrokYaml);
@ -17,6 +21,7 @@ namespace net.nutcore.aliddns
public class Config
{
public string authtoken { get; set; }
public string server_addr { get; set; }
public string region { get; set; }
public bool console_ui { get; set; }
public string log_level { get; set; }
@ -24,23 +29,30 @@ namespace net.nutcore.aliddns
public string log { get; set; }
public string web_addr { get; set; }
public bool run_website { get; set; }
public bool run_ssh { get; set; }
public bool run_tcp { get; set; }
public Tunnel tunnels { get; set; }
}
public class Tunnel
{
public Protocol website { get; set; }
public Protocol ssh { get; set; }
public Protocol tcp { get; set; }
}
public class Protocol
{
public int addr { get; set; }
public string proto { get; set; }
public string subdomain { get; set; }
public int remote_port { get; set; }
public Proto proto { get; set; }
public string auth { get; set; }
}
public class Proto
{
public int http { get; set; }
public int tcp { get; set; }
}
public class Response
{
public JsonTunnel[] tunnels { get; set; }
@ -53,13 +65,14 @@ namespace net.nutcore.aliddns
public string proto { get; set; }
}
public void Ngrok()
public Ngrok()
{
if (!File.Exists(FileConfig))
{
var config = new Config
{
authtoken = string.Empty,
server_addr = string.Empty,
console_ui = true,
region = "us",
log_level = "info",
@ -67,18 +80,25 @@ namespace net.nutcore.aliddns
log = "ngrok.log",
web_addr = LocalHost,
run_website = true,
run_ssh = false,
run_tcp = true,
tunnels = new Tunnel
{
website = new Protocol
{
addr = 80,
proto = "http"
subdomain = "www",
proto = new Proto
{
http = 80
}
},
ssh = new Protocol
tcp = new Protocol
{
addr = 22,
proto = "tcp"
remote_port = 2222,
proto = new Proto
{
tcp = 22
}
}
}
};
@ -120,14 +140,17 @@ namespace net.nutcore.aliddns
return config;
}
public void Save(string token, int http, int tcp, bool website, bool ssh)
public void Save(string token, string server_addr, int http, string subdomain, int tcp, int lanport, bool run_website, bool run_tcp)
{
var config = Load();
config.authtoken = token;
config.tunnels.website.addr = http;
config.tunnels.ssh.addr = tcp;
config.run_website = website;
config.run_ssh = ssh;
config.server_addr = server_addr;
config.tunnels.website.proto.http = http;
config.tunnels.website.subdomain = subdomain;
config.tunnels.tcp.remote_port = tcp;
config.tunnels.tcp.proto.tcp = lanport;
config.run_website = run_website;
config.run_tcp = run_tcp;
var serializer = new SerializerBuilder().Build();
var yaml = serializer.Serialize(config);
@ -141,7 +164,7 @@ namespace net.nutcore.aliddns
exec.FileName = NgrokExecutable;
exec.CreateNoWindow = true;
exec.UseShellExecute = false;
exec.Arguments = $"start -config \"{NgrokYaml}\" ";
exec.Arguments = $"-config \"{NgrokYaml}\" start ";
switch (code)
{
@ -150,11 +173,11 @@ namespace net.nutcore.aliddns
break;
case 2:
exec.Arguments += "ssh";
exec.Arguments += "tcp";
break;
default:
exec.Arguments += "website ssh";
exec.Arguments += "website tcp";
break;
}

View File

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net452" />
<package id="YamlDotNet" version="4.3.2" targetFramework="net452" />
</packages>