1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-23 05:36:08 +03:00
ProxySU/ProxySU_Core/Models/XraySettings.cs

163 lines
4.0 KiB
C#
Raw Normal View History

2021-03-17 06:58:56 +03:00
using Newtonsoft.Json;
using ProxySU_Core.Common;
using ProxySU_Core.Models.Developers;
2021-03-04 11:25:36 +03:00
using System;
2021-02-25 04:59:06 +03:00
using System.Collections.Generic;
2021-03-04 11:25:36 +03:00
using System.Linq;
2021-02-25 04:59:06 +03:00
using System.Text;
2021-03-04 11:25:36 +03:00
using System.Threading.Tasks;
2021-03-17 06:58:56 +03:00
using System.Web;
2021-02-25 04:59:06 +03:00
2021-03-04 11:25:36 +03:00
namespace ProxySU_Core.Models
2021-02-25 04:59:06 +03:00
{
2021-03-04 11:25:36 +03:00
public class XraySettings : IParameters
2021-02-25 04:59:06 +03:00
{
2021-03-04 11:25:36 +03:00
public XraySettings()
{
2021-03-12 10:59:20 +03:00
var guid = Guid.NewGuid().ToString();
2021-03-04 11:25:36 +03:00
Port = 443;
2021-03-12 10:59:20 +03:00
UUID = guid;
2021-03-17 06:58:56 +03:00
Types = new List<XrayType>();
2021-03-04 11:25:36 +03:00
VLESS_WS_Path = "/vlessws";
VLESS_TCP_Path = "/vlesstcp";
2021-03-18 10:17:07 +03:00
VLESS_H2_Path = "/vlessh2";
2021-03-04 11:25:36 +03:00
VMESS_WS_Path = "/vmessws";
VMESS_TCP_Path = "/vmesstcp";
2021-03-18 10:17:07 +03:00
VMESS_H2_Path = "/vmessh2";
2021-03-12 10:59:20 +03:00
TrojanPassword = guid;
2021-03-18 10:17:07 +03:00
Trojan_WS_Path = "/trojanws";
2021-03-04 11:25:36 +03:00
}
2021-02-25 04:59:06 +03:00
/// <summary>
/// 访问端口
/// </summary>
public int Port { get; set; }
/// <summary>
/// UUID
/// </summary>
public string UUID { get; set; }
/// <summary>
/// vless ws路径
/// </summary>
2021-03-04 11:25:36 +03:00
public string VLESS_WS_Path { get; set; }
2021-02-25 04:59:06 +03:00
/// <summary>
/// vless tcp路径
/// </summary>
2021-03-04 11:25:36 +03:00
public string VLESS_TCP_Path { get; set; }
2021-02-25 04:59:06 +03:00
2021-03-17 14:36:35 +03:00
/// <summary>
/// vless http2 path
/// </summary>
public string VLESS_H2_Path { get; set; }
/// <summary>
/// vless mKcp seed
/// </summary>
public string VLESS_mKCP_Seed { get; set; }
2021-02-25 04:59:06 +03:00
/// <summary>
/// vmess ws路径
/// </summary>
2021-03-04 11:25:36 +03:00
public string VMESS_WS_Path { get; set; }
2021-02-25 04:59:06 +03:00
/// <summary>
/// vmess tcp路径
/// </summary>
2021-03-04 11:25:36 +03:00
public string VMESS_TCP_Path { get; set; }
2021-02-25 04:59:06 +03:00
2021-03-17 14:36:35 +03:00
/// <summary>
/// vmess http2 path
/// </summary>
2021-03-18 10:17:07 +03:00
public string VMESS_H2_Path { get; set; }
2021-03-17 14:36:35 +03:00
/// <summary>
/// vmess mKcp seed
/// </summary>
public string VMESS_mKCP_Seed { get; set; }
2021-02-28 09:19:26 +03:00
/// <summary>
/// trojan密码
2021-02-25 04:59:06 +03:00
/// </summary>
2021-02-28 09:19:26 +03:00
public string TrojanPassword { get; set; }
2021-02-25 04:59:06 +03:00
2021-03-17 14:36:35 +03:00
/// <summary>
/// trojan ws path
/// </summary>
public string Trojan_WS_Path { get; set; }
2021-02-25 04:59:06 +03:00
/// <summary>
/// 域名
/// </summary>
public string Domain { get; set; }
/// <summary>
/// 伪装域名
/// </summary>
public string MaskDomain { get; set; }
/// <summary>
/// 安装类型
/// </summary>
2021-03-04 11:25:36 +03:00
public List<XrayType> Types { get; set; }
2021-02-28 09:19:26 +03:00
2021-03-04 11:25:36 +03:00
public string GetPath(XrayType type)
2021-02-28 09:19:26 +03:00
{
2021-03-04 11:25:36 +03:00
switch (type)
2021-02-28 09:19:26 +03:00
{
case XrayType.VLESS_TCP_TLS:
2021-03-04 11:25:36 +03:00
return VLESS_TCP_Path;
2021-02-28 09:19:26 +03:00
case XrayType.VLESS_TCP_XTLS:
2021-03-04 11:25:36 +03:00
return VLESS_TCP_Path;
2021-02-28 09:19:26 +03:00
case XrayType.VLESS_WS_TLS:
2021-03-04 11:25:36 +03:00
return VLESS_WS_Path;
2021-03-17 14:36:35 +03:00
case XrayType.VLESS_H2_TLS:
return VLESS_H2_Path;
2021-02-28 09:19:26 +03:00
case XrayType.VMESS_TCP_TLS:
2021-03-04 11:25:36 +03:00
return VMESS_TCP_Path;
2021-02-28 09:19:26 +03:00
case XrayType.VMESS_WS_TLS:
2021-03-04 11:25:36 +03:00
return VMESS_WS_Path;
2021-03-17 14:36:35 +03:00
case XrayType.Trojan_WS_TLS:
return Trojan_WS_Path;
// no path
case XrayType.VLESS_mKCP_Speed:
2021-02-28 09:19:26 +03:00
case XrayType.Trojan_TCP_TLS:
2021-03-17 14:36:35 +03:00
case XrayType.VMESS_mKCP_Speed:
2021-03-05 05:34:39 +03:00
return string.Empty;
2021-02-28 09:19:26 +03:00
default:
return string.Empty;
}
}
2021-03-17 06:58:56 +03:00
2021-02-25 04:59:06 +03:00
}
2021-03-17 06:58:56 +03:00
2021-02-25 04:59:06 +03:00
public enum XrayType
{
2021-03-17 14:36:35 +03:00
// 入口
VLESS_TCP_XTLS = 100,
// vless 101开头
VLESS_TCP_TLS = 101,
VLESS_WS_TLS = 102,
VLESS_H2_TLS = 103,
VLESS_mKCP_Speed = 104,
// vmess 201开头
VMESS_TCP_TLS = 201,
VMESS_WS_TLS = 202,
VMESS_H2_TLS = 203,
VMESS_mKCP_Speed = 204,
// trojan 301开头
Trojan_TCP_TLS = 301,
Trojan_WS_TLS = 302,
2021-02-25 04:59:06 +03:00
}
}