mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
329 lines
12 KiB
C#
329 lines
12 KiB
C#
using GHelper.UI;
|
|
using System.Diagnostics;
|
|
using System.Management;
|
|
using System.Net;
|
|
using System.Text.Json;
|
|
|
|
namespace GHelper
|
|
{
|
|
|
|
public partial class Updates : RForm
|
|
{
|
|
const int DRIVER_NOT_FOUND = 2;
|
|
const int DRIVER_NEWER = 1;
|
|
|
|
//static int rowCount = 0;
|
|
static string bios;
|
|
static string model;
|
|
|
|
static int updatesCount = 0;
|
|
private static long lastUpdate;
|
|
public struct DriverDownload
|
|
{
|
|
public string categoryName;
|
|
public string title;
|
|
public string version;
|
|
public string downloadUrl;
|
|
public string date;
|
|
public JsonElement hardwares;
|
|
}
|
|
private void LoadUpdates(bool force = false)
|
|
{
|
|
|
|
if (!force && (Math.Abs(DateTimeOffset.Now.ToUnixTimeMilliseconds() - lastUpdate) < 5000)) return;
|
|
lastUpdate = DateTimeOffset.Now.ToUnixTimeMilliseconds();
|
|
|
|
(bios, model) = AppConfig.GetBiosAndModel();
|
|
|
|
buttonRefresh.TabStop = false;
|
|
|
|
updatesCount = 0;
|
|
labelUpdates.ForeColor = colorEco;
|
|
labelUpdates.Text = Properties.Strings.NoNewUpdates;
|
|
|
|
panelBios.AccessibleRole = AccessibleRole.Grouping;
|
|
panelBios.AccessibleName = Properties.Strings.NoNewUpdates;
|
|
panelBios.TabStop = true;
|
|
|
|
Text = Properties.Strings.BiosAndDriverUpdates + ": " + model + " " + bios;
|
|
labelBIOS.Text = "BIOS";
|
|
labelDrivers.Text = Properties.Strings.DriverAndSoftware;
|
|
|
|
SuspendLayout();
|
|
|
|
tableBios.Visible = false;
|
|
tableDrivers.Visible = false;
|
|
|
|
ClearTable(tableBios);
|
|
ClearTable(tableDrivers);
|
|
|
|
Task.Run(async () =>
|
|
{
|
|
DriversAsync($"https://rog.asus.com/support/webapi/product/GetPDBIOS?website=global&model={model}&cpu={model}", 1, tableBios);
|
|
});
|
|
|
|
Task.Run(async () =>
|
|
{
|
|
DriversAsync($"https://rog.asus.com/support/webapi/product/GetPDDrivers?website=global&model={model}&cpu={model}&osid=52", 0, tableDrivers);
|
|
});
|
|
}
|
|
|
|
private void ClearTable(TableLayoutPanel tableLayoutPanel)
|
|
{
|
|
while (tableLayoutPanel.Controls.Count > 0)
|
|
{
|
|
tableLayoutPanel.Controls[0].Dispose();
|
|
}
|
|
|
|
tableLayoutPanel.RowCount = 0;
|
|
}
|
|
|
|
public Updates()
|
|
{
|
|
InitializeComponent();
|
|
InitTheme(true);
|
|
|
|
//buttonRefresh.Visible = false;
|
|
buttonRefresh.Click += ButtonRefresh_Click;
|
|
Shown += Updates_Shown;
|
|
}
|
|
|
|
|
|
private void ButtonRefresh_Click(object? sender, EventArgs e)
|
|
{
|
|
LoadUpdates();
|
|
}
|
|
|
|
private void Updates_Shown(object? sender, EventArgs e)
|
|
{
|
|
Height = Program.settingsForm.Height;
|
|
Top = Program.settingsForm.Top;
|
|
Left = Program.settingsForm.Left - Width - 5;
|
|
LoadUpdates(true);
|
|
}
|
|
|
|
|
|
|
|
private Dictionary<string, string> GetDeviceVersions()
|
|
{
|
|
using (ManagementObjectSearcher objSearcher = new ManagementObjectSearcher("Select * from Win32_PnPSignedDriver"))
|
|
{
|
|
using (ManagementObjectCollection objCollection = objSearcher.Get())
|
|
{
|
|
Dictionary<string, string> list = new();
|
|
|
|
foreach (ManagementObject obj in objCollection)
|
|
{
|
|
if (obj["DeviceID"] is not null && obj["DriverVersion"] is not null)
|
|
list[obj["DeviceID"].ToString()] = obj["DriverVersion"].ToString();
|
|
}
|
|
|
|
return list;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
public void VisualiseDriver(DriverDownload driver, TableLayoutPanel table)
|
|
{
|
|
Invoke(delegate
|
|
{
|
|
string versionText = driver.version.Replace("latest version at the ", "");
|
|
LinkLabel versionLabel = new LinkLabel { Text = versionText, Anchor = AnchorStyles.Left, AutoSize = true };
|
|
|
|
versionLabel.AccessibleName = driver.title;
|
|
versionLabel.TabStop = true;
|
|
versionLabel.TabIndex = table.RowCount + 1;
|
|
|
|
versionLabel.Cursor = Cursors.Hand;
|
|
versionLabel.Font = new Font(versionLabel.Font, FontStyle.Underline);
|
|
versionLabel.LinkColor = colorEco;
|
|
versionLabel.Padding = new Padding(5, 5, 5, 5);
|
|
versionLabel.LinkClicked += delegate
|
|
{
|
|
Process.Start(new ProcessStartInfo(driver.downloadUrl) { UseShellExecute = true });
|
|
};
|
|
|
|
table.RowStyles.Add(new RowStyle(SizeType.AutoSize));
|
|
table.Controls.Add(new Label { Text = driver.categoryName, Anchor = AnchorStyles.Left, Dock = DockStyle.Fill, Padding = new Padding(5, 5, 5, 5) }, 0, table.RowCount);
|
|
table.Controls.Add(new Label { Text = driver.title, Anchor = AnchorStyles.Left, Dock = DockStyle.Fill, Padding = new Padding(5, 5, 5, 5) }, 1, table.RowCount);
|
|
table.Controls.Add(new Label { Text = driver.date, Anchor = AnchorStyles.Left, Dock = DockStyle.Fill, Padding = new Padding(5, 5, 5, 5) }, 2, table.RowCount);
|
|
table.Controls.Add(versionLabel, 3, table.RowCount);
|
|
table.RowCount++;
|
|
});
|
|
}
|
|
|
|
public void ShowTable(TableLayoutPanel table)
|
|
{
|
|
Invoke(delegate
|
|
{
|
|
table.Visible = true;
|
|
ResumeLayout(false);
|
|
PerformLayout();
|
|
});
|
|
}
|
|
|
|
private void _VisualiseNewDriver(int position, int newer, TableLayoutPanel table)
|
|
{
|
|
var label = table.GetControlFromPosition(3, position) as LinkLabel;
|
|
if (label != null)
|
|
{
|
|
if (newer == DRIVER_NEWER)
|
|
{
|
|
label.AccessibleName = label.AccessibleName + Properties.Strings.NewUpdates;
|
|
label.Font = new Font(label.Font, FontStyle.Underline | FontStyle.Bold);
|
|
label.LinkColor = colorTurbo;
|
|
}
|
|
|
|
if (newer == DRIVER_NOT_FOUND) label.LinkColor = Color.Gray;
|
|
|
|
}
|
|
}
|
|
|
|
public void VisualiseNewDriver(int position, int newer, TableLayoutPanel table)
|
|
{
|
|
if (InvokeRequired)
|
|
{
|
|
Invoke(delegate
|
|
{
|
|
_VisualiseNewDriver(position, newer, table);
|
|
});
|
|
}
|
|
else
|
|
{
|
|
_VisualiseNewDriver(position, newer, table);
|
|
}
|
|
|
|
}
|
|
|
|
public void VisualiseNewCount(int updatesCount, TableLayoutPanel table)
|
|
{
|
|
Invoke(delegate
|
|
{
|
|
labelUpdates.Text = $"{Properties.Strings.NewUpdates}: {updatesCount}";
|
|
labelUpdates.ForeColor = colorTurbo;
|
|
labelUpdates.Font = new Font(labelUpdates.Font, FontStyle.Bold);
|
|
|
|
panelBios.AccessibleName = labelUpdates.Text;
|
|
|
|
});
|
|
}
|
|
|
|
|
|
static string CleanupDeviceId(string input)
|
|
{
|
|
int index = input.IndexOf("&REV_");
|
|
if (index != -1)
|
|
{
|
|
return input.Substring(0, index);
|
|
}
|
|
return input;
|
|
}
|
|
|
|
public async void DriversAsync(string url, int type, TableLayoutPanel table)
|
|
{
|
|
|
|
try
|
|
{
|
|
using (var httpClient = new HttpClient(new HttpClientHandler
|
|
{
|
|
AutomaticDecompression = DecompressionMethods.All
|
|
}))
|
|
{
|
|
httpClient.DefaultRequestHeaders.AcceptEncoding.ParseAdd("gzip, deflate, br");
|
|
httpClient.DefaultRequestHeaders.Add("User-Agent", "C# App");
|
|
var json = await httpClient.GetStringAsync(url);
|
|
|
|
var data = JsonSerializer.Deserialize<JsonElement>(json);
|
|
var groups = data.GetProperty("Result").GetProperty("Obj");
|
|
|
|
|
|
List<string> skipList = new() { "Armoury Crate & Aura Creator Installer", "MyASUS", "ASUS Smart Display Control", "Aura Wallpaper", "Virtual Pet", "ROG Font V1.5" };
|
|
List<DriverDownload> drivers = new();
|
|
|
|
for (int i = 0; i < groups.GetArrayLength(); i++)
|
|
{
|
|
var categoryName = groups[i].GetProperty("Name").ToString();
|
|
var files = groups[i].GetProperty("Files");
|
|
|
|
var oldTitle = "";
|
|
|
|
for (int j = 0; j < files.GetArrayLength(); j++)
|
|
{
|
|
|
|
var file = files[j];
|
|
var title = file.GetProperty("Title").ToString();
|
|
|
|
if (oldTitle != title && !skipList.Contains(title))
|
|
{
|
|
|
|
var driver = new DriverDownload();
|
|
driver.categoryName = categoryName;
|
|
driver.title = title;
|
|
driver.version = file.GetProperty("Version").ToString().Replace("V", "");
|
|
driver.downloadUrl = file.GetProperty("DownloadUrl").GetProperty("Global").ToString();
|
|
driver.hardwares = file.GetProperty("HardwareInfoList");
|
|
driver.date = file.GetProperty("ReleaseDate").ToString();
|
|
drivers.Add(driver);
|
|
|
|
VisualiseDriver(driver, table);
|
|
}
|
|
|
|
oldTitle = title;
|
|
}
|
|
}
|
|
|
|
ShowTable(table);
|
|
|
|
|
|
Dictionary<string, string> devices = new();
|
|
if (type == 0) devices = GetDeviceVersions();
|
|
|
|
//Debug.WriteLine(biosVersion);
|
|
|
|
int count = 0;
|
|
foreach (var driver in drivers)
|
|
{
|
|
int newer = DRIVER_NOT_FOUND;
|
|
if (type == 0 && driver.hardwares.ToString().Length > 0)
|
|
for (int k = 0; k < driver.hardwares.GetArrayLength(); k++)
|
|
{
|
|
var deviceID = driver.hardwares[k].GetProperty("hardwareid").ToString();
|
|
deviceID = CleanupDeviceId(deviceID);
|
|
var localVersions = devices.Where(p => p.Key.Contains(deviceID, StringComparison.CurrentCultureIgnoreCase)).Select(p => p.Value);
|
|
foreach (var localVersion in localVersions)
|
|
{
|
|
newer = Math.Min(newer, new Version(driver.version).CompareTo(new Version(localVersion)));
|
|
Logger.WriteLine(driver.title + " " + deviceID + " " + driver.version + " vs " + localVersion + " = " + newer);
|
|
}
|
|
|
|
}
|
|
|
|
if (type == 1)
|
|
newer = Int32.Parse(driver.version) > Int32.Parse(bios) ? 1 : -1;
|
|
|
|
VisualiseNewDriver(count, newer, table);
|
|
|
|
if (newer == DRIVER_NEWER)
|
|
{
|
|
updatesCount++;
|
|
VisualiseNewCount(updatesCount, table);
|
|
}
|
|
|
|
count++;
|
|
}
|
|
|
|
GC.Collect();
|
|
GC.WaitForPendingFinalizers();
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Logger.WriteLine(ex.ToString());
|
|
|
|
}
|
|
|
|
}
|
|
}
|
|
}
|