ArchiSteamFarm/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/GlobalCache.cs

289 lines
9.5 KiB
C#
Raw Normal View History

2020-06-13 10:08:21 +00:00
// _ _ _ ____ _ _____
// / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___
// / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \
// / ___ \ | | | (__ | | | || | ___) || |_| __/| (_| || | | | | || _|| (_| || | | | | | | |
// /_/ \_\|_| \___||_| |_||_||____/ \__|\___| \__,_||_| |_| |_||_| \__,_||_| |_| |_| |_|
// |
// Copyright 2015-2021 Łukasz "JustArchi" Domeradzki
2020-06-13 10:08:21 +00:00
// Contact: JustArchi@JustArchi.net
// |
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// |
// http://www.apache.org/licenses/LICENSE-2.0
// |
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2021-05-06 18:28:25 +00:00
#if NETFRAMEWORK
using ArchiSteamFarm.RuntimeCompatibility;
using File = System.IO.File;
using Path = System.IO.Path;
#else
using System.IO;
#endif
2020-06-13 10:08:21 +00:00
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
2021-04-25 21:44:47 +00:00
using System.Globalization;
2020-06-13 10:08:21 +00:00
using System.Linq;
using System.Threading.Tasks;
using ArchiSteamFarm.Core;
2020-06-13 10:08:21 +00:00
using ArchiSteamFarm.Helpers;
2021-04-25 21:44:47 +00:00
using ArchiSteamFarm.Localization;
2020-06-13 10:08:21 +00:00
using Newtonsoft.Json;
using SteamKit2;
namespace ArchiSteamFarm.OfficialPlugins.SteamTokenDumper {
internal sealed class GlobalCache : SerializableFile {
private static string SharedFilePath => Path.Combine(ArchiSteamFarm.SharedInfo.ConfigDirectory, nameof(SteamTokenDumper) + ".cache");
[JsonProperty(Required = Required.DisallowNull)]
2020-11-14 21:37:00 +00:00
private readonly ConcurrentDictionary<uint, uint> AppChangeNumbers = new();
2020-06-13 10:08:21 +00:00
[JsonProperty(Required = Required.DisallowNull)]
2020-11-14 21:37:00 +00:00
private readonly ConcurrentDictionary<uint, ulong> AppTokens = new();
2020-06-13 10:08:21 +00:00
[JsonProperty(Required = Required.DisallowNull)]
2020-11-14 21:37:00 +00:00
private readonly ConcurrentDictionary<uint, string> DepotKeys = new();
2020-06-13 10:08:21 +00:00
[JsonProperty(Required = Required.DisallowNull)]
2020-11-14 21:37:00 +00:00
private readonly ConcurrentDictionary<uint, ulong> PackageTokens = new();
2020-06-13 10:08:21 +00:00
[JsonProperty(Required = Required.DisallowNull)]
private readonly ConcurrentDictionary<uint, ulong> SubmittedApps = new();
2020-06-13 10:08:21 +00:00
[JsonProperty(Required = Required.DisallowNull)]
private readonly ConcurrentDictionary<uint, string> SubmittedDepots = new();
2020-06-13 10:08:21 +00:00
[JsonProperty(Required = Required.DisallowNull)]
private readonly ConcurrentDictionary<uint, ulong> SubmittedPackages = new();
2020-06-13 10:08:21 +00:00
[JsonProperty(Required = Required.DisallowNull)]
internal uint LastChangeNumber { get; private set; }
internal GlobalCache() => FilePath = SharedFilePath;
internal ulong GetAppToken(uint appID) => AppTokens[appID];
internal Dictionary<uint, ulong> GetAppTokensForSubmission() => AppTokens.Where(appToken => (SteamTokenDumperPlugin.Config?.SecretAppIDs.Contains(appToken.Key) == false) && (appToken.Value > 0) && (!SubmittedApps.TryGetValue(appToken.Key, out ulong token) || (appToken.Value != token))).ToDictionary(appToken => appToken.Key, appToken => appToken.Value);
internal Dictionary<uint, string> GetDepotKeysForSubmission() => DepotKeys.Where(depotKey => (SteamTokenDumperPlugin.Config?.SecretDepotIDs.Contains(depotKey.Key) == false) && !string.IsNullOrEmpty(depotKey.Value) && (!SubmittedDepots.TryGetValue(depotKey.Key, out string? key) || (depotKey.Value != key))).ToDictionary(depotKey => depotKey.Key, depotKey => depotKey.Value);
internal Dictionary<uint, ulong> GetPackageTokensForSubmission() => PackageTokens.Where(packageToken => (SteamTokenDumperPlugin.Config?.SecretPackageIDs.Contains(packageToken.Key) == false) && (packageToken.Value > 0) && (!SubmittedPackages.TryGetValue(packageToken.Key, out ulong token) || (packageToken.Value != token))).ToDictionary(packageToken => packageToken.Key, packageToken => packageToken.Value);
2020-06-13 10:08:21 +00:00
2021-04-25 21:44:47 +00:00
internal static async Task<GlobalCache?> Load() {
2020-06-13 10:08:21 +00:00
if (!File.Exists(SharedFilePath)) {
2021-04-25 21:44:47 +00:00
GlobalCache result = new();
Utilities.InBackground(result.Save);
return result;
2020-06-13 10:08:21 +00:00
}
2021-04-25 21:44:47 +00:00
GlobalCache? globalCache;
2020-06-13 10:08:21 +00:00
try {
string json = await RuntimeCompatibility.File.ReadAllTextAsync(SharedFilePath).ConfigureAwait(false);
2021-04-25 21:44:47 +00:00
if (string.IsNullOrEmpty(json)) {
ASF.ArchiLogger.LogGenericError(string.Format(CultureInfo.CurrentCulture, Strings.ErrorIsEmpty, nameof(json)));
return null;
2020-06-13 10:08:21 +00:00
}
2021-04-25 21:44:47 +00:00
globalCache = JsonConvert.DeserializeObject<GlobalCache>(json);
2020-06-13 10:08:21 +00:00
} catch (Exception e) {
ASF.ArchiLogger.LogGenericException(e);
2021-04-25 21:44:47 +00:00
return null;
2020-06-13 10:08:21 +00:00
}
if (globalCache == null) {
2021-04-25 21:44:47 +00:00
ASF.ArchiLogger.LogNullError(nameof(globalCache));
2020-06-13 10:08:21 +00:00
2021-04-25 21:44:47 +00:00
return null;
2020-06-13 10:08:21 +00:00
}
return globalCache;
}
internal void OnPICSChanges(uint currentChangeNumber, IReadOnlyCollection<KeyValuePair<uint, SteamApps.PICSChangesCallback.PICSChangeData>> appChanges) {
2020-11-14 21:37:00 +00:00
if (currentChangeNumber == 0) {
throw new ArgumentOutOfRangeException(nameof(currentChangeNumber));
}
if (appChanges == null) {
2020-06-13 10:08:21 +00:00
throw new ArgumentNullException(nameof(appChanges));
}
if (currentChangeNumber <= LastChangeNumber) {
return;
}
LastChangeNumber = currentChangeNumber;
foreach ((uint appID, SteamApps.PICSChangesCallback.PICSChangeData appData) in appChanges) {
if (!AppChangeNumbers.TryGetValue(appID, out uint previousChangeNumber) || (appData.ChangeNumber <= previousChangeNumber)) {
continue;
}
AppChangeNumbers.TryRemove(appID, out _);
}
Utilities.InBackground(Save);
2020-06-13 10:08:21 +00:00
}
internal void OnPICSChangesRestart(uint currentChangeNumber) {
2020-06-13 10:08:21 +00:00
if (currentChangeNumber == 0) {
2020-11-14 21:37:00 +00:00
throw new ArgumentOutOfRangeException(nameof(currentChangeNumber));
2020-06-13 10:08:21 +00:00
}
if (currentChangeNumber <= LastChangeNumber) {
return;
}
LastChangeNumber = currentChangeNumber;
AppChangeNumbers.Clear();
Utilities.InBackground(Save);
2020-06-13 10:08:21 +00:00
}
internal bool ShouldRefreshAppInfo(uint appID) => !AppChangeNumbers.ContainsKey(appID);
internal bool ShouldRefreshDepotKey(uint depotID) => !DepotKeys.ContainsKey(depotID);
internal void UpdateAppChangeNumbers(IReadOnlyCollection<KeyValuePair<uint, uint>> appChangeNumbers) {
2020-06-13 10:08:21 +00:00
if (appChangeNumbers == null) {
throw new ArgumentNullException(nameof(appChangeNumbers));
}
bool save = false;
foreach ((uint appID, uint changeNumber) in appChangeNumbers) {
if (AppChangeNumbers.TryGetValue(appID, out uint previousChangeNumber) && (previousChangeNumber == changeNumber)) {
continue;
}
AppChangeNumbers[appID] = changeNumber;
save = true;
}
if (save) {
Utilities.InBackground(Save);
2020-06-13 10:08:21 +00:00
}
}
internal void UpdateAppTokens(IReadOnlyCollection<KeyValuePair<uint, ulong>> appTokens, IReadOnlyCollection<uint> publicAppIDs) {
2020-11-14 21:37:00 +00:00
if (appTokens == null) {
throw new ArgumentNullException(nameof(appTokens));
}
if (publicAppIDs == null) {
throw new ArgumentNullException(nameof(publicAppIDs));
2020-06-13 10:08:21 +00:00
}
bool save = false;
foreach ((uint appID, ulong appToken) in appTokens) {
if (AppTokens.TryGetValue(appID, out ulong previousAppToken) && (previousAppToken == appToken)) {
continue;
}
AppTokens[appID] = appToken;
save = true;
}
foreach (uint appID in publicAppIDs) {
if (AppTokens.TryGetValue(appID, out ulong previousAppToken) && (previousAppToken == 0)) {
continue;
}
AppTokens[appID] = 0;
save = true;
}
if (save) {
Utilities.InBackground(Save);
2020-06-13 10:08:21 +00:00
}
}
internal void UpdateDepotKeys(ICollection<SteamApps.DepotKeyCallback> depotKeyResults) {
2020-06-13 10:08:21 +00:00
if (depotKeyResults == null) {
throw new ArgumentNullException(nameof(depotKeyResults));
}
bool save = false;
foreach (SteamApps.DepotKeyCallback depotKeyResult in depotKeyResults) {
2021-04-25 21:44:47 +00:00
if (depotKeyResult.Result != EResult.OK) {
2020-06-13 10:08:21 +00:00
continue;
}
2021-05-07 13:59:06 +00:00
string depotKey = BitConverter.ToString(depotKeyResult.DepotKey).Replace("-", "", StringComparison.Ordinal);
2020-06-13 10:08:21 +00:00
if (DepotKeys.TryGetValue(depotKeyResult.DepotID, out string? previousDepotKey) && (previousDepotKey == depotKey)) {
2020-06-13 10:08:21 +00:00
continue;
}
DepotKeys[depotKeyResult.DepotID] = depotKey;
save = true;
}
if (save) {
Utilities.InBackground(Save);
2020-06-13 10:08:21 +00:00
}
}
internal void UpdatePackageTokens(IReadOnlyCollection<KeyValuePair<uint, ulong>> packageTokens) {
2020-06-13 10:08:21 +00:00
if (packageTokens == null) {
throw new ArgumentNullException(nameof(packageTokens));
}
bool save = false;
foreach ((uint packageID, ulong packageToken) in packageTokens) {
if (PackageTokens.TryGetValue(packageID, out ulong previousPackageToken) && (previousPackageToken == packageToken)) {
continue;
}
PackageTokens[packageID] = packageToken;
save = true;
}
if (save) {
Utilities.InBackground(Save);
2020-06-13 10:08:21 +00:00
}
}
internal void UpdateSubmittedData(IReadOnlyDictionary<uint, ulong> apps, IReadOnlyDictionary<uint, ulong> packages, IReadOnlyDictionary<uint, string> depots) {
if (apps == null) {
throw new ArgumentNullException(nameof(apps));
2020-11-14 21:37:00 +00:00
}
if (packages == null) {
throw new ArgumentNullException(nameof(packages));
2020-11-14 21:37:00 +00:00
}
if (depots == null) {
throw new ArgumentNullException(nameof(depots));
2020-06-13 10:08:21 +00:00
}
foreach ((uint appID, ulong token) in apps) {
SubmittedApps[appID] = token;
2020-06-13 10:08:21 +00:00
}
foreach ((uint packageID, ulong token) in packages) {
SubmittedPackages[packageID] = token;
2020-06-13 10:08:21 +00:00
}
foreach ((uint depotID, string key) in depots) {
SubmittedDepots[depotID] = key;
2020-06-13 10:08:21 +00:00
}
Utilities.InBackground(Save);
2020-06-13 10:08:21 +00:00
}
}
}