1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 13:46:08 +03:00
ProxySU/ProxySU_Core/ViewModels/Developers/XrayProject.cs

259 lines
9.3 KiB
C#
Raw Normal View History

2021-02-25 04:59:06 +03:00
using Renci.SshNet;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Windows;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
2021-03-04 11:25:36 +03:00
using ProxySU_Core.Models;
2021-02-25 04:59:06 +03:00
namespace ProxySU_Core.ViewModels.Developers
{
2021-03-04 11:25:36 +03:00
public class XrayProject : Project<XraySettings>
2021-02-25 04:59:06 +03:00
{
2021-02-28 09:19:26 +03:00
private const string ServerLogDir = @"Templates\xray\server\00_log";
private const string ServerApiDir = @"Templates\xray\server\01_api";
private const string ServerDnsDir = @"Templates\xray\server\02_dns";
private const string ServerRoutingDir = @"Templates\xray\server\03_routing";
private const string ServerPolicyDir = @"Templates\xray\server\04_policy";
private const string ServerInboundsDir = @"Templates\xray\server\05_inbounds";
private const string ServerOutboundsDir = @"Templates\xray\server\06_outbounds";
private const string ServerTransportDir = @"Templates\xray\server\07_transport";
private const string ServerStatsDir = @"Templates\xray\server\08_stats";
private const string ServerReverseDir = @"Templates\xray\server\09_reverse";
private const string CaddyFileDir = @"Templates\xray\caddy";
2021-03-04 11:25:36 +03:00
public XrayProject(SshClient sshClient, XraySettings parameters, Action<string> writeOutput) : base(sshClient, parameters, writeOutput)
2021-02-25 04:59:06 +03:00
{
}
2021-03-09 12:52:09 +03:00
public void InstallCert()
{
EnsureRootAuth();
EnsureSystemEnv();
this.InstallCertToXray();
RunCmd("systemctl restart xray");
2021-03-10 05:50:34 +03:00
WriteOutput("************");
2021-03-09 14:02:14 +03:00
WriteOutput("安装证书完成");
2021-03-10 05:50:34 +03:00
WriteOutput("************");
2021-03-09 12:52:09 +03:00
}
public void UploadWeb(Stream stream)
{
EnsureRootAuth();
EnsureSystemEnv();
2021-03-09 14:02:14 +03:00
if (!FileExists("/usr/share/caddy"))
{
RunCmd("mkdir /usr/share/caddy");
}
2021-03-09 12:52:09 +03:00
RunCmd("rm -rf /usr/share/caddy/*");
UploadFile(stream, "/usr/share/caddy/caddy.zip");
RunCmd("unzip /usr/share/caddy/caddy.zip -d /usr/share/caddy");
RunCmd("chmod -R 777 /usr/share/caddy");
2021-03-11 07:05:50 +03:00
UploadCaddyFile(useCustomWeb: true);
2021-03-09 14:02:14 +03:00
RunCmd("systemctl restart caddy");
2021-03-11 07:05:50 +03:00
WriteOutput("************\n上传网站模板完成\n************");
2021-03-09 14:02:14 +03:00
}
public void ReinstallCaddy()
{
EnsureRootAuth();
EnsureSystemEnv();
InstallCaddy();
UploadCaddyFile();
2021-03-10 05:50:34 +03:00
WriteOutput("************");
2021-03-09 14:02:14 +03:00
WriteOutput("重装Caddy完成");
2021-03-10 05:50:34 +03:00
WriteOutput("************");
2021-03-09 12:52:09 +03:00
}
2021-03-04 13:25:52 +03:00
public override void Install()
2021-02-25 04:59:06 +03:00
{
try
{
EnsureRootAuth();
if (FileExists("/usr/local/bin/xray"))
{
var btnResult = MessageBox.Show("已经安装Xray是否需要重装", "提示", MessageBoxButton.YesNo);
if (btnResult == MessageBoxResult.No)
{
MessageBox.Show("安装终止", "提示");
return;
}
}
2021-03-09 12:52:09 +03:00
WriteOutput("检测安装系统环境...");
2021-02-25 04:59:06 +03:00
EnsureSystemEnv();
2021-03-09 12:52:09 +03:00
WriteOutput("检测安装系统环境完成");
2021-02-25 04:59:06 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("配置服务器端口...");
2021-03-04 13:25:52 +03:00
ConfigurePort();
2021-03-09 12:52:09 +03:00
WriteOutput("端口配置完成");
2021-03-04 13:25:52 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("安装必要的系统工具...");
2021-02-25 04:59:06 +03:00
ConfigureSoftware();
2021-03-09 12:52:09 +03:00
WriteOutput("系统工具安装完成");
2021-02-25 04:59:06 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("检测IP6...");
2021-02-25 04:59:06 +03:00
ConfigureIPv6();
2021-03-09 12:52:09 +03:00
WriteOutput("检测IP6完成");
2021-02-25 04:59:06 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("配置防火墙...");
2021-02-25 04:59:06 +03:00
ConfigureFirewall();
2021-03-09 12:52:09 +03:00
WriteOutput("防火墙配置完成");
2021-02-25 04:59:06 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("同步系统和本地世间...");
2021-02-25 04:59:06 +03:00
SyncTimeDiff();
2021-03-09 12:52:09 +03:00
WriteOutput("时间同步完成");
2021-02-25 04:59:06 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("检测域名是否绑定本机IP...");
2021-02-25 04:59:06 +03:00
ValidateDomain();
2021-03-09 12:52:09 +03:00
WriteOutput("域名检测完成");
2021-02-25 04:59:06 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("安装Xray-Core...");
2021-02-28 09:19:26 +03:00
InstallXrayWithCert();
2021-03-09 12:52:09 +03:00
WriteOutput("Xray-Core安装完成");
2021-02-28 09:19:26 +03:00
2021-03-09 12:52:09 +03:00
WriteOutput("安装Caddy...");
2021-02-28 09:19:26 +03:00
InstallCaddy();
2021-03-09 12:52:09 +03:00
WriteOutput("Caddy安装完成");
2021-02-28 09:19:26 +03:00
UploadCaddyFile();
2021-03-09 12:52:09 +03:00
WriteOutput("************");
WriteOutput("安装完成,尽情享用吧......");
WriteOutput("************");
2021-02-25 04:59:06 +03:00
}
catch (Exception ex)
{
MessageBox.Show("安装终止," + ex.Message);
}
}
2021-03-11 07:05:50 +03:00
private void UploadCaddyFile(bool useCustomWeb = false)
2021-02-28 09:19:26 +03:00
{
2021-03-11 07:05:50 +03:00
var configJson = ConfigBuilder.BuildCaddyConfig(Parameters, useCustomWeb);
2021-02-28 09:19:26 +03:00
var stream = new MemoryStream(Encoding.UTF8.GetBytes(configJson));
RunCmd("mv /etc/caddy/Caddyfile /etc/caddy/Caddyfile.back");
UploadFile(stream, "/etc/caddy/Caddyfile");
RunCmd("systemctl reload caddy");
}
private void InstallXrayWithCert()
2021-02-25 04:59:06 +03:00
{
RunCmd("bash -c \"$(curl -L https://github.com/XTLS/Xray-install/raw/main/install-release.sh)\" @ install");
2021-03-09 12:52:09 +03:00
if (!FileExists("/usr/local/bin/xray"))
2021-02-25 04:59:06 +03:00
{
2021-03-09 12:52:09 +03:00
throw new Exception("Xray-Core安装失败请联系开发者");
2021-02-25 04:59:06 +03:00
}
RunCmd($"sed -i 's/User=nobody/User=root/g' /etc/systemd/system/xray.service");
RunCmd($"sed -i 's/CapabilityBoundingSet=/#CapabilityBoundingSet=/g' /etc/systemd/system/xray.service");
RunCmd($"sed -i 's/AmbientCapabilities=/#AmbientCapabilities=/g' /etc/systemd/system/xray.service");
RunCmd($"systemctl daemon-reload");
if (FileExists("/usr/local/etc/xray/config.json"))
{
RunCmd(@"mv /usr/local/etc/xray/config.json /usr/local/etc/xray/config.json.1");
}
2021-03-09 12:52:09 +03:00
WriteOutput("安装TLS证书");
2021-02-28 09:19:26 +03:00
InstallCertToXray();
2021-03-09 12:52:09 +03:00
WriteOutput("TLS证书安装完成");
2021-02-25 04:59:06 +03:00
2021-02-28 09:19:26 +03:00
var configJson = ConfigBuilder.BuildXrayConfig(Parameters);
var stream = new MemoryStream(Encoding.UTF8.GetBytes(configJson));
RunCmd("rm -rf /usr/local/etc/xray/config.json");
UploadFile(stream, "/usr/local/etc/xray/config.json");
2021-03-08 18:15:18 +03:00
RunCmd("systemctl restart xray");
2021-02-25 04:59:06 +03:00
}
2021-02-28 09:19:26 +03:00
private void InstallCertToXray()
2021-02-25 04:59:06 +03:00
{
// 安装依赖
RunCmd(GetInstallCmd("socat"));
// 解决搬瓦工CentOS缺少问题
2021-03-11 07:05:50 +03:00
RunCmd(GetInstallCmd("automake autoconf libtool"));
2021-02-25 04:59:06 +03:00
// 安装Acme
var result = RunCmd($"curl https://raw.githubusercontent.com/acmesh-official/acme.sh/master/acme.sh | sh -s -- --install-online -m {GetRandomEmail()}");
if (result.Contains("Install success"))
{
WriteOutput("安装 acme.sh 成功");
}
else
{
throw new Exception("安装 acme.sh 失败,请联系开发者!");
}
RunCmd("cd ~/.acme.sh/");
RunCmd("alias acme.sh=~/.acme.sh/acme.sh");
// 申请证书
if (OnlyIpv6)
{
var cmd = $"/root/.acme.sh/acme.sh --force --debug --issue --standalone -d {Parameters.Domain} --listen-v6";
result = RunCmd(cmd);
}
else
{
var cmd = $"/root/.acme.sh/acme.sh --force --debug --issue --standalone -d {Parameters.Domain}";
result = RunCmd(cmd);
}
if (result.Contains("Cert success"))
{
WriteOutput("申请证书成功");
}
else
{
throw new Exception("申请证书失败,请联系开发者!");
}
// 安装证书到xray
RunCmd("mkdir -p /usr/local/etc/xray/ssl");
2021-03-08 18:15:18 +03:00
RunCmd($"/root/.acme.sh/acme.sh --installcert -d {Parameters.Domain} --certpath /usr/local/etc/xray/ssl/xray_ssl.crt --keypath /usr/local/etc/xray/ssl/xray_ssl.key --capath /usr/local/etc/xray/ssl/xray_ssl.crt");
2021-02-25 04:59:06 +03:00
result = RunCmd(@"if [ ! -f ""/usr/local/etc/xray/ssl/xray_ssl.key"" ]; then echo ""0""; else echo ""1""; fi | head -n 1");
if (result.Contains("1"))
{
WriteOutput("安装证书成功");
}
else
{
throw new Exception("安装证书失败,请联系开发者!");
}
2021-03-08 18:15:18 +03:00
RunCmd(@"chmod 755 /usr/local/etc/xray/ssl");
2021-02-25 04:59:06 +03:00
}
private string GetRandomEmail()
{
Random r = new Random();
var num = r.Next(200000000, 900000000);
return $"{num}@qq.com";
}
2021-02-28 09:19:26 +03:00
private int GetRandomPort()
{
var random = new Random();
return random.Next(10001, 60000);
}
private dynamic LoadJsonObj(string path)
{
if (File.Exists(path))
{
var jsonStr = File.ReadAllText(path, Encoding.UTF8);
return JsonConvert.DeserializeObject(jsonStr);
}
return null;
}
2021-02-25 04:59:06 +03:00
}
}