mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Scan the DynDOLOD forum post every hour and look for new versions
This commit is contained in:
parent
fef4c82e69
commit
bebb514bd4
@ -79,6 +79,7 @@ namespace Wabbajack.BuildServer
|
||||
await ScheduledJob<EnqueueAllArchives>(TimeSpan.FromHours(2), Job.JobPriority.Low);
|
||||
await ScheduledJob<EnqueueAllGameFiles>(TimeSpan.FromHours(24), Job.JobPriority.High);
|
||||
await ScheduledJob<EnqueueRecentFiles>(TimeSpan.FromHours(6), Job.JobPriority.Low);
|
||||
await ScheduledJob<IndexDynDOLOD>(TimeSpan.FromHours(1), Job.JobPriority.Normal);
|
||||
await Task.Delay(10000);
|
||||
}
|
||||
}
|
||||
|
@ -18,7 +18,8 @@ namespace Wabbajack.BuildServer.Models.JobQueue
|
||||
typeof(EnqueueAllArchives),
|
||||
typeof(EnqueueAllGameFiles),
|
||||
typeof(EnqueueRecentFiles),
|
||||
typeof(UploadToCDN)
|
||||
typeof(UploadToCDN),
|
||||
typeof(IndexDynDOLOD)
|
||||
};
|
||||
public static Dictionary<Type, string> TypeToName { get; set; }
|
||||
public static Dictionary<string, Type> NameToType { get; set; }
|
||||
|
67
Wabbajack.BuildServer/Models/Jobs/IndexDynDOLOD.cs
Normal file
67
Wabbajack.BuildServer/Models/Jobs/IndexDynDOLOD.cs
Normal file
@ -0,0 +1,67 @@
|
||||
using System;
|
||||
using System.Linq;
|
||||
using System.Net.Http;
|
||||
using System.Threading.Tasks;
|
||||
using HtmlAgilityPack;
|
||||
using MongoDB.Driver;
|
||||
using MongoDB.Driver.Linq;
|
||||
using Wabbajack.BuildServer.Models.JobQueue;
|
||||
using Wabbajack.Common;
|
||||
using Wabbajack.Lib;
|
||||
using Wabbajack.Lib.Downloaders;
|
||||
|
||||
namespace Wabbajack.BuildServer.Models.Jobs
|
||||
{
|
||||
/// <summary>
|
||||
/// DynDOLOD is really hosted on a STEP Forum post as a series of MEGA links. The Nexus URLs come and go
|
||||
/// but the real releases are on STEP. So let's keep that data fresh.
|
||||
/// </summary>
|
||||
public class IndexDynDOLOD : AJobPayload
|
||||
{
|
||||
public override string Description => "Queue MEGA URLs from the DynDOLOD Post";
|
||||
public override async Task<JobResult> Execute(DBContext db, AppSettings settings)
|
||||
{
|
||||
var doc = new HtmlDocument();
|
||||
var body = await new HttpClient().GetStringAsync(new Uri(
|
||||
"https://forum.step-project.com/topic/13894-dyndolod-beta-for-skyrim-special-edition-and-skyrim-vr-279/"));
|
||||
doc.LoadHtml(body);
|
||||
|
||||
var matches =
|
||||
doc.DocumentNode
|
||||
.Descendants()
|
||||
.Where(d=> d.NodeType == HtmlNodeType.Element && d.Attributes.Contains("href"))
|
||||
.Select(d => d.Attributes["href"].Value)
|
||||
.Select(m => Uri.TryCreate(m.ToString(), UriKind.Absolute, out var result) ? result : null)
|
||||
.Where(uri => uri != null && uri.Host == "mega.nz")
|
||||
.Select(url => new Job()
|
||||
{
|
||||
Payload = new IndexJob
|
||||
{
|
||||
Archive = new Archive
|
||||
{
|
||||
Name = Guid.NewGuid() + ".7z",
|
||||
State = new MegaDownloader.State
|
||||
{
|
||||
Url = url.ToString()
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
.ToList();
|
||||
|
||||
|
||||
foreach (var job in matches)
|
||||
{
|
||||
var key = ((MegaDownloader.State)((IndexJob)job.Payload).Archive.State).PrimaryKeyString;
|
||||
var found = await db.DownloadStates.AsQueryable().Where(s => s.Key == key).FirstOrDefaultAsync();
|
||||
if (found != null) continue;
|
||||
|
||||
Utils.Log($"Queuing {key} for indexing");
|
||||
await db.Jobs.InsertOneAsync(job);
|
||||
}
|
||||
|
||||
return JobResult.Success();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
@ -35,6 +35,7 @@ namespace Wabbajack.BuildServer.Models.Jobs
|
||||
|
||||
await db.Jobs.InsertOneAsync(new Job
|
||||
{
|
||||
Priority = Job.JobPriority.High,
|
||||
Payload = new IndexJob
|
||||
{
|
||||
Archive = new Archive
|
||||
|
Loading…
Reference in New Issue
Block a user