mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-21 20:56:08 +03:00
610 lines
17 KiB
C#
610 lines
17 KiB
C#
using MvvmCross.Commands;
|
||
using MvvmCross.Navigation;
|
||
using MvvmCross.ViewModels;
|
||
using ProxySuper.Core.Models;
|
||
using ProxySuper.Core.Models.Hosts;
|
||
using ProxySuper.Core.Models.Projects;
|
||
using ProxySuper.Core.Services;
|
||
using System;
|
||
using System.Collections.Generic;
|
||
using System.Linq;
|
||
using System.Windows.Controls;
|
||
|
||
namespace ProxySuper.Core.ViewModels
|
||
{
|
||
public partial class XrayEditorViewModel : MvxViewModel<Record, Record>
|
||
{
|
||
public XrayEditorViewModel(IMvxNavigationService navigationService)
|
||
{
|
||
NavigationService = navigationService;
|
||
}
|
||
|
||
|
||
public string Id { get; set; }
|
||
|
||
public Host Host { get; set; }
|
||
|
||
public XraySettings Settings { get; set; }
|
||
|
||
public IMvxCommand SaveCommand => new MvxCommand(Save);
|
||
|
||
public IMvxCommand SaveAndInstallCommand => new MvxCommand(SaveAndInstall);
|
||
|
||
public IMvxNavigationService NavigationService { get; }
|
||
|
||
public override void Prepare(Record parameter)
|
||
{
|
||
var record = Utils.DeepClone(parameter);
|
||
Id = record.Id;
|
||
Host = record.Host;
|
||
Settings = record.XraySettings;
|
||
}
|
||
|
||
public void Save()
|
||
{
|
||
NavigationService.Close(this, new Record()
|
||
{
|
||
Id = Id,
|
||
Host = Host,
|
||
XraySettings = Settings,
|
||
});
|
||
}
|
||
|
||
public void SaveAndInstall()
|
||
{
|
||
var record = new Record()
|
||
{
|
||
Id = Id,
|
||
Host = Host,
|
||
XraySettings = Settings,
|
||
};
|
||
NavigationService.Close(this, record);
|
||
NavigationService.Navigate<XrayInstallViewModel, Record>(record);
|
||
}
|
||
}
|
||
|
||
public partial class XrayEditorViewModel
|
||
{
|
||
public List<string> UTLSList { get => XraySettings.UTLSList; }
|
||
|
||
public List<string> KcpTypes => V2raySettings.DisguiseTypes;
|
||
|
||
public List<string> QuicTypes => V2raySettings.DisguiseTypes;
|
||
|
||
public List<string> QuicSecurities => new List<string>
|
||
{
|
||
"none",
|
||
"aes-128-gcm",
|
||
"chacha20-poly1305"
|
||
};
|
||
|
||
public List<string> ShadowSocksMethods => new List<string>
|
||
{
|
||
"2022-blake3-aes-128-gcm",
|
||
"2022-blake3-aes-256-gcm",
|
||
"2022-blake3-chacha20-poly1305",
|
||
"aes-256-gcm",
|
||
"aes-128-gcm",
|
||
"chacha20-poly1305",
|
||
"none"
|
||
};
|
||
|
||
public IMvxCommand RandomUuid => new MvxCommand(() => GetUuid());
|
||
|
||
public bool WithTLS
|
||
{
|
||
get => Settings.WithTLS;
|
||
set
|
||
{
|
||
Settings.WithTLS = value;
|
||
RaisePropertyChanged("Port");
|
||
}
|
||
}
|
||
|
||
public int Port
|
||
{
|
||
get => Settings.Port;
|
||
set
|
||
{
|
||
Settings.Port = value;
|
||
RaisePropertyChanged("Port");
|
||
}
|
||
}
|
||
|
||
|
||
public string UTLS
|
||
{
|
||
get => Settings.UTLS;
|
||
set
|
||
{
|
||
Settings.UTLS = value;
|
||
RaisePropertyChanged(nameof(UTLS));
|
||
}
|
||
}
|
||
|
||
public int VLESS_KCP_Port
|
||
{
|
||
get => Settings.VLESS_KCP_Port;
|
||
set
|
||
{
|
||
Settings.VLESS_KCP_Port = value;
|
||
RaisePropertyChanged("VLESS_KCP_Port");
|
||
}
|
||
}
|
||
|
||
public int VMESS_KCP_Port
|
||
{
|
||
get => Settings.VMESS_KCP_Port;
|
||
set
|
||
{
|
||
Settings.VMESS_KCP_Port = value;
|
||
RaisePropertyChanged("VMESS_KCP_Port");
|
||
}
|
||
}
|
||
|
||
public string UUID
|
||
{
|
||
get => Settings.UUID;
|
||
set
|
||
{
|
||
Settings.UUID = value;
|
||
RaisePropertyChanged("UUID");
|
||
}
|
||
}
|
||
|
||
public string MultiUUID
|
||
{
|
||
get => string.Join(",", Settings.MulitUUID);
|
||
set
|
||
{
|
||
var input = value.Replace(',', ',');
|
||
var arr = input.Split(new char[] { ',' }, StringSplitOptions.RemoveEmptyEntries).ToList();
|
||
arr.RemoveAll(x => x == this.UUID);
|
||
Settings.MulitUUID = arr;
|
||
RaisePropertyChanged("MultiUUID");
|
||
}
|
||
}
|
||
|
||
public string Domain
|
||
{
|
||
get => Settings.Domain;
|
||
set
|
||
{
|
||
Settings.Domain = value;
|
||
RaisePropertyChanged("Domain");
|
||
}
|
||
}
|
||
|
||
public string MaskDomain
|
||
{
|
||
get => Settings.MaskDomain;
|
||
set
|
||
{
|
||
Settings.MaskDomain = value;
|
||
RaisePropertyChanged("MaskDomain");
|
||
}
|
||
}
|
||
|
||
#region Trojan
|
||
public string TrojanPassword
|
||
{
|
||
get => Settings.TrojanPassword;
|
||
set => Settings.TrojanPassword = value;
|
||
}
|
||
|
||
public bool Checked_Trojan_TCP
|
||
{
|
||
get
|
||
{
|
||
return Settings.Types.Contains(RayType.Trojan_TCP);
|
||
}
|
||
set
|
||
{
|
||
if (value == true)
|
||
{
|
||
if (!Settings.Types.Contains(RayType.Trojan_TCP))
|
||
Settings.Types.Add(RayType.Trojan_TCP);
|
||
}
|
||
else
|
||
{
|
||
Settings.Types.Remove(RayType.Trojan_TCP);
|
||
}
|
||
RaisePropertyChanged("Checked_Trojan_TCP");
|
||
}
|
||
}
|
||
public string Trojan_TCP_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.Trojan_TCP, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region ShadowSocks
|
||
public int ShadowSocksPort
|
||
{
|
||
get => Settings.ShadowSocksPort;
|
||
set
|
||
{
|
||
Settings.ShadowSocksPort = value;
|
||
RaisePropertyChanged("ShadowSocksPort");
|
||
}
|
||
}
|
||
public bool CheckedShadowSocks
|
||
{
|
||
|
||
get => Settings.Types.Contains(RayType.ShadowsocksAEAD);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.ShadowsocksAEAD);
|
||
RaisePropertyChanged("CheckedShadowSocks");
|
||
}
|
||
}
|
||
public string ShadowSocksPassword
|
||
{
|
||
get => Settings.ShadowSocksPassword;
|
||
set => Settings.ShadowSocksPassword = value;
|
||
}
|
||
public string ShadowSocksMethod
|
||
{
|
||
get => Settings.ShadowSocksMethod;
|
||
set
|
||
{
|
||
var namespaceStr = typeof(ComboBoxItem).FullName + ":";
|
||
var trimValue = value.Replace(namespaceStr, "");
|
||
trimValue = trimValue.Trim();
|
||
Settings.ShadowSocksMethod = trimValue;
|
||
RaisePropertyChanged("ShadowSocksMethod");
|
||
}
|
||
}
|
||
public string ShadowSocksShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.ShadowsocksAEAD, Settings);
|
||
}
|
||
#endregion
|
||
|
||
private void CheckBoxChanged(bool value, RayType type)
|
||
{
|
||
if (value == true)
|
||
{
|
||
if (!Settings.Types.Contains(type))
|
||
{
|
||
Settings.Types.Add(type);
|
||
}
|
||
}
|
||
else
|
||
{
|
||
Settings.Types.RemoveAll(x => x == type);
|
||
}
|
||
}
|
||
|
||
private void GetUuid()
|
||
{
|
||
UUID = Guid.NewGuid().ToString();
|
||
RaisePropertyChanged("UUID");
|
||
}
|
||
|
||
}
|
||
|
||
/// <summary>
|
||
/// VMESS
|
||
/// </summary>
|
||
public partial class XrayEditorViewModel
|
||
{
|
||
#region VMESS TCP
|
||
public bool Checked_VMESS_TCP
|
||
{
|
||
get => Settings.Types.Contains(RayType.VMESS_TCP);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VMESS_TCP);
|
||
RaisePropertyChanged("Checked_VMESS_TCP");
|
||
}
|
||
}
|
||
public string VMESS_TCP_Path
|
||
{
|
||
get => Settings.VMESS_TCP_Path;
|
||
set => Settings.VMESS_TCP_Path = value;
|
||
}
|
||
public string VMESS_TCP_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VMESS_TCP, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VMESS WS
|
||
public bool Checked_VMESS_WS
|
||
{
|
||
get => Settings.Types.Contains(RayType.VMESS_WS);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VMESS_WS);
|
||
RaisePropertyChanged("Checked_VMESS_WS");
|
||
}
|
||
}
|
||
public string VMESS_WS_Path
|
||
{
|
||
get => Settings.VMESS_WS_Path;
|
||
set => Settings.VMESS_WS_Path = value;
|
||
}
|
||
public string VMESS_WS_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VMESS_WS, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VMESS KCP
|
||
public string VMESS_KCP_Seed
|
||
{
|
||
get => Settings.VMESS_KCP_Seed;
|
||
set => Settings.VMESS_KCP_Seed = value;
|
||
}
|
||
public string VMESS_KCP_Type
|
||
{
|
||
get => Settings.VMESS_KCP_Type;
|
||
set
|
||
{
|
||
var namespaceStr = typeof(ComboBoxItem).FullName + ":";
|
||
var trimValue = value.Replace(namespaceStr, "");
|
||
trimValue = trimValue.Trim();
|
||
Settings.VMESS_KCP_Type = trimValue;
|
||
RaisePropertyChanged("VMESS_KCP_Type");
|
||
}
|
||
}
|
||
public bool Checked_VMESS_KCP
|
||
{
|
||
get => Settings.Types.Contains(RayType.VMESS_KCP);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VMESS_KCP);
|
||
RaisePropertyChanged("Checked_VMESS_KCP");
|
||
}
|
||
}
|
||
public string VMESS_KCP_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VMESS_KCP, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VMESS QUIC
|
||
public bool Checked_VMESS_QUIC
|
||
{
|
||
get => Settings.Types.Contains(RayType.VMESS_QUIC);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VMESS_QUIC);
|
||
RaisePropertyChanged(nameof(Checked_VMESS_QUIC));
|
||
}
|
||
}
|
||
public string VMESS_QUIC_Key
|
||
{
|
||
get => Settings.VMESS_QUIC_Key;
|
||
set
|
||
{
|
||
Settings.VMESS_QUIC_Key = value;
|
||
RaisePropertyChanged(nameof(VMESS_QUIC_Key));
|
||
}
|
||
}
|
||
public string VMESS_QUIC_Security
|
||
{
|
||
get => Settings.VMESS_QUIC_Security;
|
||
set
|
||
{
|
||
Settings.VMESS_QUIC_Security = value;
|
||
RaisePropertyChanged(nameof(VMESS_QUIC_Security));
|
||
}
|
||
}
|
||
public string VMESS_QUIC_Type
|
||
{
|
||
get => Settings.VMESS_QUIC_Type;
|
||
set
|
||
{
|
||
Settings.VMESS_QUIC_Type = value;
|
||
RaisePropertyChanged(nameof(VMESS_QUIC_Type));
|
||
}
|
||
}
|
||
public int VMESS_QUIC_Port
|
||
{
|
||
get => Settings.VMESS_QUIC_Port;
|
||
set
|
||
{
|
||
Settings.VMESS_QUIC_Port = value;
|
||
RaisePropertyChanged(nameof(VMESS_QUIC_Port));
|
||
}
|
||
}
|
||
public string VMESS_QUIC_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VMESS_QUIC, Settings);
|
||
}
|
||
#endregion
|
||
|
||
}
|
||
|
||
/// <summary>
|
||
/// VLESS
|
||
/// </summary>
|
||
public partial class XrayEditorViewModel
|
||
{
|
||
#region VLESS XTLS
|
||
|
||
public List<string> FlowList { get => XraySettings.FlowList; }
|
||
|
||
public string Flow
|
||
{
|
||
get => Settings.Flow;
|
||
set
|
||
{
|
||
Settings.Flow = value;
|
||
RaisePropertyChanged(nameof(Flow));
|
||
}
|
||
}
|
||
public bool Checked_VLESS_TCP_XTLS
|
||
{
|
||
get => Settings.Types.Contains(RayType.VLESS_TCP_XTLS);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VLESS_TCP_XTLS);
|
||
RaisePropertyChanged("Checked_VLESS_TCP_XTLS");
|
||
}
|
||
}
|
||
public string VLESS_TCP_XTLS_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VLESS_TCP_XTLS, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VLESS TCP
|
||
public bool Checked_VLESS_TCP
|
||
{
|
||
get => Settings.Types.Contains(RayType.VLESS_TCP);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VLESS_TCP);
|
||
RaisePropertyChanged("Checked_VLESS_TCP");
|
||
}
|
||
}
|
||
public string VLESS_TCP_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VLESS_TCP, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VLESS WS
|
||
public string VLESS_WS_Path
|
||
{
|
||
get => Settings.VLESS_WS_Path;
|
||
set => Settings.VLESS_WS_Path = value;
|
||
}
|
||
public bool Checked_VLESS_WS
|
||
{
|
||
get
|
||
{
|
||
return Settings.Types.Contains(RayType.VLESS_WS);
|
||
}
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VLESS_WS);
|
||
RaisePropertyChanged("Checked_VLESS_WS");
|
||
}
|
||
}
|
||
public string VLESS_WS_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VLESS_WS, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VLESS QUIC
|
||
public string VLESS_QUIC_Key
|
||
{
|
||
get => Settings.VLESS_QUIC_Key; set
|
||
{
|
||
Settings.VLESS_QUIC_Key = value;
|
||
RaisePropertyChanged(nameof(VLESS_QUIC_Key));
|
||
}
|
||
}
|
||
public bool Checked_VLESS_QUIC
|
||
{
|
||
get => Settings.Types.Contains(RayType.VLESS_QUIC);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VLESS_QUIC);
|
||
RaisePropertyChanged(nameof(Checked_VLESS_QUIC));
|
||
}
|
||
}
|
||
public string VLESS_QUIC_Security
|
||
{
|
||
get => Settings.VLESS_QUIC_Security;
|
||
set
|
||
{
|
||
Settings.VLESS_QUIC_Security = value;
|
||
RaisePropertyChanged(nameof(VLESS_QUIC_Security));
|
||
}
|
||
}
|
||
public string VLESS_QUIC_Type
|
||
{
|
||
get => Settings.VLESS_QUIC_Type;
|
||
set
|
||
{
|
||
Settings.VLESS_QUIC_Type = value;
|
||
RaisePropertyChanged(nameof(VLESS_QUIC_Type));
|
||
}
|
||
}
|
||
public int VLESS_QUIC_Port
|
||
{
|
||
get => Settings.VLESS_QUIC_Port;
|
||
set
|
||
{
|
||
Settings.VLESS_QUIC_Port = value;
|
||
RaisePropertyChanged(nameof(VLESS_QUIC_Port));
|
||
}
|
||
}
|
||
public string VLESS_QUIC_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VLESS_QUIC, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VLESS KCP
|
||
public string VLESS_KCP_Seed
|
||
{
|
||
get => Settings.VLESS_KCP_Seed;
|
||
set
|
||
{
|
||
Settings.VLESS_KCP_Seed = value;
|
||
RaisePropertyChanged(nameof(VLESS_KCP_Seed));
|
||
}
|
||
}
|
||
public string VLESS_KCP_Type
|
||
{
|
||
get => Settings.VLESS_KCP_Type;
|
||
set
|
||
{
|
||
var namespaceStr = typeof(ComboBoxItem).FullName + ":";
|
||
var trimValue = value.Replace(namespaceStr, "");
|
||
trimValue = trimValue.Trim();
|
||
Settings.VLESS_KCP_Type = trimValue;
|
||
RaisePropertyChanged("VLESS_KCP_Type");
|
||
}
|
||
}
|
||
public bool Checked_VLESS_KCP
|
||
{
|
||
get => Settings.Types.Contains(RayType.VLESS_KCP);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VLESS_KCP);
|
||
RaisePropertyChanged("Checked_VLESS_KCP");
|
||
}
|
||
}
|
||
public string VLESS_KCP_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VLESS_KCP, Settings);
|
||
}
|
||
#endregion
|
||
|
||
#region VLESS gRPC
|
||
public string VLESS_gRPC_ServiceName
|
||
{
|
||
get => Settings.VLESS_gRPC_ServiceName;
|
||
set => Settings.VLESS_gRPC_ServiceName = value;
|
||
}
|
||
public int VLESS_gRPC_Port
|
||
{
|
||
get => Settings.VLESS_gRPC_Port;
|
||
set => Settings.VLESS_gRPC_Port = value;
|
||
}
|
||
public bool Checked_VLESS_gRPC
|
||
{
|
||
get => Settings.Types.Contains(RayType.VLESS_gRPC);
|
||
set
|
||
{
|
||
CheckBoxChanged(value, RayType.VLESS_gRPC);
|
||
RaisePropertyChanged("Checked_VLESS_gRPC");
|
||
}
|
||
}
|
||
public string VLESS_gRPC_ShareLink
|
||
{
|
||
get => ShareLink.Build(RayType.VLESS_gRPC, Settings);
|
||
}
|
||
#endregion
|
||
}
|
||
|
||
}
|