Added SQLite support
This commit is contained in:
parent
19f460d12d
commit
bc19e79d69
@ -12,6 +12,7 @@
|
|||||||
<PackageReference Include="MvvmCross" Version="7.1.2" />
|
<PackageReference Include="MvvmCross" Version="7.1.2" />
|
||||||
<PackageReference Include="NinjaNye.SearchExtensions" Version="3.0.1" />
|
<PackageReference Include="NinjaNye.SearchExtensions" Version="3.0.1" />
|
||||||
<PackageReference Include="SharpCompress" Version="0.26.0" />
|
<PackageReference Include="SharpCompress" Version="0.26.0" />
|
||||||
|
<PackageReference Include="sqlite-net-pcl" Version="1.7.335" />
|
||||||
<PackageReference Include="SteamStorefrontAPI.NETStandard" Version="1.0.0" />
|
<PackageReference Include="SteamStorefrontAPI.NETStandard" Version="1.0.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
@ -2,6 +2,7 @@ using System.Collections.Generic;
|
|||||||
using System.Text.Json.Serialization;
|
using System.Text.Json.Serialization;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using GoldbergGUI.Core.Utils;
|
using GoldbergGUI.Core.Utils;
|
||||||
|
using SQLite;
|
||||||
|
|
||||||
// ReSharper disable UnusedMember.Global
|
// ReSharper disable UnusedMember.Global
|
||||||
// ReSharper disable ClassNeverInstantiated.Global
|
// ReSharper disable ClassNeverInstantiated.Global
|
||||||
@ -11,44 +12,51 @@ using GoldbergGUI.Core.Utils;
|
|||||||
// ReSharper disable InconsistentNaming
|
// ReSharper disable InconsistentNaming
|
||||||
namespace GoldbergGUI.Core.Models
|
namespace GoldbergGUI.Core.Models
|
||||||
{
|
{
|
||||||
|
[Table("steamapp")]
|
||||||
public class SteamApp
|
public class SteamApp
|
||||||
{
|
{
|
||||||
private string _name;
|
private string _name;
|
||||||
private string _comparableName;
|
|
||||||
[JsonPropertyName("appid")] public int AppId { get; set; }
|
[JsonPropertyName("appid")]
|
||||||
|
[Column("appid")]
|
||||||
|
[PrimaryKey]
|
||||||
|
public int AppId { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Name of Steam app
|
/// Name of Steam app
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[JsonPropertyName("name")]
|
[JsonPropertyName("name")]
|
||||||
|
[Column("name")]
|
||||||
public string Name
|
public string Name
|
||||||
{
|
{
|
||||||
get => _name;
|
get => _name;
|
||||||
set
|
set
|
||||||
{
|
{
|
||||||
_name = value;
|
_name = value;
|
||||||
_comparableName = Regex.Replace(value, Misc.AlphaNumOnlyRegex, "").ToLower();
|
ComparableName = Regex.Replace(value, Misc.AlphaNumOnlyRegex, "").ToLower();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
[Column("comparable_name")]
|
||||||
/// Trimmed and cleaned name of Steam app, used for comparisons.
|
public string ComparableName { get; private set; }
|
||||||
/// </summary>
|
|
||||||
public bool CompareName(string value) => _comparableName.Equals(value);
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// App type (Game, DLC, ...)
|
/// App type (Game, DLC, ...)
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public AppType type { get; set; }
|
[Column("type")]
|
||||||
|
public string type { get; set; }
|
||||||
|
|
||||||
public override string ToString()
|
public override string ToString()
|
||||||
{
|
{
|
||||||
return $"{AppId}={Name}";
|
return $"{AppId}={Name}";
|
||||||
}
|
}
|
||||||
|
|
||||||
[JsonPropertyName("last_modified")] public long LastModified { get; set; }
|
[JsonPropertyName("last_modified")]
|
||||||
|
[Ignore]
|
||||||
|
public long LastModified { get; set; }
|
||||||
|
|
||||||
[JsonPropertyName("price_change_number")]
|
[JsonPropertyName("price_change_number")]
|
||||||
|
[Ignore]
|
||||||
public long PriceChangeNumber { get; set; }
|
public long PriceChangeNumber { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -77,18 +85,29 @@ namespace GoldbergGUI.Core.Models
|
|||||||
[JsonPropertyName("response")] public override AppList AppList { get; set; }
|
[JsonPropertyName("response")] public override AppList AppList { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*[Table("apptype")]
|
||||||
public class AppType
|
public class AppType
|
||||||
{
|
{
|
||||||
private AppType(string value) => Value = value;
|
private AppType(string value)
|
||||||
|
{
|
||||||
|
var db = new SQLiteConnection("steamapps.db");
|
||||||
|
db.CreateTable<AppType>();
|
||||||
|
Value = value;
|
||||||
|
}
|
||||||
|
|
||||||
|
[PrimaryKey, AutoIncrement]
|
||||||
|
[Column("id")]
|
||||||
|
public int Id { get; }
|
||||||
|
|
||||||
|
[Column("value")]
|
||||||
public string Value { get; }
|
public string Value { get; }
|
||||||
|
|
||||||
public static AppType Game { get; } = new AppType("game");
|
[Ignore] public static AppType Game { get; } = new AppType("game");
|
||||||
public static AppType DLC { get; } = new AppType("dlc");
|
[Ignore] public static AppType DLC { get; } = new AppType("dlc");
|
||||||
public static AppType Music { get; } = new AppType("music");
|
[Ignore] public static AppType Music { get; } = new AppType("music");
|
||||||
public static AppType Demo { get; } = new AppType("demo");
|
[Ignore] public static AppType Demo { get; } = new AppType("demo");
|
||||||
public static AppType Ad { get; } = new AppType("advertising");
|
[Ignore] public static AppType Ad { get; } = new AppType("advertising");
|
||||||
public static AppType Mod { get; } = new AppType("mod");
|
[Ignore] public static AppType Mod { get; } = new AppType("mod");
|
||||||
public static AppType Video { get; } = new AppType("video");
|
[Ignore] public static AppType Video { get; } = new AppType("video");
|
||||||
}
|
}*/
|
||||||
}
|
}
|
@ -3,7 +3,6 @@ using System.Collections.Generic;
|
|||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Net.Http;
|
using System.Net.Http;
|
||||||
using System.Text;
|
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Text.RegularExpressions;
|
using System.Text.RegularExpressions;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
@ -13,6 +12,7 @@ using GoldbergGUI.Core.Models;
|
|||||||
using GoldbergGUI.Core.Utils;
|
using GoldbergGUI.Core.Utils;
|
||||||
using MvvmCross.Logging;
|
using MvvmCross.Logging;
|
||||||
using NinjaNye.SearchExtensions;
|
using NinjaNye.SearchExtensions;
|
||||||
|
using SQLite;
|
||||||
using SteamStorefrontAPI;
|
using SteamStorefrontAPI;
|
||||||
|
|
||||||
namespace GoldbergGUI.Core.Services
|
namespace GoldbergGUI.Core.Services
|
||||||
@ -29,15 +29,12 @@ namespace GoldbergGUI.Core.Services
|
|||||||
|
|
||||||
class SteamCache
|
class SteamCache
|
||||||
{
|
{
|
||||||
public string Filename { get; }
|
|
||||||
public string SteamUri { get; }
|
public string SteamUri { get; }
|
||||||
public Type ApiVersion { get; }
|
public Type ApiVersion { get; }
|
||||||
public AppType SteamAppType { get; }
|
public string SteamAppType { get; }
|
||||||
public HashSet<SteamApp> Cache { get; set; } = new HashSet<SteamApp>();
|
|
||||||
|
|
||||||
public SteamCache(string filename, string uri, Type apiVersion, AppType steamAppType)
|
public SteamCache(string uri, Type apiVersion, string steamAppType)
|
||||||
{
|
{
|
||||||
Filename = filename;
|
|
||||||
SteamUri = uri;
|
SteamUri = uri;
|
||||||
ApiVersion = apiVersion;
|
ApiVersion = apiVersion;
|
||||||
SteamAppType = steamAppType;
|
SteamAppType = steamAppType;
|
||||||
@ -49,32 +46,30 @@ namespace GoldbergGUI.Core.Services
|
|||||||
public class SteamService : ISteamService
|
public class SteamService : ISteamService
|
||||||
{
|
{
|
||||||
// ReSharper disable StringLiteralTypo
|
// ReSharper disable StringLiteralTypo
|
||||||
private readonly Dictionary<AppType, SteamCache> _caches =
|
private readonly Dictionary<string, SteamCache> _caches =
|
||||||
new Dictionary<AppType, SteamCache>
|
new Dictionary<string, SteamCache>
|
||||||
{
|
{
|
||||||
{
|
{
|
||||||
AppType.Game,
|
AppTypeGame,
|
||||||
new SteamCache(
|
new SteamCache(
|
||||||
"steamapps_games.json",
|
|
||||||
"https://api.steampowered.com/IStoreService/GetAppList/v1/" +
|
"https://api.steampowered.com/IStoreService/GetAppList/v1/" +
|
||||||
"?max_results=50000" +
|
"?max_results=50000" +
|
||||||
"&include_games=1" +
|
"&include_games=1" +
|
||||||
"&key=" + Secrets.SteamWebApiKey(),
|
"&key=" + Secrets.SteamWebApiKey(),
|
||||||
typeof(SteamAppsV1),
|
typeof(SteamAppsV1),
|
||||||
AppType.Game
|
AppTypeGame
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
AppType.DLC,
|
AppTypeDlc,
|
||||||
new SteamCache(
|
new SteamCache(
|
||||||
"steamapps_dlc.json",
|
|
||||||
"https://api.steampowered.com/IStoreService/GetAppList/v1/" +
|
"https://api.steampowered.com/IStoreService/GetAppList/v1/" +
|
||||||
"?max_results=50000" +
|
"?max_results=50000" +
|
||||||
"&include_games=0" +
|
"&include_games=0" +
|
||||||
"&include_dlc=1" +
|
"&include_dlc=1" +
|
||||||
"&key=" + Secrets.SteamWebApiKey(),
|
"&key=" + Secrets.SteamWebApiKey(),
|
||||||
typeof(SteamAppsV1),
|
typeof(SteamAppsV1),
|
||||||
AppType.DLC
|
AppTypeDlc
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -85,90 +80,66 @@ namespace GoldbergGUI.Core.Services
|
|||||||
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) " +
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) " +
|
||||||
"Chrome/87.0.4280.88 Safari/537.36";
|
"Chrome/87.0.4280.88 Safari/537.36";
|
||||||
|
|
||||||
|
private const string AppTypeGame = "game";
|
||||||
|
private const string AppTypeDlc = "dlc";
|
||||||
|
private const string Database = "steamapps.db";
|
||||||
|
|
||||||
private IMvxLog _log;
|
private IMvxLog _log;
|
||||||
|
|
||||||
|
private SQLiteConnection _db;
|
||||||
|
|
||||||
public async Task Initialize(IMvxLog log)
|
public async Task Initialize(IMvxLog log)
|
||||||
{
|
{
|
||||||
//var (path, uri, jsonType, appType) = _caches[0];
|
//var (path, uri, jsonType, appType) = _caches[0];
|
||||||
static SteamApps DeserializeSteamApps(Type type, string cacheString)
|
static SteamApps DeserializeSteamApps(Type type, string cacheString)
|
||||||
{
|
{
|
||||||
if (type == typeof(SteamAppsV1))
|
return type == typeof(SteamAppsV2)
|
||||||
return JsonSerializer.Deserialize<SteamAppsV1>(cacheString);
|
? (SteamApps) JsonSerializer.Deserialize<SteamAppsV2>(cacheString)
|
||||||
else if (type == typeof(SteamAppsV2))
|
: JsonSerializer.Deserialize<SteamAppsV1>(cacheString);
|
||||||
return JsonSerializer.Deserialize<SteamAppsV2>(cacheString);
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (var (k, c) in _caches)
|
_log = log;
|
||||||
{
|
_db = new SQLiteConnection(Database);
|
||||||
_log = log;
|
_db.CreateTable<SteamApp>();
|
||||||
_log.Info($"Updating cache ({k.Value})...");
|
|
||||||
var updateNeeded =
|
|
||||||
DateTime.Now.Subtract(File.GetLastWriteTimeUtc(c.Filename)).TotalDays >= 1;
|
|
||||||
SteamApps steamApps;
|
|
||||||
try
|
|
||||||
{
|
|
||||||
var temp = await GetCache(updateNeeded, c.SteamUri, c.Filename)
|
|
||||||
.ConfigureAwait(false);
|
|
||||||
steamApps = DeserializeSteamApps(c.ApiVersion, temp);
|
|
||||||
}
|
|
||||||
catch (JsonException)
|
|
||||||
{
|
|
||||||
_log.Error("Local cache broken, forcing update...");
|
|
||||||
var temp = await GetCache(true, c.SteamUri, c.Filename).ConfigureAwait(false);
|
|
||||||
steamApps = DeserializeSteamApps(c.ApiVersion, temp);
|
|
||||||
}
|
|
||||||
|
|
||||||
try
|
if (DateTime.Now.Subtract(File.GetLastWriteTimeUtc(Database)).TotalDays >= 1 || !_db.Table<SteamApp>().Any())
|
||||||
|
{
|
||||||
|
foreach (var (appType, steamCache) in _caches)
|
||||||
{
|
{
|
||||||
var cacheRaw = new HashSet<SteamApp>(steamApps.AppList.Apps);
|
_log.Info($"Updating cache ({appType})...");
|
||||||
|
bool haveMoreResults;
|
||||||
|
long lastAppId = 0;
|
||||||
|
var client = new HttpClient();
|
||||||
|
var cacheRaw = new HashSet<SteamApp>();
|
||||||
|
do
|
||||||
|
{
|
||||||
|
var response = lastAppId > 0
|
||||||
|
? await client.GetAsync($"{steamCache.SteamUri}&last_appid={lastAppId}")
|
||||||
|
.ConfigureAwait(false)
|
||||||
|
: await client.GetAsync(steamCache.SteamUri).ConfigureAwait(false);
|
||||||
|
var responseBody = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
||||||
|
var steamApps = DeserializeSteamApps(steamCache.ApiVersion, responseBody);
|
||||||
|
foreach (var appListApp in steamApps.AppList.Apps) cacheRaw.Add(appListApp);
|
||||||
|
haveMoreResults = steamApps.AppList.HaveMoreResults;
|
||||||
|
lastAppId = steamApps.AppList.LastAppid;
|
||||||
|
} while (haveMoreResults);
|
||||||
|
|
||||||
var cache = new HashSet<SteamApp>();
|
var cache = new HashSet<SteamApp>();
|
||||||
foreach (var steamApp in cacheRaw)
|
foreach (var steamApp in cacheRaw)
|
||||||
{
|
{
|
||||||
steamApp.type = c.SteamAppType;
|
steamApp.type = steamCache.SteamAppType;
|
||||||
cache.Add(steamApp);
|
cache.Add(steamApp);
|
||||||
}
|
}
|
||||||
|
|
||||||
c.Cache = cache;
|
_db.InsertAll(cache);
|
||||||
|
|
||||||
_log.Info("Loaded cache into memory!");
|
|
||||||
}
|
|
||||||
catch (NullReferenceException e)
|
|
||||||
{
|
|
||||||
Console.WriteLine(e);
|
|
||||||
throw;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task<string> GetCache(bool updateNeeded, string steamUri, string cachePath)
|
|
||||||
{
|
|
||||||
string cacheString;
|
|
||||||
if (updateNeeded)
|
|
||||||
{
|
|
||||||
_log.Info("Getting content from API...");
|
|
||||||
var client = new HttpClient();
|
|
||||||
var response = await client.GetAsync(steamUri).ConfigureAwait(false);
|
|
||||||
var responseBody = await response.Content.ReadAsStringAsync().ConfigureAwait(false);
|
|
||||||
|
|
||||||
_log.Info("Got content from API successfully. Writing to file...");
|
|
||||||
await File.WriteAllTextAsync(cachePath, responseBody, Encoding.UTF8).ConfigureAwait(false);
|
|
||||||
|
|
||||||
_log.Info("Cache written to file successfully.");
|
|
||||||
cacheString = responseBody;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
_log.Info("Cache already up to date!");
|
|
||||||
cacheString = await File.ReadAllTextAsync(cachePath).ConfigureAwait(false);
|
|
||||||
}
|
|
||||||
|
|
||||||
return cacheString;
|
|
||||||
}
|
|
||||||
|
|
||||||
public IEnumerable<SteamApp> GetListOfAppsByName(string name)
|
public IEnumerable<SteamApp> GetListOfAppsByName(string name)
|
||||||
{
|
{
|
||||||
var listOfAppsByName = _caches[AppType.Game].Cache.Search(x => x.Name)
|
var listOfAppsByName = _db.Table<SteamApp>()
|
||||||
|
.Where(x => x.type == AppTypeGame).Search(x => x.Name)
|
||||||
.SetCulture(StringComparison.OrdinalIgnoreCase)
|
.SetCulture(StringComparison.OrdinalIgnoreCase)
|
||||||
.ContainingAll(name.Split(' '));
|
.ContainingAll(name.Split(' '));
|
||||||
return listOfAppsByName;
|
return listOfAppsByName;
|
||||||
@ -178,7 +149,8 @@ namespace GoldbergGUI.Core.Services
|
|||||||
{
|
{
|
||||||
_log.Info($"Trying to get app {name}");
|
_log.Info($"Trying to get app {name}");
|
||||||
var comparableName = Regex.Replace(name, Misc.AlphaNumOnlyRegex, "").ToLower();
|
var comparableName = Regex.Replace(name, Misc.AlphaNumOnlyRegex, "").ToLower();
|
||||||
var app = _caches[AppType.Game].Cache.FirstOrDefault(x => x.CompareName(comparableName));
|
var app = _db.Table<SteamApp>().Where(x => x.type == AppTypeGame)
|
||||||
|
.FirstOrDefault(x => x.ComparableName.Equals(comparableName));
|
||||||
if (app != null) _log.Info($"Successfully got app {app}");
|
if (app != null) _log.Info($"Successfully got app {app}");
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
@ -186,7 +158,8 @@ namespace GoldbergGUI.Core.Services
|
|||||||
public SteamApp GetAppById(int appid)
|
public SteamApp GetAppById(int appid)
|
||||||
{
|
{
|
||||||
_log.Info($"Trying to get app with ID {appid}");
|
_log.Info($"Trying to get app with ID {appid}");
|
||||||
var app = _caches[AppType.Game].Cache.FirstOrDefault(x => x.AppId.Equals(appid));
|
var app = _db.Table<SteamApp>().Where(x => x.type == AppTypeGame)
|
||||||
|
.FirstOrDefault(x => x.AppId.Equals(appid));
|
||||||
if (app != null) _log.Info($"Successfully got app {app}");
|
if (app != null) _log.Info($"Successfully got app {app}");
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
@ -199,11 +172,12 @@ namespace GoldbergGUI.Core.Services
|
|||||||
{
|
{
|
||||||
var task = AppDetails.GetAsync(steamApp.AppId);
|
var task = AppDetails.GetAsync(steamApp.AppId);
|
||||||
var steamAppDetails = await task.ConfigureAwait(true);
|
var steamAppDetails = await task.ConfigureAwait(true);
|
||||||
if (steamAppDetails.Type == AppType.Game.Value)
|
if (steamAppDetails.Type == AppTypeGame)
|
||||||
{
|
{
|
||||||
steamAppDetails.DLC.ForEach(x =>
|
steamAppDetails.DLC.ForEach(x =>
|
||||||
{
|
{
|
||||||
var result = _caches[AppType.DLC].Cache.FirstOrDefault(y => y.AppId.Equals(x))
|
var result = _db.Table<SteamApp>().Where(z => z.type == AppTypeDlc)
|
||||||
|
.FirstOrDefault(y => y.AppId.Equals(x))
|
||||||
?? new SteamApp {AppId = x, Name = $"Unknown DLC {x}"};
|
?? new SteamApp {AppId = x, Name = $"Unknown DLC {x}"};
|
||||||
dlcList.Add(result);
|
dlcList.Add(result);
|
||||||
});
|
});
|
||||||
@ -215,7 +189,7 @@ namespace GoldbergGUI.Core.Services
|
|||||||
// Get Cloudflare cookie
|
// Get Cloudflare cookie
|
||||||
// Scrape and parse HTML page
|
// Scrape and parse HTML page
|
||||||
// Add missing to DLC list
|
// Add missing to DLC list
|
||||||
|
|
||||||
// ReSharper disable once InvertIf
|
// ReSharper disable once InvertIf
|
||||||
if (useSteamDb)
|
if (useSteamDb)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user