auto reinstall of vc redist when CEF dies in a expected way (#835)

This commit is contained in:
Myrkur
2024-06-26 08:10:05 -04:00
committed by GitHub
parent 880cfe963f
commit d5ef12a99b
2 changed files with 114 additions and 1 deletions

View File

@@ -8,6 +8,7 @@ using System;
using System.IO;
using System.Windows.Forms;
using System.Diagnostics;
using System.Net.Http;
namespace VRCX
{
@@ -55,5 +56,89 @@ namespace VRCX
MessageBox.Show(e.ToString(), "Update failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
public static void DownloadInstallRedist()
{
try
{
var filePath = DownloadFile("https://aka.ms/vs/17/release/vc_redist.x64.exe");
var installRedist = new Process
{
StartInfo = new ProcessStartInfo
{
FileName = filePath,
Arguments = "/install /quiet /norestart"
}
};
installRedist.Start();
installRedist.WaitForExit();
}
catch (Exception e)
{
MessageBox.Show(e.ToString(), "Update failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
private static string DownloadFile(string fileUrl)
{
HttpClient client = new HttpClient();
try
{
HttpResponseMessage response = client.GetAsync(fileUrl).Result;
if (response.IsSuccessStatusCode)
{
string fileName = GetFileNameFromContentDisposition(response);
string tempPath = Path.Combine(Path.GetTempPath(), "VRCX");
Directory.CreateDirectory(tempPath);
string filePath = Path.Combine(tempPath, fileName);
using (FileStream fileStream = File.Create(filePath))
{
response.Content.CopyToAsync(fileStream).Wait();
}
return filePath;
}
else
{
throw new Exception($"Failed to download the file. Status code: {response.StatusCode}");
}
}
catch (Exception ex)
{
throw new Exception($"Error downloading the file: {ex.Message}");
}
finally
{
client.Dispose();
}
}
private static string GetFileNameFromContentDisposition(HttpResponseMessage response)
{
string contentDisposition = response.Content.Headers.ContentDisposition?.ToString();
if (contentDisposition != null)
{
int startIndex = contentDisposition.IndexOf("filename=", StringComparison.OrdinalIgnoreCase);
if (startIndex >= 0)
{
startIndex += "filename=".Length;
int endIndex = contentDisposition.IndexOf(";", startIndex);
if (endIndex == -1)
{
endIndex = contentDisposition.Length;
}
string fileName = contentDisposition.Substring(startIndex, endIndex - startIndex).Trim(' ', '"');
return fileName;
}
}
throw new Exception("Unable to extract file name from content-disposition header.");
}
}
}