2021-02-14 09:02:02 -05:00
|
|
|
using System;
|
|
|
|
using System.Net.Http;
|
2020-12-28 09:27:37 -05:00
|
|
|
using System.Threading.Tasks;
|
2021-02-14 09:02:02 -05:00
|
|
|
using System.Windows;
|
2020-12-28 09:27:37 -05:00
|
|
|
using auto_creamapi.Messenger;
|
|
|
|
using auto_creamapi.Services;
|
|
|
|
using auto_creamapi.Utils;
|
|
|
|
using MvvmCross.Logging;
|
|
|
|
using MvvmCross.Navigation;
|
|
|
|
using MvvmCross.Plugin.Messenger;
|
|
|
|
using MvvmCross.ViewModels;
|
|
|
|
|
|
|
|
namespace auto_creamapi.ViewModels
|
|
|
|
{
|
2021-01-13 07:04:35 -05:00
|
|
|
|
2020-12-28 09:27:37 -05:00
|
|
|
public class DownloadViewModel : MvxNavigationViewModel
|
|
|
|
{
|
|
|
|
private readonly IDownloadCreamApiService _download;
|
|
|
|
private readonly IMvxNavigationService _navigationService;
|
|
|
|
private readonly MvxSubscriptionToken _token;
|
|
|
|
private string _filename;
|
|
|
|
|
|
|
|
private string _info;
|
|
|
|
private double _progress;
|
|
|
|
|
|
|
|
public DownloadViewModel(IMvxLogProvider logProvider, IMvxNavigationService navigationService,
|
|
|
|
IDownloadCreamApiService download, IMvxMessenger messenger) : base(logProvider, navigationService)
|
|
|
|
{
|
|
|
|
_navigationService = navigationService;
|
|
|
|
_download = download;
|
|
|
|
_token = messenger.Subscribe<ProgressMessage>(OnProgressMessage);
|
2021-02-14 09:02:02 -05:00
|
|
|
MyLogger.Log.Debug("{Count}", messenger.CountSubscriptionsFor<ProgressMessage>());
|
2020-12-28 09:27:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public string InfoLabel
|
|
|
|
{
|
|
|
|
get => _info;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_info = value;
|
|
|
|
RaisePropertyChanged(() => InfoLabel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public string FilenameLabel
|
|
|
|
{
|
|
|
|
get => _filename;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_filename = value;
|
|
|
|
RaisePropertyChanged(() => FilenameLabel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public double Progress
|
|
|
|
{
|
|
|
|
get => _progress;
|
|
|
|
set
|
|
|
|
{
|
|
|
|
_progress = value;
|
|
|
|
RaisePropertyChanged(() => Progress);
|
|
|
|
RaisePropertyChanged(() => ProgressPercent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public string ProgressPercent => _progress.ToString("P2");
|
|
|
|
|
2021-02-14 09:02:02 -05:00
|
|
|
public override void Prepare()
|
2020-12-28 09:27:37 -05:00
|
|
|
{
|
|
|
|
InfoLabel = "Please wait...";
|
|
|
|
FilenameLabel = "";
|
|
|
|
Progress = 0.0;
|
2021-02-14 09:02:02 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
public override async Task Initialize()
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
await base.Initialize().ConfigureAwait(false);
|
|
|
|
var download = _download.Download(Secrets.ForumUsername, Secrets.ForumPassword);
|
|
|
|
var filename = await download.ConfigureAwait(false);
|
|
|
|
/*var extract = _download.Extract(filename);
|
|
|
|
await extract;*/
|
|
|
|
var extract = _download.Extract(filename);
|
|
|
|
await extract.ConfigureAwait(false);
|
|
|
|
_token.Dispose();
|
|
|
|
await _navigationService.Close(this).ConfigureAwait(false);
|
|
|
|
}
|
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
MessageBox.Show("Could not download CreamAPI!\nPlease add CreamAPI DLLs manually!\nShutting down...",
|
|
|
|
"Error", MessageBoxButton.OK, MessageBoxImage.Error);
|
|
|
|
_token.Dispose();
|
|
|
|
await _navigationService.Close(this).ConfigureAwait(false);
|
|
|
|
Console.WriteLine(e);
|
|
|
|
throw;
|
|
|
|
}
|
2020-12-28 09:27:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
private void OnProgressMessage(ProgressMessage obj)
|
|
|
|
{
|
|
|
|
//MyLogger.Log.Debug($"{obj.Filename}: {obj.BytesTransferred}");
|
|
|
|
InfoLabel = obj.Info;
|
|
|
|
FilenameLabel = obj.Filename;
|
|
|
|
Progress = obj.PercentComplete;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|