2020-06-13 10:08:21 +00:00
|
|
|
// _ _ _ ____ _ _____
|
|
|
|
// / \ _ __ ___ | |__ (_)/ ___| | |_ ___ __ _ _ __ ___ | ___|__ _ _ __ _ __ ___
|
|
|
|
// / _ \ | '__|/ __|| '_ \ | |\___ \ | __|/ _ \ / _` || '_ ` _ \ | |_ / _` || '__|| '_ ` _ \
|
|
|
|
// / ___ \ | | | (__ | | | || | ___) || |_| __/| (_| || | | | | || _|| (_| || | | | | | | |
|
|
|
|
// /_/ \_\|_| \___||_| |_||_||____/ \__|\___| \__,_||_| |_| |_||_| \__,_||_| |_| |_| |_|
|
|
|
|
// |
|
|
|
|
// Copyright 2015-2020 Łukasz "JustArchi" Domeradzki
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using ArchiSteamFarm.Helpers;
|
|
|
|
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)]
|
2020-11-21 12:54:09 +00:00
|
|
|
private readonly ConcurrentDictionary<uint, ulong> SubmittedApps = new();
|
2020-06-13 10:08:21 +00:00
|
|
|
|
|
|
|
[JsonProperty(Required = Required.DisallowNull)]
|
2020-11-21 12:54:09 +00:00
|
|
|
private readonly ConcurrentDictionary<uint, string> SubmittedDepots = new();
|
2020-06-13 10:08:21 +00:00
|
|
|
|
|
|
|
[JsonProperty(Required = Required.DisallowNull)]
|
2020-11-21 12:54:09 +00:00
|
|
|
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];
|
|
|
|
|
2020-11-21 16:07:18 +00:00
|
|
|
internal Dictionary<uint, ulong> GetAppTokensForSubmission() => AppTokens.Where(appToken => (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 => !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 => (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
|
|
|
|
|
|
|
internal static async Task<GlobalCache> Load() {
|
|
|
|
if (!File.Exists(SharedFilePath)) {
|
|
|
|
return new GlobalCache();
|
|
|
|
}
|
|
|
|
|
2020-08-22 19:41:01 +00:00
|
|
|
GlobalCache? globalCache = null;
|
2020-06-13 10:08:21 +00:00
|
|
|
|
|
|
|
try {
|
|
|
|
string json = await RuntimeCompatibility.File.ReadAllTextAsync(SharedFilePath).ConfigureAwait(false);
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(json)) {
|
|
|
|
globalCache = JsonConvert.DeserializeObject<GlobalCache>(json);
|
|
|
|
}
|
|
|
|
} catch (Exception e) {
|
|
|
|
ASF.ArchiLogger.LogGenericException(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (globalCache == null) {
|
|
|
|
ASF.ArchiLogger.LogGenericError($"{nameof(GlobalCache)} could not be loaded, a fresh instance will be initialized.");
|
|
|
|
|
|
|
|
globalCache = new GlobalCache();
|
|
|
|
}
|
|
|
|
|
|
|
|
return globalCache;
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASF.ArchiLogger.LogGenericTrace($"{LastChangeNumber} => {currentChangeNumber}");
|
|
|
|
|
|
|
|
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 _);
|
|
|
|
ASF.ArchiLogger.LogGenericTrace($"App needs refresh: {appID}");
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +00:00
|
|
|
Utilities.InBackground(Save);
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +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;
|
|
|
|
}
|
|
|
|
|
|
|
|
ASF.ArchiLogger.LogGenericDebug($"RESET {LastChangeNumber} => {currentChangeNumber}");
|
|
|
|
|
|
|
|
LastChangeNumber = currentChangeNumber;
|
|
|
|
AppChangeNumbers.Clear();
|
|
|
|
|
2021-01-03 21:02:24 +00:00
|
|
|
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);
|
|
|
|
|
2021-01-03 21:02:24 +00:00
|
|
|
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) {
|
2021-01-03 21:02:24 +00:00
|
|
|
Utilities.InBackground(Save);
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +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) {
|
2021-01-03 21:02:24 +00:00
|
|
|
Utilities.InBackground(Save);
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +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) {
|
2020-11-14 21:37:00 +00:00
|
|
|
if (depotKeyResult?.Result != EResult.OK) {
|
2020-06-13 10:08:21 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
string depotKey = BitConverter.ToString(depotKeyResult.DepotKey).Replace("-", "");
|
|
|
|
|
2020-08-22 19:41:01 +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) {
|
2021-01-03 21:02:24 +00:00
|
|
|
Utilities.InBackground(Save);
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +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) {
|
2021-01-03 21:02:24 +00:00
|
|
|
Utilities.InBackground(Save);
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +00:00
|
|
|
internal void UpdateSubmittedData(IReadOnlyDictionary<uint, ulong> apps, IReadOnlyDictionary<uint, ulong> packages, IReadOnlyDictionary<uint, string> depots) {
|
2020-11-21 12:54:09 +00:00
|
|
|
if (apps == null) {
|
|
|
|
throw new ArgumentNullException(nameof(apps));
|
2020-11-14 21:37:00 +00:00
|
|
|
}
|
|
|
|
|
2020-11-21 12:54:09 +00:00
|
|
|
if (packages == null) {
|
|
|
|
throw new ArgumentNullException(nameof(packages));
|
2020-11-14 21:37:00 +00:00
|
|
|
}
|
|
|
|
|
2020-11-21 12:54:09 +00:00
|
|
|
if (depots == null) {
|
|
|
|
throw new ArgumentNullException(nameof(depots));
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-21 12:54:09 +00:00
|
|
|
foreach ((uint appID, ulong token) in apps) {
|
|
|
|
SubmittedApps[appID] = token;
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-21 12:54:09 +00:00
|
|
|
foreach ((uint packageID, ulong token) in packages) {
|
|
|
|
SubmittedPackages[packageID] = token;
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-21 12:54:09 +00:00
|
|
|
foreach ((uint depotID, string key) in depots) {
|
|
|
|
SubmittedDepots[depotID] = key;
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
|
2021-01-03 21:02:24 +00:00
|
|
|
Utilities.InBackground(Save);
|
2020-06-13 10:08:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|