2021-01-08 12:36:57 -05:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Net.Http;
|
2021-03-21 08:01:32 -04:00
|
|
|
using System.Text.Json;
|
|
|
|
using System.Text.RegularExpressions;
|
2021-01-08 12:36:57 -05:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
using AngleSharp.Dom;
|
|
|
|
using AngleSharp.Html.Parser;
|
|
|
|
using GoldbergGUI.Core.Models;
|
|
|
|
using GoldbergGUI.Core.Utils;
|
|
|
|
using MvvmCross.Logging;
|
2021-03-21 08:01:32 -04:00
|
|
|
using NinjaNye.SearchExtensions;
|
2021-03-21 10:20:46 -04:00
|
|
|
using SQLite;
|
2021-01-08 12:36:57 -05:00
|
|
|
using SteamStorefrontAPI;
|
|
|
|
|
|
|
|
namespace GoldbergGUI.Core.Services
|
|
|
|
{
|
|
|
|
// gets info from steam api
|
|
|
|
public interface ISteamService
|
|
|
|
{
|
|
|
|
public Task Initialize(IMvxLog log);
|
2021-03-24 05:21:59 -04:00
|
|
|
public Task<IEnumerable<SteamApp>> GetListOfAppsByName(string name);
|
|
|
|
public Task<SteamApp> GetAppByName(string name);
|
|
|
|
public Task<SteamApp> GetAppById(int appid);
|
2021-01-08 12:36:57 -05:00
|
|
|
public Task<List<SteamApp>> GetListOfDlc(SteamApp steamApp, bool useSteamDb);
|
|
|
|
}
|
2021-01-10 11:28:57 -05:00
|
|
|
|
2021-01-13 14:29:12 -05:00
|
|
|
class SteamCache
|
|
|
|
{
|
|
|
|
public string SteamUri { get; }
|
|
|
|
public Type ApiVersion { get; }
|
2021-03-21 10:20:46 -04:00
|
|
|
public string SteamAppType { get; }
|
2021-01-13 14:29:12 -05:00
|
|
|
|
2021-03-21 10:20:46 -04:00
|
|
|
public SteamCache(string uri, Type apiVersion, string steamAppType)
|
2021-01-13 14:29:12 -05:00
|
|
|
{
|
|
|
|
SteamUri = uri;
|
|
|
|
ApiVersion = apiVersion;
|
|
|
|
SteamAppType = steamAppType;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-08 12:36:57 -05:00
|
|
|
// ReSharper disable once UnusedType.Global
|
2021-01-10 11:28:57 -05:00
|
|
|
// ReSharper disable once ClassNeverInstantiated.Global
|
2021-03-21 08:01:32 -04:00
|
|
|
public class SteamService : ISteamService
|
2021-01-08 12:36:57 -05:00
|
|
|
{
|
2021-01-10 11:28:57 -05:00
|
|
|
// ReSharper disable StringLiteralTypo
|
2021-03-21 10:20:46 -04:00
|
|
|
private readonly Dictionary<string, SteamCache> _caches =
|
|
|
|
new Dictionary<string, SteamCache>
|
2021-01-13 12:57:10 -05:00
|
|
|
{
|
2021-01-13 14:29:12 -05:00
|
|
|
{
|
2021-03-21 10:20:46 -04:00
|
|
|
AppTypeGame,
|
2021-01-13 14:29:12 -05:00
|
|
|
new SteamCache(
|
|
|
|
"https://api.steampowered.com/IStoreService/GetAppList/v1/" +
|
|
|
|
"?max_results=50000" +
|
|
|
|
"&include_games=1" +
|
|
|
|
"&key=" + Secrets.SteamWebApiKey(),
|
|
|
|
typeof(SteamAppsV1),
|
2021-03-21 10:20:46 -04:00
|
|
|
AppTypeGame
|
2021-01-13 14:29:12 -05:00
|
|
|
)
|
|
|
|
},
|
|
|
|
{
|
2021-03-21 10:20:46 -04:00
|
|
|
AppTypeDlc,
|
2021-01-13 14:29:12 -05:00
|
|
|
new SteamCache(
|
|
|
|
"https://api.steampowered.com/IStoreService/GetAppList/v1/" +
|
|
|
|
"?max_results=50000" +
|
|
|
|
"&include_games=0" +
|
|
|
|
"&include_dlc=1" +
|
|
|
|
"&key=" + Secrets.SteamWebApiKey(),
|
|
|
|
typeof(SteamAppsV1),
|
2021-03-21 10:20:46 -04:00
|
|
|
AppTypeDlc
|
2021-01-13 14:29:12 -05:00
|
|
|
)
|
|
|
|
}
|
2021-01-13 12:57:10 -05:00
|
|
|
};
|
2021-01-10 11:28:57 -05:00
|
|
|
|
|
|
|
private static readonly Secrets Secrets = new Secrets();
|
2021-01-08 12:36:57 -05:00
|
|
|
|
|
|
|
private const string UserAgent =
|
|
|
|
"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) " +
|
|
|
|
"Chrome/87.0.4280.88 Safari/537.36";
|
2021-03-21 10:20:46 -04:00
|
|
|
private const string AppTypeGame = "game";
|
|
|
|
private const string AppTypeDlc = "dlc";
|
2021-03-21 11:15:17 -04:00
|
|
|
private const string Database = "steamapps.cache";
|
2021-03-21 10:20:46 -04:00
|
|
|
|
2021-01-08 12:36:57 -05:00
|
|
|
private IMvxLog _log;
|
2021-01-10 11:28:57 -05:00
|
|
|
|
2021-03-21 11:55:58 -04:00
|
|
|
private SQLiteAsyncConnection _db;
|
2021-03-21 10:20:46 -04:00
|
|
|
|
2021-01-08 12:36:57 -05:00
|
|
|
public async Task Initialize(IMvxLog log)
|
|
|
|
{
|
2021-01-13 14:29:12 -05:00
|
|
|
static SteamApps DeserializeSteamApps(Type type, string cacheString)
|
2021-01-10 10:08:12 -05:00
|
|
|
{
|
2021-03-21 10:20:46 -04:00
|
|
|
return type == typeof(SteamAppsV2)
|
|
|
|
? (SteamApps) JsonSerializer.Deserialize<SteamAppsV2>(cacheString)
|
|
|
|
: JsonSerializer.Deserialize<SteamAppsV1>(cacheString);
|
2021-01-10 10:08:12 -05:00
|
|
|
}
|
2021-01-13 12:57:10 -05:00
|
|
|
|
2021-03-21 10:20:46 -04:00
|
|
|
_log = log;
|
2021-03-21 11:55:58 -04:00
|
|
|
_db = new SQLiteAsyncConnection(Database);
|
|
|
|
//_db.CreateTable<SteamApp>();
|
|
|
|
await _db.CreateTableAsync<SteamApp>()
|
|
|
|
//.ContinueWith(x => _log.Debug("Table success!"))
|
|
|
|
.ConfigureAwait(false);
|
|
|
|
|
|
|
|
var countAsync = await _db.Table<SteamApp>().CountAsync().ConfigureAwait(false);
|
|
|
|
if (DateTime.Now.Subtract(File.GetLastWriteTimeUtc(Database)).TotalDays >= 1 || countAsync == 0)
|
2021-01-10 10:08:12 -05:00
|
|
|
{
|
2021-03-21 10:20:46 -04:00
|
|
|
foreach (var (appType, steamCache) in _caches)
|
2021-01-13 12:57:10 -05:00
|
|
|
{
|
2021-03-21 10:20:46 -04:00
|
|
|
_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);
|
2021-01-13 12:57:10 -05:00
|
|
|
|
2021-01-13 14:29:12 -05:00
|
|
|
var cache = new HashSet<SteamApp>();
|
|
|
|
foreach (var steamApp in cacheRaw)
|
2021-01-13 12:57:10 -05:00
|
|
|
{
|
2021-03-21 10:20:46 -04:00
|
|
|
steamApp.type = steamCache.SteamAppType;
|
2021-03-21 11:15:17 -04:00
|
|
|
steamApp.ComparableName = PrepareStringToCompare(steamApp.Name);
|
2021-01-13 14:29:12 -05:00
|
|
|
cache.Add(steamApp);
|
2021-01-13 12:57:10 -05:00
|
|
|
}
|
2021-01-13 14:29:12 -05:00
|
|
|
|
2021-03-24 05:21:59 -04:00
|
|
|
await _db.InsertAllAsync(cache, "OR IGNORE").ConfigureAwait(false);
|
2021-01-13 12:57:10 -05:00
|
|
|
}
|
|
|
|
}
|
2021-01-10 10:08:12 -05:00
|
|
|
}
|
|
|
|
|
2021-03-24 05:21:59 -04:00
|
|
|
public async Task<IEnumerable<SteamApp>> GetListOfAppsByName(string name)
|
2021-01-08 12:36:57 -05:00
|
|
|
{
|
2021-03-24 05:21:59 -04:00
|
|
|
var query = await _db.Table<SteamApp>()
|
|
|
|
.Where(x => x.type == AppTypeGame).ToListAsync().ConfigureAwait(false);
|
2021-03-21 11:55:58 -04:00
|
|
|
var listOfAppsByName = query.Search(x => x.Name)
|
2021-01-08 12:36:57 -05:00
|
|
|
.SetCulture(StringComparison.OrdinalIgnoreCase)
|
2021-01-09 16:11:49 -05:00
|
|
|
.ContainingAll(name.Split(' '));
|
|
|
|
return listOfAppsByName;
|
2021-01-08 12:36:57 -05:00
|
|
|
}
|
|
|
|
|
2021-03-24 05:21:59 -04:00
|
|
|
public async Task<SteamApp> GetAppByName(string name)
|
2021-01-08 12:36:57 -05:00
|
|
|
{
|
|
|
|
_log.Info($"Trying to get app {name}");
|
2021-03-21 11:15:17 -04:00
|
|
|
var comparableName = PrepareStringToCompare(name);
|
2021-03-24 05:21:59 -04:00
|
|
|
var app = await _db.Table<SteamApp>()
|
|
|
|
.FirstOrDefaultAsync(x => x.type == AppTypeGame && x.ComparableName.Equals(comparableName))
|
|
|
|
.ConfigureAwait(false);
|
2021-01-08 12:36:57 -05:00
|
|
|
if (app != null) _log.Info($"Successfully got app {app}");
|
|
|
|
return app;
|
|
|
|
}
|
|
|
|
|
2021-03-24 05:21:59 -04:00
|
|
|
public async Task<SteamApp> GetAppById(int appid)
|
2021-01-08 12:36:57 -05:00
|
|
|
{
|
|
|
|
_log.Info($"Trying to get app with ID {appid}");
|
2021-03-24 05:21:59 -04:00
|
|
|
var app = await _db.Table<SteamApp>().Where(x => x.type == AppTypeGame)
|
|
|
|
.FirstOrDefaultAsync(x => x.AppId.Equals(appid)).ConfigureAwait(false);
|
2021-01-08 12:36:57 -05:00
|
|
|
if (app != null) _log.Info($"Successfully got app {app}");
|
|
|
|
return app;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<List<SteamApp>> GetListOfDlc(SteamApp steamApp, bool useSteamDb)
|
|
|
|
{
|
|
|
|
var dlcList = new List<SteamApp>();
|
|
|
|
if (steamApp != null)
|
|
|
|
{
|
2021-04-07 07:52:56 -04:00
|
|
|
_log.Info($"Get DLC for App {steamApp}");
|
2021-01-08 12:36:57 -05:00
|
|
|
var task = AppDetails.GetAsync(steamApp.AppId);
|
|
|
|
var steamAppDetails = await task.ConfigureAwait(true);
|
2021-03-21 10:20:46 -04:00
|
|
|
if (steamAppDetails.Type == AppTypeGame)
|
2021-01-08 12:36:57 -05:00
|
|
|
{
|
2021-03-21 11:55:58 -04:00
|
|
|
steamAppDetails.DLC.ForEach(async x =>
|
2021-01-08 12:36:57 -05:00
|
|
|
{
|
2021-03-21 11:55:58 -04:00
|
|
|
var result = await _db.Table<SteamApp>().Where(z => z.type == AppTypeDlc)
|
|
|
|
.FirstOrDefaultAsync(y => y.AppId.Equals(x)).ConfigureAwait(true)
|
2021-01-13 14:29:12 -05:00
|
|
|
?? new SteamApp {AppId = x, Name = $"Unknown DLC {x}"};
|
2021-01-08 12:36:57 -05:00
|
|
|
dlcList.Add(result);
|
2021-03-21 11:55:58 -04:00
|
|
|
_log.Debug($"{result.AppId}={result.Name}");
|
2021-01-08 12:36:57 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
_log.Info("Got DLC successfully...");
|
|
|
|
|
|
|
|
// Get DLC from SteamDB
|
2021-03-21 11:55:58 -04:00
|
|
|
// Get Cloudflare cookie (not implemented)
|
2021-01-08 12:36:57 -05:00
|
|
|
// Scrape and parse HTML page
|
|
|
|
// Add missing to DLC list
|
2021-03-21 10:20:46 -04:00
|
|
|
|
2021-04-07 07:52:56 -04:00
|
|
|
// Return current list if we don't intend to use SteamDB
|
|
|
|
if (!useSteamDb) return dlcList;
|
|
|
|
|
|
|
|
try
|
2021-01-08 12:36:57 -05:00
|
|
|
{
|
|
|
|
var steamDbUri = new Uri($"https://steamdb.info/app/{steamApp.AppId}/dlc/");
|
|
|
|
|
|
|
|
var client = new HttpClient();
|
|
|
|
client.DefaultRequestHeaders.UserAgent.ParseAdd(UserAgent);
|
|
|
|
|
2021-04-07 07:52:56 -04:00
|
|
|
_log.Info($"Get SteamDB App {steamApp}");
|
2021-01-08 12:36:57 -05:00
|
|
|
var httpCall = client.GetAsync(steamDbUri);
|
|
|
|
var response = await httpCall.ConfigureAwait(false);
|
|
|
|
_log.Debug(httpCall.Status.ToString());
|
|
|
|
_log.Debug(response.EnsureSuccessStatusCode().ToString());
|
|
|
|
|
|
|
|
var readAsStringAsync = response.Content.ReadAsStringAsync();
|
|
|
|
var responseBody = await readAsStringAsync.ConfigureAwait(false);
|
|
|
|
_log.Debug(readAsStringAsync.Status.ToString());
|
|
|
|
|
|
|
|
var parser = new HtmlParser();
|
|
|
|
var doc = parser.ParseDocument(responseBody);
|
|
|
|
|
|
|
|
var query1 = doc.QuerySelector("#dlc");
|
|
|
|
if (query1 != null)
|
|
|
|
{
|
2021-04-07 07:52:56 -04:00
|
|
|
_log.Info("Got list of DLC from SteamDB.");
|
2021-01-08 12:36:57 -05:00
|
|
|
var query2 = query1.QuerySelectorAll(".app");
|
|
|
|
foreach (var element in query2)
|
|
|
|
{
|
|
|
|
var dlcId = element.GetAttribute("data-appid");
|
|
|
|
var query3 = element.QuerySelectorAll("td");
|
2021-01-13 14:29:12 -05:00
|
|
|
var dlcName = query3 != null
|
|
|
|
? query3[1].Text().Replace("\n", "").Trim()
|
|
|
|
: $"Unknown DLC {dlcId}";
|
2021-01-08 12:36:57 -05:00
|
|
|
var dlcApp = new SteamApp {AppId = Convert.ToInt32(dlcId), Name = dlcName};
|
|
|
|
var i = dlcList.FindIndex(x => x.AppId.Equals(dlcApp.AppId));
|
|
|
|
if (i > -1)
|
|
|
|
{
|
|
|
|
if (dlcList[i].Name.Contains("Unknown DLC")) dlcList[i] = dlcApp;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
dlcList.Add(dlcApp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dlcList.ForEach(x => _log.Debug($"{x.AppId}={x.Name}"));
|
|
|
|
_log.Info("Got DLC from SteamDB successfully...");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_log.Error("Could not get DLC from SteamDB!");
|
|
|
|
}
|
|
|
|
}
|
2021-04-07 07:52:56 -04:00
|
|
|
catch (Exception e)
|
|
|
|
{
|
|
|
|
_log.Error("Could not get DLC from SteamDB! Skipping...");
|
|
|
|
_log.Error(e.ToString);
|
|
|
|
}
|
2021-01-08 12:36:57 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_log.Error("Could not get DLC: Steam App is not of type \"game\"");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_log.Error("Could not get DLC: Invalid Steam App");
|
|
|
|
}
|
|
|
|
|
|
|
|
return dlcList;
|
|
|
|
}
|
2021-03-21 11:15:17 -04:00
|
|
|
|
|
|
|
private static string PrepareStringToCompare(string name)
|
|
|
|
{
|
|
|
|
return Regex.Replace(name, Misc.AlphaNumOnlyRegex, "").ToLower();
|
|
|
|
}
|
2021-01-08 12:36:57 -05:00
|
|
|
}
|
|
|
|
}
|