2020-02-07 04:20:49 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.ComponentModel;
|
|
|
|
|
using System.Diagnostics;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.IO.Compression;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
using System.Threading.Tasks;
|
2020-02-08 00:22:20 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2020-02-07 04:20:49 +00:00
|
|
|
|
using Wabbajack.Launcher.Annotations;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Launcher
|
|
|
|
|
{
|
|
|
|
|
public class MainWindowVM : INotifyPropertyChanged
|
|
|
|
|
{
|
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
2020-02-08 00:22:20 +00:00
|
|
|
|
private WebClient _client = new WebClient();
|
2020-02-08 05:31:50 +00:00
|
|
|
|
public Uri GITHUB_REPO = new Uri("https://api.github.com/repos/wabbajack-tools/wabbajack/releases");
|
2020-02-08 00:22:20 +00:00
|
|
|
|
|
2020-02-07 04:20:49 +00:00
|
|
|
|
|
|
|
|
|
[NotifyPropertyChangedInvocator]
|
|
|
|
|
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
|
|
|
|
|
{
|
|
|
|
|
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string _status = "Checking for Updates";
|
2020-02-08 00:22:20 +00:00
|
|
|
|
private Release _version;
|
2020-02-07 04:20:49 +00:00
|
|
|
|
|
|
|
|
|
public string Status
|
|
|
|
|
{
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
_status = value;
|
|
|
|
|
OnPropertyChanged("Status");
|
|
|
|
|
}
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _status;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public MainWindowVM()
|
|
|
|
|
{
|
|
|
|
|
Task.Run(CheckForUpdates);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task CheckForUpdates()
|
|
|
|
|
{
|
2020-02-08 00:22:20 +00:00
|
|
|
|
_client.Headers.Add ("user-agent", "Wabbajack Launcher");
|
|
|
|
|
Status = "Selecting Release";
|
2020-02-07 04:20:49 +00:00
|
|
|
|
|
2020-02-08 00:22:20 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var releases = await GetReleases();
|
|
|
|
|
_version = releases.OrderByDescending(r =>
|
|
|
|
|
{
|
2020-02-08 06:05:33 +00:00
|
|
|
|
if (r.Tag.Split(".").Length == 4 && Version.TryParse(r.Tag, out var v))
|
2020-02-08 00:22:20 +00:00
|
|
|
|
return v;
|
|
|
|
|
return new Version(0, 0, 0, 0);
|
|
|
|
|
}).FirstOrDefault();
|
|
|
|
|
}
|
2020-03-28 13:33:39 +00:00
|
|
|
|
catch (Exception)
|
2020-02-08 00:22:20 +00:00
|
|
|
|
{
|
|
|
|
|
FinishAndExit();
|
|
|
|
|
}
|
2020-02-07 04:20:49 +00:00
|
|
|
|
|
2020-02-08 00:22:20 +00:00
|
|
|
|
if (_version == null)
|
|
|
|
|
FinishAndExit();
|
|
|
|
|
|
|
|
|
|
Status = "Looking for Updates";
|
|
|
|
|
|
|
|
|
|
var base_folder = Path.Combine(Directory.GetCurrentDirectory(), _version.Tag);
|
|
|
|
|
|
|
|
|
|
if (File.Exists(Path.Combine(base_folder, "Wabbajack.exe")))
|
|
|
|
|
FinishAndExit();
|
|
|
|
|
|
|
|
|
|
var asset = _version.Assets.FirstOrDefault(a => a.Name == _version.Tag + ".zip");
|
|
|
|
|
if (asset == null)
|
2020-02-07 04:20:49 +00:00
|
|
|
|
FinishAndExit();
|
|
|
|
|
|
|
|
|
|
var wc = new WebClient();
|
|
|
|
|
wc.DownloadProgressChanged += UpdateProgress;
|
2020-02-08 00:22:20 +00:00
|
|
|
|
Status = $"Downloading {_version.Tag} ...";
|
|
|
|
|
var data = await wc.DownloadDataTaskAsync(asset.BrowserDownloadUrl);
|
2020-02-07 04:20:49 +00:00
|
|
|
|
|
|
|
|
|
using (var zip = new ZipArchive(new MemoryStream(data), ZipArchiveMode.Read))
|
|
|
|
|
{
|
|
|
|
|
foreach (var entry in zip.Entries)
|
|
|
|
|
{
|
|
|
|
|
Status = $"Extracting: {entry.Name}";
|
|
|
|
|
var outPath = Path.Combine(base_folder, entry.FullName);
|
|
|
|
|
if (!Directory.Exists(Path.GetDirectoryName(outPath)))
|
|
|
|
|
Directory.CreateDirectory(Path.GetDirectoryName(outPath));
|
|
|
|
|
|
|
|
|
|
if (entry.FullName.EndsWith("/") || entry.FullName.EndsWith("\\"))
|
|
|
|
|
continue;
|
|
|
|
|
await using var o = entry.Open();
|
|
|
|
|
await using var of = File.Create(outPath);
|
|
|
|
|
await o.CopyToAsync(of);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
FinishAndExit();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void FinishAndExit()
|
|
|
|
|
{
|
|
|
|
|
Status = "Launching...";
|
2020-02-08 00:22:20 +00:00
|
|
|
|
var wjFolder = Directory.EnumerateDirectories(Directory.GetCurrentDirectory())
|
|
|
|
|
.OrderByDescending(v =>
|
|
|
|
|
Version.TryParse(Path.GetFileName(v), out var ver) ? ver : new Version(0, 0, 0, 0))
|
|
|
|
|
.FirstOrDefault();
|
2020-02-07 04:20:49 +00:00
|
|
|
|
var info = new ProcessStartInfo
|
|
|
|
|
{
|
2020-02-08 00:22:20 +00:00
|
|
|
|
FileName = Path.Combine(wjFolder, "Wabbajack.exe"),
|
|
|
|
|
WorkingDirectory = wjFolder,
|
2020-02-07 04:20:49 +00:00
|
|
|
|
};
|
|
|
|
|
Process.Start(info);
|
|
|
|
|
Environment.Exit(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateProgress(object sender, DownloadProgressChangedEventArgs e)
|
|
|
|
|
{
|
2020-02-08 00:22:20 +00:00
|
|
|
|
Status = $"Downloading {_version.Tag} ({e.ProgressPercentage}%)...";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task<Release[]> GetReleases()
|
|
|
|
|
{
|
|
|
|
|
Status = "Checking GitHub Repository";
|
|
|
|
|
var data = await _client.DownloadStringTaskAsync(GITHUB_REPO);
|
|
|
|
|
Status = "Parsing Response";
|
|
|
|
|
return JsonConvert.DeserializeObject<Release[]>(data);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class Release
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("tag_name")]
|
|
|
|
|
public string Tag { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("assets")]
|
|
|
|
|
public Asset[] Assets { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
class Asset
|
|
|
|
|
{
|
|
|
|
|
[JsonProperty("browser_download_url")]
|
|
|
|
|
public Uri BrowserDownloadUrl { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonProperty("name")]
|
|
|
|
|
public string Name { get; set; }
|
2020-02-07 04:20:49 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|