1
0
mirror of synced 2024-09-24 11:38:22 +02:00
Switch-Toolbox/Toolbox/UpdateProgram.cs
2019-05-14 17:47:57 -04:00

127 lines
4.4 KiB
C#

using System;
using System.Linq;
using System.Collections.Generic;
using System.Threading.Tasks;
using Octokit;
using System.IO;
using System.Diagnostics;
using System.Security.Cryptography;
using Switch_Toolbox.Library;
namespace Toolbox
{
public class UpdateProgram
{
static Release[] releases;
public static bool CanUpdate = false;
public static bool Downloaded = false;
public static Release LatestRelease;
public static List<GitHubCommit> CommitList = new List<GitHubCommit>();
public static DateTime LatestReleaseTime;
public static void CheckLatest()
{
try
{
var client = new GitHubClient(new ProductHeaderValue("ST_UpdateTool"));
GetReleases(client).Wait();
GetCommits(client).Wait();
foreach (Release latest in releases)
{
Console.WriteLine(
"The latest release is tagged at {0} and is named {1} commit {2} date {3}",
latest.TagName,
latest.Name,
latest.TargetCommitish,
latest.Assets[0].UpdatedAt.ToString());
if (Runtime.CompileDate != latest.Assets[0].UpdatedAt.ToString())
{
// LatestReleaseTime = latest.Assets[0].UpdatedAt.DateTime;
// LatestRelease = latest;
// CanUpdate = true;
DownloadRelease();
if (CanUpdate)
{
LatestReleaseTime = latest.Assets[0].UpdatedAt.DateTime;
LatestRelease = latest;
}
else
{
}
}
break;
}
}
catch (Exception ex)
{
Console.WriteLine($"Failed to get latest update\n{ex.ToString()}");
}
}
static void DownloadRelease()
{
ProcessStartInfo p = new ProcessStartInfo();
p.WindowStyle = ProcessWindowStyle.Hidden;
p.CreateNoWindow = true;
p.FileName = Path.Combine(Runtime.ExecutableDir, "Updater.exe");
p.WorkingDirectory = Path.Combine(Runtime.ExecutableDir, "updater/");
Console.WriteLine($"Updater: {p.FileName}");
p.Arguments = "-d";
Process process = new Process();
process.StartInfo = p;
Console.WriteLine("Downloading...");
process.Start();
process.WaitForExit();
if (process.ExitCode != 0)
throw new TimeoutException();
Console.WriteLine("Finished downloading");
string updateExe = Path.Combine(Runtime.ExecutableDir, "master\\Toolbox.exe"),
currentExe = System.Reflection.Assembly.GetEntryAssembly().Location;
if (!Utils.CreateMD5Hash(currentExe).SequenceEqual(Utils.CreateMD5Hash(updateExe)))
CanUpdate = true;
}
static async Task GetCommits(GitHubClient client)
{
var options = new ApiOptions
{
PageSize = 20,
PageCount = 1
};
DateTimeOffset CurrentRelease;
bool IsValidTime = DateTimeOffset.TryParse(Runtime.CompileDate, out CurrentRelease);
foreach (GitHubCommit c in await client.Repository.Commit.GetAll("KillzXGaming", "Switch-Toolbox", options))
{
if (IsValidTime)
{
if (CurrentRelease.DateTime < c.Commit.Author.Date.DateTime)
CommitList.Add(c);
else
break;
}
else
{
//Just add extra commits. This shouldn't happen unless the user actually edits the file
CommitList.Add(c);
}
}
}
static async Task GetReleases(GitHubClient client)
{
List<Release> Releases = new List<Release>();
foreach (Release r in await client.Repository.Release.GetAll("KillzXGaming", "Switch-Toolbox"))
Releases.Add(r);
releases = Releases.ToArray();
}
}
}