2019-10-12 21:37:16 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2019-12-01 21:26:11 +00:00
|
|
|
|
using System.IO;
|
2019-10-12 21:37:16 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Net.Http;
|
2019-12-17 23:17:44 +00:00
|
|
|
|
using System.Net.Http.Headers;
|
2019-12-06 05:29:17 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2019-10-12 21:37:16 +00:00
|
|
|
|
using Wabbajack.Common;
|
2020-01-07 13:50:11 +00:00
|
|
|
|
using Wabbajack.Lib.Exceptions;
|
2019-10-16 03:10:34 +00:00
|
|
|
|
using Wabbajack.Lib.Validation;
|
2019-10-12 21:37:16 +00:00
|
|
|
|
using File = Alphaleonis.Win32.Filesystem.File;
|
|
|
|
|
|
2019-10-16 03:10:34 +00:00
|
|
|
|
namespace Wabbajack.Lib.Downloaders
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
2019-10-16 11:44:45 +00:00
|
|
|
|
public class HTTPDownloader : IDownloader, IUrlDownloader
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
|
|
|
|
|
2019-12-07 03:50:50 +00:00
|
|
|
|
public async Task<AbstractDownloadState> GetDownloaderState(dynamic archiveINI)
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
2019-11-21 15:51:57 +00:00
|
|
|
|
var url = archiveINI?.General?.directURL;
|
|
|
|
|
return GetDownloaderState(url, archiveINI);
|
2019-10-16 11:44:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public AbstractDownloadState GetDownloaderState(string uri)
|
|
|
|
|
{
|
|
|
|
|
return GetDownloaderState(uri, null);
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 15:51:57 +00:00
|
|
|
|
public AbstractDownloadState GetDownloaderState(string url, dynamic archiveINI)
|
2019-10-16 11:44:45 +00:00
|
|
|
|
{
|
2019-10-12 21:37:16 +00:00
|
|
|
|
if (url != null)
|
|
|
|
|
{
|
|
|
|
|
var tmp = new State
|
|
|
|
|
{
|
2020-02-02 12:15:29 +00:00
|
|
|
|
Url = url
|
2019-10-12 21:37:16 +00:00
|
|
|
|
};
|
2019-11-21 15:51:57 +00:00
|
|
|
|
if (archiveINI?.General?.directURLHeaders != null)
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
|
|
|
|
tmp.Headers = new List<string>();
|
2019-11-21 15:51:57 +00:00
|
|
|
|
tmp.Headers.AddRange(archiveINI?.General.directURLHeaders.Split('|'));
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
return tmp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-07 02:45:13 +00:00
|
|
|
|
public async Task Prepare()
|
2019-10-12 22:15:20 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-12 21:37:16 +00:00
|
|
|
|
public class State : AbstractDownloadState
|
|
|
|
|
{
|
2020-02-02 12:15:29 +00:00
|
|
|
|
public string Url { get; set; }
|
2019-10-12 21:37:16 +00:00
|
|
|
|
|
|
|
|
|
public List<string> Headers { get; set; }
|
|
|
|
|
|
2020-02-14 22:23:27 +00:00
|
|
|
|
public Common.Http.Client Client { get; set; }
|
2019-10-21 19:05:03 +00:00
|
|
|
|
|
2020-02-02 12:15:29 +00:00
|
|
|
|
public override object[] PrimaryKey { get => new object[] {Url};}
|
2020-01-01 16:19:06 +00:00
|
|
|
|
|
2019-10-12 21:37:16 +00:00
|
|
|
|
public override bool IsWhitelisted(ServerWhitelist whitelist)
|
|
|
|
|
{
|
2020-02-02 12:15:29 +00:00
|
|
|
|
return whitelist.AllowedPrefixes.Any(p => Url.StartsWith(p));
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-25 22:30:43 +00:00
|
|
|
|
public override Task<bool> Download(Archive a, AbsolutePath destination)
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
2019-12-06 05:29:17 +00:00
|
|
|
|
return DoDownload(a, destination, true);
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-03-25 22:30:43 +00:00
|
|
|
|
public async Task<bool> DoDownload(Archive a, AbsolutePath destination, bool download)
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
2019-12-23 04:24:40 +00:00
|
|
|
|
if (download)
|
|
|
|
|
{
|
2020-03-25 22:30:43 +00:00
|
|
|
|
destination.Parent.CreateDirectory();
|
2019-12-23 04:24:40 +00:00
|
|
|
|
}
|
2019-12-18 10:45:48 +00:00
|
|
|
|
|
2020-03-25 22:30:43 +00:00
|
|
|
|
using (var fs = download ? destination.Create() : null)
|
2019-12-17 23:17:44 +00:00
|
|
|
|
{
|
2020-02-14 22:23:27 +00:00
|
|
|
|
var client = Client ?? new Common.Http.Client();
|
|
|
|
|
client.Headers.Add(("User-Agent", Consts.UserAgent));
|
2019-12-17 23:17:44 +00:00
|
|
|
|
|
|
|
|
|
if (Headers != null)
|
|
|
|
|
foreach (var header in Headers)
|
|
|
|
|
{
|
|
|
|
|
var idx = header.IndexOf(':');
|
|
|
|
|
var k = header.Substring(0, idx);
|
|
|
|
|
var v = header.Substring(idx + 1);
|
2020-02-14 22:23:27 +00:00
|
|
|
|
client.Headers.Add((k, v));
|
2019-12-17 23:17:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
long totalRead = 0;
|
|
|
|
|
var bufferSize = 1024 * 32;
|
|
|
|
|
|
2020-02-08 04:35:08 +00:00
|
|
|
|
Utils.Status($"Starting Download {a?.Name ?? Url}", Percent.Zero);
|
2020-02-26 05:05:33 +00:00
|
|
|
|
var response = await client.GetAsync(Url);
|
2020-01-18 20:52:09 +00:00
|
|
|
|
TOP:
|
2019-12-17 23:17:44 +00:00
|
|
|
|
|
2020-01-03 22:15:55 +00:00
|
|
|
|
if (!response.IsSuccessStatusCode)
|
|
|
|
|
throw new HttpException((int)response.StatusCode, response.ReasonPhrase);
|
2020-01-18 20:52:09 +00:00
|
|
|
|
|
2019-12-17 23:17:44 +00:00
|
|
|
|
Stream stream;
|
|
|
|
|
try
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
2019-12-17 23:17:44 +00:00
|
|
|
|
stream = await response.Content.ReadAsStreamAsync();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2020-02-02 12:15:29 +00:00
|
|
|
|
Utils.Error(ex, $"While downloading {Url}");
|
2019-12-17 23:17:44 +00:00
|
|
|
|
return false;
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2019-12-17 23:17:44 +00:00
|
|
|
|
var headerVar = a.Size == 0 ? "1" : a.Size.ToString();
|
2020-01-13 22:55:55 +00:00
|
|
|
|
long header_content_size = 0;
|
2019-12-17 23:17:44 +00:00
|
|
|
|
if (response.Content.Headers.Contains("Content-Length"))
|
2020-01-13 22:55:55 +00:00
|
|
|
|
{
|
2019-12-17 23:17:44 +00:00
|
|
|
|
headerVar = response.Content.Headers.GetValues("Content-Length").FirstOrDefault();
|
2020-01-13 22:55:55 +00:00
|
|
|
|
if (headerVar != null)
|
|
|
|
|
long.TryParse(headerVar, out header_content_size);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!download)
|
|
|
|
|
{
|
|
|
|
|
if (a.Size != 0 && header_content_size != 0)
|
|
|
|
|
return a.Size == header_content_size;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 23:17:44 +00:00
|
|
|
|
var supportsResume = response.Headers.AcceptRanges.FirstOrDefault(f => f == "bytes") != null;
|
2019-10-12 21:37:16 +00:00
|
|
|
|
|
2019-12-17 23:17:44 +00:00
|
|
|
|
var contentSize = headerVar != null ? long.Parse(headerVar) : 1;
|
2019-10-12 21:37:16 +00:00
|
|
|
|
|
2019-12-17 23:17:44 +00:00
|
|
|
|
using (var webs = stream)
|
|
|
|
|
{
|
|
|
|
|
var buffer = new byte[bufferSize];
|
2020-02-29 00:00:23 +00:00
|
|
|
|
int readThisCycle = 0;
|
2019-12-17 23:17:44 +00:00
|
|
|
|
|
|
|
|
|
while (true)
|
|
|
|
|
{
|
|
|
|
|
int read = 0;
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
read = await webs.ReadAsync(buffer, 0, bufferSize);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2020-02-29 00:00:23 +00:00
|
|
|
|
if (readThisCycle == 0)
|
2019-12-17 23:17:44 +00:00
|
|
|
|
throw ex;
|
|
|
|
|
|
|
|
|
|
if (totalRead < contentSize)
|
|
|
|
|
{
|
|
|
|
|
if (supportsResume)
|
|
|
|
|
{
|
|
|
|
|
Utils.Log(
|
2020-02-02 12:15:29 +00:00
|
|
|
|
$"Abort during download, trying to resume {Url} from {totalRead.ToFileSizeString()}");
|
2019-12-17 23:17:44 +00:00
|
|
|
|
|
2020-02-02 12:15:29 +00:00
|
|
|
|
var msg = new HttpRequestMessage(HttpMethod.Get, Url);
|
2019-12-17 23:17:44 +00:00
|
|
|
|
msg.Headers.Range = new RangeHeaderValue(totalRead, null);
|
2020-02-26 05:05:33 +00:00
|
|
|
|
response.Dispose();
|
|
|
|
|
response = await client.SendAsync(msg);
|
2019-12-17 23:17:44 +00:00
|
|
|
|
goto TOP;
|
|
|
|
|
}
|
2019-12-17 23:43:12 +00:00
|
|
|
|
throw ex;
|
2019-12-17 23:17:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 23:43:12 +00:00
|
|
|
|
break;
|
2019-12-17 23:17:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-02-29 00:00:23 +00:00
|
|
|
|
readThisCycle += read;
|
2019-12-17 23:17:44 +00:00
|
|
|
|
|
|
|
|
|
if (read == 0) break;
|
2020-02-08 04:35:08 +00:00
|
|
|
|
Utils.Status($"Downloading {a.Name}", Percent.FactoryPutInRange(totalRead, contentSize));
|
2019-12-17 23:17:44 +00:00
|
|
|
|
|
|
|
|
|
fs.Write(buffer, 0, read);
|
|
|
|
|
totalRead += read;
|
|
|
|
|
}
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
2020-02-26 05:05:33 +00:00
|
|
|
|
response.Dispose();
|
2019-12-17 23:17:44 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-13 22:55:55 +00:00
|
|
|
|
public override async Task<bool> Verify(Archive a)
|
2019-10-12 21:37:16 +00:00
|
|
|
|
{
|
2020-03-25 22:30:43 +00:00
|
|
|
|
return await DoDownload(a, ((RelativePath)"").RelativeToEntryPoint(), false);
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
2019-10-12 22:15:20 +00:00
|
|
|
|
|
|
|
|
|
public override IDownloader GetDownloader()
|
|
|
|
|
{
|
|
|
|
|
return DownloadDispatcher.GetInstance<HTTPDownloader>();
|
|
|
|
|
}
|
2019-10-12 22:54:25 +00:00
|
|
|
|
|
2020-02-02 12:23:07 +00:00
|
|
|
|
public override string GetManifestURL(Archive a)
|
2020-02-02 12:15:29 +00:00
|
|
|
|
{
|
2020-02-02 12:23:07 +00:00
|
|
|
|
return Url;
|
2020-02-02 12:15:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-11 04:15:53 +00:00
|
|
|
|
public override string[] GetMetaIni()
|
|
|
|
|
{
|
|
|
|
|
if (Headers != null)
|
|
|
|
|
return new [] {"[General]",
|
2020-02-02 12:15:29 +00:00
|
|
|
|
$"directURL={Url}",
|
2020-01-11 04:15:53 +00:00
|
|
|
|
$"directURLHeaders={string.Join("|", Headers)}"};
|
|
|
|
|
else
|
2020-02-02 12:15:29 +00:00
|
|
|
|
return new [] {"[General]", $"directURL={Url}"};
|
2020-01-11 04:15:53 +00:00
|
|
|
|
|
|
|
|
|
}
|
2019-10-12 21:37:16 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|