12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- using System;
- using System.IO;
- using System.Linq;
- using System.Net;
- using System.Net.Http;
- using System.Threading.Tasks;
- namespace PixiEditor.UpdateModule
- {
- public static class UpdateDownloader
- {
- public static string DownloadLocation = Path.Join(Path.GetTempPath(), "PixiEditor");
- public static async Task DownloadReleaseZip(ReleaseInfo release)
- {
- Asset matchingAsset = GetMatchingAsset(release);
- using (HttpClient client = new HttpClient())
- {
- client.DefaultRequestHeaders.Add("User-Agent", "PixiEditor");
- client.DefaultRequestHeaders.Add("Accept", "application/octet-stream");
- var response = await client.GetAsync(matchingAsset.Url);
- if (response.StatusCode == HttpStatusCode.OK)
- {
- byte[] bytes = await response.Content.ReadAsByteArrayAsync();
- CreateTempDirectory();
- File.WriteAllBytes(Path.Join(DownloadLocation, $"update-{release.TagName}.zip"), bytes);
- }
- }
- }
- public static void CreateTempDirectory()
- {
- if (!Directory.Exists(DownloadLocation))
- {
- Directory.CreateDirectory(DownloadLocation);
- }
- }
- private static Asset GetMatchingAsset(ReleaseInfo release)
- {
- string arch = IntPtr.Size == 8 ? "x64" : "x86";
- return release.Assets.First(x => x.ContentType.Contains("zip")
- && x.Name.Contains(arch));
- }
- }
- }
|