mirror of
https://github.com/2dust/v2rayN.git
synced 2025-04-19 21:52:25 +00:00
97 lines
3.3 KiB
C#
97 lines
3.3 KiB
C#
using System.Reactive;
|
|
using ReactiveUI;
|
|
using ReactiveUI.Fody.Helpers;
|
|
|
|
namespace ServiceLib.ViewModels
|
|
{
|
|
public class AddServerViewModel : MyReactiveObject
|
|
{
|
|
[Reactive]
|
|
public ProfileItem SelectedSource { get; set; }
|
|
|
|
[Reactive]
|
|
public string? CoreType { get; set; }
|
|
|
|
public ReactiveCommand<Unit, Unit> SaveCmd { get; }
|
|
|
|
public AddServerViewModel(ProfileItem profileItem, Func<EViewAction, object?, Task<bool>>? updateView)
|
|
{
|
|
_config = AppHandler.Instance.Config;
|
|
_updateView = updateView;
|
|
|
|
SaveCmd = ReactiveCommand.CreateFromTask(async () =>
|
|
{
|
|
await SaveServerAsync();
|
|
});
|
|
|
|
if (profileItem.IndexId.IsNullOrEmpty())
|
|
{
|
|
profileItem.Network = Global.DefaultNetwork;
|
|
profileItem.HeaderType = Global.None;
|
|
profileItem.RequestHost = "";
|
|
profileItem.StreamSecurity = "";
|
|
SelectedSource = profileItem;
|
|
}
|
|
else
|
|
{
|
|
SelectedSource = JsonUtils.DeepCopy(profileItem);
|
|
}
|
|
CoreType = SelectedSource?.CoreType?.ToString();
|
|
}
|
|
|
|
private async Task SaveServerAsync()
|
|
{
|
|
if (Utils.IsNullOrEmpty(SelectedSource.Remarks))
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.PleaseFillRemarks);
|
|
return;
|
|
}
|
|
|
|
if (Utils.IsNullOrEmpty(SelectedSource.Address))
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.FillServerAddress);
|
|
return;
|
|
}
|
|
var port = SelectedSource.Port.ToString();
|
|
if (Utils.IsNullOrEmpty(port) || !Utils.IsNumeric(port)
|
|
|| SelectedSource.Port <= 0 || SelectedSource.Port >= Global.MaxPort)
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.FillCorrectServerPort);
|
|
return;
|
|
}
|
|
if (SelectedSource.ConfigType == EConfigType.Shadowsocks)
|
|
{
|
|
if (Utils.IsNullOrEmpty(SelectedSource.Id))
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.FillPassword);
|
|
return;
|
|
}
|
|
if (Utils.IsNullOrEmpty(SelectedSource.Security))
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.PleaseSelectEncryption);
|
|
return;
|
|
}
|
|
}
|
|
if (SelectedSource.ConfigType != EConfigType.SOCKS
|
|
&& SelectedSource.ConfigType != EConfigType.HTTP)
|
|
{
|
|
if (Utils.IsNullOrEmpty(SelectedSource.Id))
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.FillUUID);
|
|
return;
|
|
}
|
|
}
|
|
SelectedSource.CoreType = CoreType.IsNullOrEmpty() ? null : (ECoreType)Enum.Parse(typeof(ECoreType), CoreType);
|
|
|
|
if (await ConfigHandler.AddServer(_config, SelectedSource) == 0)
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.OperationSuccess);
|
|
_updateView?.Invoke(EViewAction.CloseWindow, null);
|
|
}
|
|
else
|
|
{
|
|
NoticeHandler.Instance.Enqueue(ResUI.OperationFailed);
|
|
}
|
|
}
|
|
}
|
|
}
|