1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 05:36:08 +03:00
ProxySU/ProxySuper.Core/Services/BrookProject.cs

102 lines
3.1 KiB
C#
Raw Normal View History

2021-07-02 13:35:25 +03:00
using ProxySuper.Core.Models.Projects;
using Renci.SshNet;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.Services
{
public class BrookProject : ProjectBase<BrookSettings>
{
public BrookProject(SshClient sshClient, BrookSettings parameters, Action<string> writeOutput) : base(sshClient, parameters, writeOutput)
{
}
public override void Install()
{
WriteOutput("检测安装系统环境...");
EnsureSystemEnv();
WriteOutput("检测安装系统环境完成");
WriteOutput("配置服务器端口...");
ConfigurePort();
WriteOutput("端口配置完成");
WriteOutput("安装必要的系统工具...");
ConfigureSoftware();
WriteOutput("系统工具安装完成");
WriteOutput("检测IP6...");
ConfigureIPv6();
WriteOutput("检测IP6完成");
WriteOutput("配置防火墙...");
ConfigureFirewall();
WriteOutput("防火墙配置完成");
if (Parameters.BrookType == BrookType.wssserver)
{
WriteOutput("检测域名是否绑定本机IP...");
ValidateDomain();
WriteOutput("域名检测完成");
}
2021-07-06 13:30:14 +03:00
InstallBrook();
2021-07-02 13:35:25 +03:00
2021-07-06 13:30:14 +03:00
Console.WriteLine("*************安装完成,尽情享用吧**********");
2021-07-02 13:35:25 +03:00
}
public void InstallBrook()
{
Console.WriteLine("安装Brook");
2021-07-06 13:30:14 +03:00
string url = "https://github.com/txthinking/brook/releases/latest/download/brook_linux_amd64";
if (ArchType == ArchType.arm)
{
url = url.Replace("brook_linux_amd64", "brook_linux_arm7");
}
2021-07-02 13:35:25 +03:00
2021-07-06 13:30:14 +03:00
RunCmd($"curl -L {url} -o /usr/bin/brook");
RunCmd("chmod +x /usr/bin/brook");
Console.WriteLine("安装Brook完成");
2021-07-02 13:35:25 +03:00
var runBrookCmd = string.Empty;
if (Parameters.BrookType == BrookType.server)
{
2021-07-06 13:30:14 +03:00
runBrookCmd = $"nohup /usr/bin/brook server --listen :{Parameters.Port} --password {Parameters.Password} &";
2021-07-02 13:35:25 +03:00
}
if (Parameters.BrookType == BrookType.wsserver)
{
2021-07-06 13:30:14 +03:00
runBrookCmd = $"nohup /usr/bin/brook wsserver --listen :{Parameters.Port} --password {Parameters.Password} &";
2021-07-02 13:35:25 +03:00
}
if (Parameters.BrookType == BrookType.wsserver)
{
2021-07-06 13:30:14 +03:00
runBrookCmd = $"nohup /usr/bin/brook wssserver --domain {Parameters.Domain} --password {Parameters.Password} &";
2021-07-02 13:35:25 +03:00
}
2021-07-06 13:30:14 +03:00
if (Parameters.BrookType == BrookType.socks5)
{
runBrookCmd = $"nohup /usr/bin/brook socks5 --socks5 :{Parameters.Port} &";
}
2021-07-02 13:35:25 +03:00
}
public void Uninstall()
{
2021-07-06 13:30:14 +03:00
RunCmd("killall brook");
2021-07-02 13:35:25 +03:00
Console.WriteLine("关闭端口");
ClosePort(Parameters.FreePorts.ToArray());
Console.WriteLine("******卸载完成******");
}
}
}