2020-05-13 21:52:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2020-07-16 12:28:05 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2020-05-13 21:52:34 +00:00
|
|
|
|
using Wabbajack.Common.Serialization.Json;
|
|
|
|
|
using Wabbajack.Lib;
|
|
|
|
|
using Wabbajack.Lib.ModListRegistry;
|
|
|
|
|
|
|
|
|
|
namespace Wabbajack.Server.DTOs
|
|
|
|
|
{
|
|
|
|
|
[JsonName("DetailedStatus")]
|
|
|
|
|
public class DetailedStatus
|
|
|
|
|
{
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public DateTime Checked { get; set; } = DateTime.UtcNow;
|
|
|
|
|
public List<DetailedStatusItem> Archives { get; set; }
|
|
|
|
|
public DownloadMetadata DownloadMetaData { get; set; }
|
|
|
|
|
public bool HasFailures { get; set; }
|
|
|
|
|
public string MachineName { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[JsonName("DetailedStatusItem")]
|
|
|
|
|
public class DetailedStatusItem
|
|
|
|
|
{
|
|
|
|
|
public bool IsFailing { get; set; }
|
|
|
|
|
public Archive Archive { get; set; }
|
2020-06-14 13:13:29 +00:00
|
|
|
|
|
2020-07-16 12:28:05 +00:00
|
|
|
|
public string Name => string.IsNullOrWhiteSpace(Archive.Name) ? Archive.State.PrimaryKeyString : Archive.Name;
|
|
|
|
|
public string Url => Archive.State.GetManifestURL(Archive);
|
|
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
|
public bool HasUrl => Url != null;
|
2020-06-14 13:13:29 +00:00
|
|
|
|
public ArchiveStatus ArchiveStatus { get; set; }
|
2020-05-13 21:52:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|