mirror of
https://github.com/proxysu/ProxySU.git
synced 2024-11-22 21:26:09 +03:00
239 lines
8.0 KiB
C#
239 lines
8.0 KiB
C#
using MvvmCross.Commands;
|
|
using MvvmCross.Navigation;
|
|
using MvvmCross.ViewModels;
|
|
using Newtonsoft.Json;
|
|
using Newtonsoft.Json.Serialization;
|
|
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.IO;
|
|
using System.Linq;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows;
|
|
|
|
namespace ProxySuper.Core.ViewModels
|
|
{
|
|
public class HomeViewModel : MvxViewModel
|
|
{
|
|
private readonly IMvxNavigationService _navigationService;
|
|
|
|
public HomeViewModel(IMvxNavigationService navigationService)
|
|
{
|
|
_navigationService = navigationService;
|
|
ReadRecords();
|
|
}
|
|
|
|
public void ReadRecords()
|
|
{
|
|
List<Record> records = new List<Record>();
|
|
if (File.Exists("Data/Record.json"))
|
|
{
|
|
var json = File.ReadAllText("Data/Record.json");
|
|
records = JsonConvert.DeserializeObject<List<Record>>(json);
|
|
}
|
|
|
|
this.Records = new MvxObservableCollection<Record>();
|
|
|
|
records.ForEach(item =>
|
|
{
|
|
if (string.IsNullOrEmpty(item.Id))
|
|
{
|
|
item.Id = Guid.NewGuid().ToString();
|
|
}
|
|
this.Records.Add(item);
|
|
});
|
|
}
|
|
|
|
public void SaveToJson()
|
|
{
|
|
var json = JsonConvert.SerializeObject(Records, Formatting.Indented, new JsonSerializerSettings
|
|
{
|
|
ContractResolver = new CamelCasePropertyNamesContractResolver()
|
|
});
|
|
File.WriteAllText("Data/Record.json", json);
|
|
}
|
|
|
|
public MvxObservableCollection<Record> Records { get; set; }
|
|
|
|
public IMvxCommand AddXrayCommand => new MvxAsyncCommand(AddXrayRecord);
|
|
|
|
public IMvxCommand AddTrojanGoCommand => new MvxAsyncCommand(AddTrojanGoRecord);
|
|
|
|
public IMvxCommand AddNaiveProxyCommand => new MvxAsyncCommand(AddNaiveProxyRecord);
|
|
|
|
public IMvxCommand AddBrookCommand => new MvxAsyncCommand(AddBrookRecord);
|
|
|
|
public IMvxCommand RemoveCommand => new MvxAsyncCommand<string>(DeleteRecord);
|
|
|
|
public IMvxCommand EditCommand => new MvxAsyncCommand<string>(EditRecord);
|
|
|
|
public IMvxCommand ViewConfigCommand => new MvxAsyncCommand<string>(ViewConfig);
|
|
|
|
public IMvxCommand InstallCommand => new MvxAsyncCommand<string>(GoToInstall);
|
|
|
|
public async Task AddXrayRecord()
|
|
{
|
|
Record record = new Record();
|
|
record.Id = Utils.GetTickID();
|
|
record.Host = new Host();
|
|
record.XraySettings = new XraySettings();
|
|
|
|
var result = await _navigationService.Navigate<XrayEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
Records.Add(result);
|
|
SaveToJson();
|
|
}
|
|
|
|
public async Task AddTrojanGoRecord()
|
|
{
|
|
Record record = new Record();
|
|
record.Id = Utils.GetTickID();
|
|
record.Host = new Host();
|
|
record.TrojanGoSettings = new TrojanGoSettings();
|
|
|
|
var result = await _navigationService.Navigate<TrojanGoEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
Records.Add(result);
|
|
|
|
SaveToJson();
|
|
}
|
|
|
|
public async Task AddNaiveProxyRecord()
|
|
{
|
|
Record record = new Record();
|
|
record.Id = Utils.GetTickID();
|
|
record.Host = new Host();
|
|
record.NaiveProxySettings = new NaiveProxySettings();
|
|
|
|
var result = await _navigationService.Navigate<NaiveProxyEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
Records.Add(result);
|
|
|
|
SaveToJson();
|
|
}
|
|
|
|
public async Task AddBrookRecord()
|
|
{
|
|
Record record = new Record();
|
|
record.Id = Utils.GetTickID();
|
|
record.Host = new Host();
|
|
record.BrookSettings = new BrookSettings();
|
|
|
|
var result = await _navigationService.Navigate<BrookEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
Records.Add(result);
|
|
|
|
SaveToJson();
|
|
}
|
|
|
|
|
|
public async Task EditRecord(string id)
|
|
{
|
|
var record = Records.FirstOrDefault(x => x.Id == id);
|
|
if (record == null) return;
|
|
|
|
Record result = null;
|
|
if (record.Type == ProjectType.Xray)
|
|
{
|
|
result = await _navigationService.Navigate<XrayEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
record.Host = result.Host;
|
|
record.XraySettings = result.XraySettings;
|
|
}
|
|
if (record.Type == ProjectType.TrojanGo)
|
|
{
|
|
result = await _navigationService.Navigate<TrojanGoEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
record.Host = result.Host;
|
|
record.TrojanGoSettings = result.TrojanGoSettings;
|
|
}
|
|
if (record.Type == ProjectType.NaiveProxy)
|
|
{
|
|
result = await _navigationService.Navigate<NaiveProxyEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
record.Host = result.Host;
|
|
record.NaiveProxySettings = result.NaiveProxySettings;
|
|
}
|
|
if (record.Type == ProjectType.Brook)
|
|
{
|
|
result = await _navigationService.Navigate<BrookEditorViewModel, Record, Record>(record);
|
|
if (result == null) return;
|
|
|
|
record.Host = result.Host;
|
|
record.BrookSettings = result.BrookSettings;
|
|
}
|
|
|
|
SaveToJson();
|
|
}
|
|
|
|
public async Task DeleteRecord(string id)
|
|
{
|
|
var result = MessageBox.Show($"您确认删除主机吗?", "提示", MessageBoxButton.OKCancel);
|
|
if (result == MessageBoxResult.OK)
|
|
{
|
|
var record = Records.FirstOrDefault(x => x.Id == id);
|
|
if (record != null)
|
|
{
|
|
Records.Remove(record);
|
|
SaveToJson();
|
|
}
|
|
}
|
|
await Task.CompletedTask;
|
|
}
|
|
|
|
public async Task ViewConfig(string id)
|
|
{
|
|
var record = Records.FirstOrDefault(x => x.Id == id);
|
|
if (record == null) return;
|
|
|
|
if (record.Type == ProjectType.Xray)
|
|
{
|
|
await _navigationService.Navigate<XrayConfigViewModel, XraySettings>(record.XraySettings);
|
|
}
|
|
if (record.Type == ProjectType.TrojanGo)
|
|
{
|
|
await _navigationService.Navigate<TrojanGoConfigViewModel, TrojanGoSettings>(record.TrojanGoSettings);
|
|
}
|
|
if (record.Type == ProjectType.NaiveProxy)
|
|
{
|
|
await _navigationService.Navigate<NaiveProxyConfigViewModel, NaiveProxySettings>(record.NaiveProxySettings);
|
|
}
|
|
}
|
|
|
|
public async Task GoToInstall(string id)
|
|
{
|
|
var record = Records.FirstOrDefault(x => x.Id == id);
|
|
if (record == null) return;
|
|
|
|
if (record.Type == ProjectType.Xray)
|
|
{
|
|
await _navigationService.Navigate<XrayInstallerViewModel, Record>(record);
|
|
}
|
|
if (record.Type == ProjectType.TrojanGo)
|
|
{
|
|
await _navigationService.Navigate<TrojanGoInstallerViewModel, Record>(record);
|
|
}
|
|
if (record.Type == ProjectType.NaiveProxy)
|
|
{
|
|
await _navigationService.Navigate<NaiveProxyInstallerViewModel, Record>(record);
|
|
}
|
|
if (record.Type == ProjectType.Brook)
|
|
{
|
|
await _navigationService.Navigate<BrookInstallerViewModel, Record>(record);
|
|
}
|
|
}
|
|
}
|
|
}
|