2022-01-08 22:03:39 +00:00
|
|
|
using System.Collections.Concurrent;
|
2022-01-09 01:19:08 +00:00
|
|
|
using System.IO.Compression;
|
2022-01-08 17:39:23 +00:00
|
|
|
using System.Security;
|
|
|
|
using Microsoft.Extensions.Logging;
|
2022-01-09 05:40:23 +00:00
|
|
|
using Microsoft.VisualBasic.CompilerServices;
|
2022-01-08 17:39:23 +00:00
|
|
|
using SteamKit2;
|
2022-01-09 01:19:08 +00:00
|
|
|
using SteamKit2.CDN;
|
2022-01-08 22:03:39 +00:00
|
|
|
using SteamKit2.Internal;
|
2022-01-10 01:05:47 +00:00
|
|
|
using Wabbajack.Common;
|
2022-01-08 17:39:23 +00:00
|
|
|
using Wabbajack.DTOs.Interventions;
|
2022-01-09 01:19:08 +00:00
|
|
|
using Wabbajack.DTOs.JsonConverters;
|
2022-01-09 05:40:23 +00:00
|
|
|
using Wabbajack.Hashing.xxHash64;
|
2022-01-08 17:39:23 +00:00
|
|
|
using Wabbajack.Networking.Http.Interfaces;
|
2022-01-09 01:19:08 +00:00
|
|
|
using Wabbajack.Networking.Steam.DTOs;
|
2022-01-08 17:39:23 +00:00
|
|
|
using Wabbajack.Networking.Steam.UserInterventions;
|
2022-01-09 05:40:23 +00:00
|
|
|
using Wabbajack.Paths;
|
|
|
|
using Wabbajack.Paths.IO;
|
2022-01-10 01:05:47 +00:00
|
|
|
using Wabbajack.RateLimiter;
|
2022-01-08 17:39:23 +00:00
|
|
|
|
|
|
|
namespace Wabbajack.Networking.Steam;
|
|
|
|
|
|
|
|
public class Client : IDisposable
|
|
|
|
{
|
|
|
|
private readonly ILogger<Client> _logger;
|
|
|
|
private readonly HttpClient _httpClient;
|
|
|
|
private readonly SteamClient _client;
|
|
|
|
private readonly SteamUser _steamUser;
|
|
|
|
private readonly CallbackManager _manager;
|
|
|
|
private readonly ITokenProvider<SteamLoginState> _token;
|
|
|
|
private TaskCompletionSource _loginTask;
|
|
|
|
private TaskCompletionSource _connectTask;
|
|
|
|
private readonly CancellationTokenSource _cancellationSource;
|
|
|
|
|
|
|
|
private string? _twoFactorCode;
|
|
|
|
private string? _authCode;
|
|
|
|
private readonly IUserInterventionHandler _interventionHandler;
|
|
|
|
private bool _haveSigFile;
|
|
|
|
|
2022-01-08 22:03:39 +00:00
|
|
|
public TaskCompletionSource _licenseRequest = new();
|
|
|
|
private readonly SteamApps _steamApps;
|
2022-01-09 01:19:08 +00:00
|
|
|
private readonly DTOSerializer _dtos;
|
2022-01-10 01:05:47 +00:00
|
|
|
private Server[] _cdnServers = Array.Empty<Server>();
|
|
|
|
private readonly IResource<HttpClient> _limiter;
|
2022-01-08 22:03:39 +00:00
|
|
|
|
|
|
|
public SteamApps.LicenseListCallback.License[] Licenses { get; private set; }
|
|
|
|
|
|
|
|
public ConcurrentDictionary<uint, ulong> PackageTokens { get; } = new();
|
|
|
|
|
|
|
|
public ConcurrentDictionary<uint, SteamApps.PICSProductInfoCallback.PICSProductInfo?> PackageInfos { get; } = new();
|
|
|
|
|
2022-01-09 01:19:08 +00:00
|
|
|
public ConcurrentDictionary<uint, (SteamApps.PICSProductInfoCallback.PICSProductInfo ProductInfo, AppInfo AppInfo)> AppInfo { get; } =
|
|
|
|
new();
|
|
|
|
|
|
|
|
public ConcurrentDictionary<uint, ulong> AppTokens { get; } = new();
|
|
|
|
|
|
|
|
|
|
|
|
public ConcurrentDictionary<uint, byte[]> DepotKeys { get; } = new();
|
|
|
|
|
2022-01-08 22:03:39 +00:00
|
|
|
|
2022-01-08 17:39:23 +00:00
|
|
|
public Client(ILogger<Client> logger, HttpClient client, ITokenProvider<SteamLoginState> token,
|
2022-01-10 01:05:47 +00:00
|
|
|
IUserInterventionHandler interventionHandler, DTOSerializer dtos, IResource<HttpClient> limiter)
|
2022-01-08 17:39:23 +00:00
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
_httpClient = client;
|
2022-01-09 01:19:08 +00:00
|
|
|
_dtos = dtos;
|
2022-01-08 17:39:23 +00:00
|
|
|
_interventionHandler = interventionHandler;
|
2022-01-10 01:05:47 +00:00
|
|
|
_limiter = limiter;
|
2022-01-08 17:39:23 +00:00
|
|
|
_client = new SteamClient(SteamConfiguration.Create(c =>
|
|
|
|
{
|
|
|
|
c.WithProtocolTypes(ProtocolTypes.WebSocket);
|
|
|
|
c.WithUniverse(EUniverse.Public);
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
_cancellationSource = new CancellationTokenSource();
|
|
|
|
|
|
|
|
_token = token;
|
|
|
|
|
|
|
|
_manager = new CallbackManager(_client);
|
|
|
|
|
|
|
|
_steamUser = _client.GetHandler<SteamUser>()!;
|
2022-01-08 22:03:39 +00:00
|
|
|
_steamApps = _client.GetHandler<SteamApps>()!;
|
2022-01-08 17:39:23 +00:00
|
|
|
|
|
|
|
_manager.Subscribe<SteamClient.ConnectedCallback>( OnConnected );
|
|
|
|
_manager.Subscribe<SteamClient.DisconnectedCallback>( OnDisconnected );
|
|
|
|
|
|
|
|
_manager.Subscribe<SteamUser.LoggedOnCallback>( OnLoggedOn );
|
|
|
|
_manager.Subscribe<SteamUser.LoggedOffCallback>( OnLoggedOff );
|
2022-01-08 22:03:39 +00:00
|
|
|
|
|
|
|
_manager.Subscribe<SteamApps.LicenseListCallback>(OnLicenseList);
|
2022-01-08 17:39:23 +00:00
|
|
|
|
|
|
|
_manager.Subscribe<SteamUser.UpdateMachineAuthCallback>( OnUpdateMachineAuthCallback );
|
|
|
|
|
|
|
|
_haveSigFile = false;
|
|
|
|
|
|
|
|
new Thread(() =>
|
|
|
|
{
|
|
|
|
while (!_cancellationSource.IsCancellationRequested)
|
|
|
|
{
|
|
|
|
_manager.RunWaitCallbacks(TimeSpan.FromMilliseconds(250));
|
|
|
|
}
|
|
|
|
})
|
|
|
|
{
|
|
|
|
Name = "Steam Client callback runner",
|
|
|
|
IsBackground = true
|
|
|
|
}
|
|
|
|
.Start();
|
2022-01-09 01:19:08 +00:00
|
|
|
|
2022-01-08 17:39:23 +00:00
|
|
|
}
|
|
|
|
|
2022-01-08 22:03:39 +00:00
|
|
|
private void OnLicenseList(SteamApps.LicenseListCallback obj)
|
|
|
|
{
|
|
|
|
if (obj.Result != EResult.OK)
|
|
|
|
{
|
2022-01-10 21:14:37 +00:00
|
|
|
_licenseRequest.TrySetException(new SteamException("While getting game information", obj.Result, EResult.Invalid));
|
2022-01-08 22:03:39 +00:00
|
|
|
}
|
2022-01-10 21:14:37 +00:00
|
|
|
_logger.LogInformation("Steam has provided game information");
|
2022-01-08 22:03:39 +00:00
|
|
|
Licenses = obj.LicenseList.ToArray();
|
|
|
|
_licenseRequest.TrySetResult();
|
|
|
|
}
|
|
|
|
|
2022-01-08 17:39:23 +00:00
|
|
|
private void OnUpdateMachineAuthCallback(SteamUser.UpdateMachineAuthCallback callback)
|
|
|
|
{
|
|
|
|
Task.Run(async () =>
|
|
|
|
{
|
|
|
|
int fileSize;
|
|
|
|
byte[] sentryHash;
|
|
|
|
|
2022-01-11 01:48:11 +00:00
|
|
|
_logger.LogInformation("Got Steam machine auth info");
|
|
|
|
|
2022-01-08 17:39:23 +00:00
|
|
|
var token = await _token.Get();
|
|
|
|
|
|
|
|
var ms = new MemoryStream();
|
|
|
|
|
|
|
|
if (token?.SentryFile != null)
|
|
|
|
await ms.WriteAsync(token.SentryFile);
|
|
|
|
|
|
|
|
ms.Seek(callback.Offset, SeekOrigin.Begin);
|
|
|
|
ms.Write(callback.Data, 0, callback.BytesToWrite);
|
|
|
|
fileSize = (int) ms.Length;
|
|
|
|
|
|
|
|
token!.SentryFile = ms.ToArray();
|
|
|
|
sentryHash = CryptoHelper.SHAHash(token.SentryFile);
|
|
|
|
|
|
|
|
await _token.SetToken(token);
|
|
|
|
|
|
|
|
|
|
|
|
_steamUser.SendMachineAuthResponse(new SteamUser.MachineAuthDetails
|
|
|
|
{
|
|
|
|
JobID = callback.JobID,
|
|
|
|
FileName = callback.FileName,
|
|
|
|
|
|
|
|
BytesWritten = callback.BytesToWrite,
|
|
|
|
FileSize = token.SentryFile.Length,
|
|
|
|
Offset = callback.Offset,
|
|
|
|
Result = EResult.OK,
|
|
|
|
LastError = 0,
|
|
|
|
OneTimePassword = callback.OneTimePassword,
|
|
|
|
SentryFileHash = sentryHash
|
|
|
|
});
|
|
|
|
|
|
|
|
_haveSigFile = true;
|
|
|
|
_loginTask.TrySetResult();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnLoggedOff(SteamUser.LoggedOffCallback obj)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnLoggedOn(SteamUser.LoggedOnCallback callback)
|
|
|
|
{
|
|
|
|
Task.Run(async () =>
|
|
|
|
{
|
|
|
|
var isSteamGuard = callback.Result == EResult.AccountLogonDenied;
|
|
|
|
var is2FA = callback.Result == EResult.AccountLoginDeniedNeedTwoFactor;
|
|
|
|
|
|
|
|
if (isSteamGuard || is2FA)
|
|
|
|
{
|
|
|
|
_logger.LogInformation("Account is SteamGuard protected");
|
|
|
|
if (is2FA)
|
|
|
|
{
|
|
|
|
var intervention = new GetAuthCode(GetAuthCode.AuthType.TwoFactorAuth);
|
|
|
|
_interventionHandler.Raise(intervention);
|
|
|
|
_twoFactorCode = await intervention.Task;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
var intervention = new GetAuthCode(GetAuthCode.AuthType.EmailCode);
|
|
|
|
_interventionHandler.Raise(intervention);
|
|
|
|
_authCode = await intervention.Task;
|
|
|
|
}
|
|
|
|
|
|
|
|
var tcs = Login(_loginTask);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (callback.Result != EResult.OK)
|
|
|
|
{
|
|
|
|
_loginTask.SetException(new SteamException("Unable to log in", callback.Result, callback.ExtendedResult));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_logger.LogInformation("Logged into Steam");
|
|
|
|
if (_haveSigFile)
|
|
|
|
_loginTask.SetResult();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnDisconnected(SteamClient.DisconnectedCallback obj)
|
|
|
|
{
|
|
|
|
_logger.LogInformation("Logged out");
|
|
|
|
}
|
|
|
|
|
|
|
|
private void OnConnected(SteamClient.ConnectedCallback obj)
|
|
|
|
{
|
|
|
|
Task.Run(async () =>
|
|
|
|
{
|
|
|
|
var state = (await _token.Get())!;
|
2022-01-10 21:14:37 +00:00
|
|
|
_logger.LogInformation("Connected to Steam, logging in");
|
2022-01-08 17:39:23 +00:00
|
|
|
|
|
|
|
byte[]? sentryHash = null;
|
|
|
|
|
|
|
|
|
|
|
|
if (state.SentryFile != null)
|
|
|
|
{
|
|
|
|
_logger.LogInformation("Existing login keys found, reusing");
|
|
|
|
sentryHash = CryptoHelper.SHAHash(state.SentryFile);
|
|
|
|
_haveSigFile = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
_haveSigFile = false;
|
|
|
|
}
|
2022-10-07 22:14:01 +00:00
|
|
|
|
2022-01-08 22:03:39 +00:00
|
|
|
_steamUser.LogOn(new SteamUser.LogOnDetails
|
2022-01-08 17:39:23 +00:00
|
|
|
{
|
|
|
|
Username = state.User,
|
|
|
|
Password = state.Password,
|
|
|
|
AuthCode = _authCode,
|
|
|
|
TwoFactorCode = _twoFactorCode,
|
2022-01-08 22:03:39 +00:00
|
|
|
SentryFileHash = sentryHash,
|
|
|
|
RequestSteam2Ticket = true
|
2022-01-08 17:39:23 +00:00
|
|
|
});
|
2022-01-11 01:48:11 +00:00
|
|
|
|
|
|
|
// Reset the codes so we don't use them again
|
|
|
|
_authCode = null;
|
|
|
|
_twoFactorCode = null;
|
2022-01-08 17:39:23 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
public Task Connect()
|
|
|
|
{
|
|
|
|
_connectTask = new TaskCompletionSource();
|
|
|
|
|
|
|
|
_client.Connect();
|
|
|
|
return _connectTask.Task;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
{
|
|
|
|
_httpClient.Dispose();
|
|
|
|
_cancellationSource.Cancel();
|
|
|
|
_cancellationSource.Dispose();
|
|
|
|
}
|
|
|
|
|
2022-01-08 22:03:39 +00:00
|
|
|
public async Task Login(TaskCompletionSource? tcs = null)
|
2022-01-08 17:39:23 +00:00
|
|
|
{
|
|
|
|
_loginTask = tcs ?? new TaskCompletionSource();
|
|
|
|
_logger.LogInformation("Attempting login");
|
|
|
|
_client.Connect();
|
|
|
|
|
2022-01-08 22:03:39 +00:00
|
|
|
await _loginTask.Task;
|
|
|
|
await _licenseRequest.Task;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<Dictionary<uint, SteamApps.PICSProductInfoCallback.PICSProductInfo?>> GetPackageInfos(IEnumerable<uint> packageIds)
|
|
|
|
{
|
|
|
|
var packages = packageIds.Where(id => !PackageInfos.ContainsKey(id)).ToList();
|
|
|
|
|
|
|
|
if (packages.Count > 0)
|
|
|
|
{
|
|
|
|
var packageRequests = new List<SteamApps.PICSRequest>();
|
|
|
|
|
|
|
|
foreach (var package in packages)
|
|
|
|
{
|
|
|
|
var request = new SteamApps.PICSRequest(package);
|
|
|
|
if (PackageTokens.TryGetValue(package, out var token))
|
|
|
|
{
|
|
|
|
request.AccessToken = token;
|
|
|
|
}
|
|
|
|
|
|
|
|
packageRequests.Add(request);
|
|
|
|
}
|
|
|
|
|
|
|
|
_logger.LogInformation("Requesting {Count} package infos", packageRequests.Count);
|
|
|
|
|
|
|
|
var results = await _steamApps.PICSGetProductInfo(new List<SteamApps.PICSRequest>(), packageRequests);
|
|
|
|
|
|
|
|
if (results.Failed)
|
|
|
|
throw new SteamException("Exception getting product info", EResult.Invalid, EResult.Invalid);
|
|
|
|
|
|
|
|
foreach (var packageInfo in results.Results!)
|
|
|
|
{
|
|
|
|
foreach (var package in packageInfo.Packages.Select(v => v.Value))
|
|
|
|
{
|
|
|
|
PackageInfos[package.ID] = package;
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (var package in packageInfo.UnknownPackages)
|
|
|
|
{
|
|
|
|
PackageInfos[package] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return packages.Distinct().ToDictionary(p => p, p => PackageInfos[p]);
|
|
|
|
|
2022-01-08 17:39:23 +00:00
|
|
|
}
|
2022-01-09 01:19:08 +00:00
|
|
|
|
|
|
|
public async Task<AppInfo> GetAppInfo(uint appId)
|
|
|
|
{
|
|
|
|
if (AppInfo.TryGetValue(appId, out var info))
|
|
|
|
return info.AppInfo;
|
|
|
|
|
|
|
|
var result = await _steamApps.PICSGetAccessTokens(new List<uint> {appId}, new List<uint>());
|
|
|
|
|
|
|
|
if (result.AppTokensDenied.Contains(appId))
|
|
|
|
throw new SteamException($"Cannot get app token for {appId}", EResult.Invalid, EResult.Invalid);
|
|
|
|
|
|
|
|
foreach (var token in result.AppTokens)
|
|
|
|
{
|
|
|
|
AppTokens[token.Key] = token.Value;
|
|
|
|
}
|
|
|
|
|
|
|
|
var request = new SteamApps.PICSRequest(appId);
|
|
|
|
if (AppTokens.ContainsKey(appId))
|
|
|
|
{
|
|
|
|
request.AccessToken = AppTokens[appId];
|
|
|
|
}
|
|
|
|
|
|
|
|
var appResult = await _steamApps.PICSGetProductInfo(new List<SteamApps.PICSRequest> {request},
|
|
|
|
new List<SteamApps.PICSRequest>());
|
|
|
|
|
|
|
|
if (appResult.Failed)
|
|
|
|
throw new SteamException($"Error getting app info for {appId}", EResult.Invalid, EResult.Invalid);
|
|
|
|
|
|
|
|
foreach (var (_, value) in appResult.Results!.SelectMany(v => v.Apps))
|
|
|
|
{
|
|
|
|
var translated = KeyValueTranslator.Translate<AppInfo>(value.KeyValues, _dtos);
|
|
|
|
AppInfo[value.ID] = (value, translated);
|
|
|
|
}
|
|
|
|
|
|
|
|
return AppInfo[appId].AppInfo;
|
|
|
|
}
|
|
|
|
|
2022-01-10 01:05:47 +00:00
|
|
|
public async Task<Server[]> LoadCDNServers()
|
2022-01-09 01:19:08 +00:00
|
|
|
{
|
2022-01-10 01:05:47 +00:00
|
|
|
if (_cdnServers.Length > 0) return _cdnServers;
|
2022-01-09 01:19:08 +00:00
|
|
|
_logger.LogInformation("Loading CDN servers");
|
2022-01-10 01:05:47 +00:00
|
|
|
_cdnServers = (await ContentServerDirectoryService.LoadAsync(_client.Configuration)).ToArray();
|
|
|
|
_logger.LogInformation("{Count} servers found", _cdnServers.Length);
|
2022-01-09 01:19:08 +00:00
|
|
|
|
|
|
|
return _cdnServers;
|
|
|
|
}
|
|
|
|
|
|
|
|
public async Task<DepotManifest> GetAppManifest(uint appId, uint depotId, ulong manifestId)
|
|
|
|
{
|
|
|
|
await LoadCDNServers();
|
2022-01-11 03:57:11 +00:00
|
|
|
|
|
|
|
var manifest = await CircuitBreaker.WithAutoRetryAsync<DepotManifest, HttpRequestException>(_logger, async () =>
|
2022-01-09 01:19:08 +00:00
|
|
|
{
|
2022-01-11 03:57:11 +00:00
|
|
|
|
|
|
|
var client = _cdnServers.First();
|
|
|
|
var uri = new UriBuilder
|
|
|
|
{
|
|
|
|
Host = client.Host,
|
|
|
|
Port = client.Port,
|
|
|
|
Scheme = client.Protocol.ToString(),
|
|
|
|
Path = $"depot/{depotId}/manifest/{manifestId}/5"
|
|
|
|
}.Uri;
|
|
|
|
|
|
|
|
var rawData = await _httpClient.GetByteArrayAsync(uri);
|
|
|
|
|
|
|
|
using var zip = new ZipArchive(new MemoryStream(rawData));
|
|
|
|
var firstEntry = zip.Entries.First();
|
|
|
|
var data = new MemoryStream();
|
|
|
|
await using var entryStream = firstEntry.Open();
|
|
|
|
await entryStream.CopyToAsync(data);
|
|
|
|
return DepotManifest.Deserialize(data.ToArray());
|
|
|
|
});
|
|
|
|
|
2022-01-09 01:19:08 +00:00
|
|
|
|
|
|
|
if (manifest.FilenamesEncrypted)
|
|
|
|
manifest.DecryptFilenames(await GetDepotKey(depotId, appId));
|
|
|
|
|
|
|
|
return manifest;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public async ValueTask<byte[]> GetDepotKey(uint depotId, uint appId)
|
|
|
|
{
|
|
|
|
if (DepotKeys.ContainsKey(depotId))
|
|
|
|
return DepotKeys[depotId];
|
|
|
|
|
|
|
|
_logger.LogInformation("Requesting Depot Key for {DepotId}", depotId);
|
|
|
|
|
|
|
|
var result = await _steamApps.GetDepotDecryptionKey(depotId, appId);
|
|
|
|
if (result.Result != EResult.OK)
|
2022-01-09 05:40:23 +00:00
|
|
|
throw new SteamException($"Error getting Depot Key for {depotId} {appId}", result.Result, EResult.Invalid);
|
2022-01-09 01:19:08 +00:00
|
|
|
|
|
|
|
DepotKeys[depotId] = result.DepotKey;
|
|
|
|
return result.DepotKey;
|
|
|
|
}
|
2022-01-10 01:05:47 +00:00
|
|
|
|
|
|
|
private static readonly Random _random = new();
|
|
|
|
|
|
|
|
private Server RandomServer()
|
|
|
|
{
|
|
|
|
return _cdnServers[_random.Next(0, _cdnServers.Length)];
|
|
|
|
}
|
2022-01-09 01:19:08 +00:00
|
|
|
|
2022-01-10 04:09:47 +00:00
|
|
|
public async Task Download(uint appId, uint depotId, ulong manifest, DepotManifest.FileData fileData, AbsolutePath output,
|
|
|
|
CancellationToken token, IJob? parentJob = null)
|
2022-01-09 05:40:23 +00:00
|
|
|
{
|
|
|
|
await LoadCDNServers();
|
2022-01-10 01:05:47 +00:00
|
|
|
|
2022-01-09 05:40:23 +00:00
|
|
|
var depotKey = await GetDepotKey(depotId, appId);
|
|
|
|
|
|
|
|
await using var os = output.Open(FileMode.Create, FileAccess.Write, FileShare.Read);
|
2022-01-10 01:05:47 +00:00
|
|
|
|
|
|
|
await fileData.Chunks.OrderBy(c => c.Offset)
|
|
|
|
.PMapAll(async chunk =>
|
2022-01-10 04:09:47 +00:00
|
|
|
{
|
|
|
|
async Task<DepotChunk> AttemptDownload(DepotManifest.ChunkData chunk)
|
|
|
|
{
|
|
|
|
var client = RandomServer();
|
|
|
|
using var job = await _limiter.Begin($"Downloading chunk of {fileData.FileName}",
|
|
|
|
chunk.CompressedLength, token);
|
2022-01-09 05:40:23 +00:00
|
|
|
|
2022-01-10 04:09:47 +00:00
|
|
|
var chunkId = chunk.ChunkID!.ToHex();
|
2022-01-09 05:40:23 +00:00
|
|
|
|
|
|
|
|
2022-01-10 04:09:47 +00:00
|
|
|
var uri = new UriBuilder
|
|
|
|
{
|
|
|
|
Host = client.Host,
|
|
|
|
Port = client.Port,
|
|
|
|
Scheme = client.Protocol.ToString(),
|
|
|
|
Path = $"depot/{depotId}/chunk/{chunkId}"
|
|
|
|
}.Uri;
|
|
|
|
|
|
|
|
var data = await _httpClient.GetByteArrayAsync(uri, token);
|
|
|
|
await job.Report(data.Length, token);
|
|
|
|
|
|
|
|
if (parentJob != null)
|
|
|
|
await parentJob.Report(data.Length, token);
|
|
|
|
|
|
|
|
var chunkData = new DepotChunk(chunk, data);
|
|
|
|
chunkData.Process(depotKey);
|
|
|
|
|
|
|
|
return chunkData;
|
|
|
|
}
|
|
|
|
|
|
|
|
return await CircuitBreaker.WithAutoRetryAsync<DepotChunk, HttpRequestException>(_logger, () => AttemptDownload(chunk));
|
|
|
|
}).Do(async data =>
|
2022-01-10 01:05:47 +00:00
|
|
|
{
|
|
|
|
await os.WriteAsync(data.Data, token);
|
2022-01-10 04:09:47 +00:00
|
|
|
|
2022-01-10 01:05:47 +00:00
|
|
|
});
|
2022-01-09 05:40:23 +00:00
|
|
|
}
|
2022-01-08 17:39:23 +00:00
|
|
|
}
|