1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-22 21:26:09 +03:00
ProxySU/ProxySuper.Core/ViewModels/V2rayInstallViewModel.cs

89 lines
2.4 KiB
C#
Raw Normal View History

2021-08-20 06:52:45 +03:00
using MvvmCross.Commands;
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.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ProxySuper.Core.ViewModels
{
public class V2rayInstallViewModel : MvxViewModel<Record>
{
Host _host;
V2raySettings _settings;
V2rayService _service;
public override void ViewDestroy(bool viewFinishing = true)
{
_service.Disconnect();
this.SaveInstallLog();
base.ViewDestroy(viewFinishing);
}
public override void Prepare(Record parameter)
{
this._host = parameter.Host;
this._settings = parameter.V2raySettings;
}
public override Task Initialize()
{
_service = new V2rayService(_host, _settings);
_service.Progress.StepUpdate = () => RaisePropertyChanged("Progress");
_service.Progress.LogsUpdate = () => RaisePropertyChanged("Logs");
_service.Connect();
return base.Initialize();
}
public ProjectProgress Progress
{
get => _service.Progress;
}
public string Logs
{
get => _service.Progress.Logs;
}
#region Command
public IMvxCommand InstallCommand => new MvxCommand(_service.Install);
public IMvxCommand UpdateSettingsCommand => new MvxCommand(_service.UpdateSettings);
public IMvxCommand UpdateV2rayCoreCommand => new MvxCommand(_service.UpdateV2rayCore);
public IMvxCommand UninstallCommand => new MvxCommand(_service.Uninstall);
public IMvxCommand UploadCertCommand => new MvxCommand(_service.UploadCert);
public IMvxCommand UploadWebCommand => new MvxCommand(_service.UploadWeb);
public IMvxCommand ApplyForCertCommand => new MvxCommand(_service.ApplyForCert);
#endregion
private void SaveInstallLog()
{
if (!Directory.Exists("Logs"))
{
Directory.CreateDirectory("Logs");
}
2021-08-23 07:00:39 +03:00
var fileName = Path.Combine("Logs", DateTime.Now.ToString("yyyy-MM-dd hh-mm") + ".v2ray.txt");
2021-08-20 06:52:45 +03:00
File.WriteAllText(fileName, Logs);
}
}
}