2018-10-21 03:10:44 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using StardewModdingAPI.Toolkit.Framework.Clients.Wiki;
|
|
|
|
|
|
|
|
namespace StardewModdingAPI.Web.ViewModels
|
|
|
|
{
|
|
|
|
/// <summary>Metadata about a mod.</summary>
|
|
|
|
public class ModModel
|
|
|
|
{
|
|
|
|
/*********
|
|
|
|
** Accessors
|
|
|
|
*********/
|
|
|
|
/// <summary>The mod name.</summary>
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
|
|
|
/// <summary>The mod's alternative names, if any.</summary>
|
|
|
|
public string AlternateNames { get; set; }
|
|
|
|
|
|
|
|
/// <summary>The mod author's name.</summary>
|
|
|
|
public string Author { get; set; }
|
|
|
|
|
|
|
|
/// <summary>The mod author's alternative names, if any.</summary>
|
|
|
|
public string AlternateAuthors { get; set; }
|
|
|
|
|
|
|
|
/// <summary>The URL to the mod's source code, if any.</summary>
|
|
|
|
public string SourceUrl { get; set; }
|
|
|
|
|
|
|
|
/// <summary>The compatibility status for the stable version of the game.</summary>
|
|
|
|
public ModCompatibilityModel Compatibility { get; set; }
|
|
|
|
|
|
|
|
/// <summary>The compatibility status for the beta version of the game.</summary>
|
|
|
|
public ModCompatibilityModel BetaCompatibility { get; set; }
|
|
|
|
|
|
|
|
/// <summary>Links to the available mod pages.</summary>
|
|
|
|
public ModLinkModel[] ModPages { get; set; }
|
|
|
|
|
2018-10-28 09:15:53 +08:00
|
|
|
/// <summary>The human-readable warnings for players about this mod.</summary>
|
|
|
|
public string[] Warnings { get; set; }
|
|
|
|
|
2018-10-21 03:10:44 +08:00
|
|
|
/// <summary>A unique identifier for the mod that can be used in an anchor URL.</summary>
|
|
|
|
public string Slug { get; set; }
|
|
|
|
|
2018-11-10 06:35:56 +08:00
|
|
|
/// <summary>The sites where the mod can be downloaded.</summary>
|
|
|
|
public string[] ModPageSites => this.ModPages.Select(p => p.Text).ToArray();
|
|
|
|
|
2018-10-21 03:10:44 +08:00
|
|
|
|
|
|
|
/*********
|
|
|
|
** Public methods
|
|
|
|
*********/
|
|
|
|
/// <summary>Construct an instance.</summary>
|
|
|
|
/// <param name="entry">The mod metadata.</param>
|
|
|
|
public ModModel(WikiModEntry entry)
|
|
|
|
{
|
|
|
|
// basic info
|
2018-10-28 08:37:42 +08:00
|
|
|
this.Name = entry.Name.FirstOrDefault();
|
|
|
|
this.AlternateNames = string.Join(", ", entry.Name.Skip(1).ToArray());
|
|
|
|
this.Author = entry.Author.FirstOrDefault();
|
|
|
|
this.AlternateAuthors = string.Join(", ", entry.Author.Skip(1).ToArray());
|
2018-10-21 03:10:44 +08:00
|
|
|
this.SourceUrl = this.GetSourceUrl(entry);
|
|
|
|
this.Compatibility = new ModCompatibilityModel(entry.Compatibility);
|
|
|
|
this.BetaCompatibility = entry.BetaCompatibility != null ? new ModCompatibilityModel(entry.BetaCompatibility) : null;
|
|
|
|
this.ModPages = this.GetModPageUrls(entry).ToArray();
|
2018-10-28 09:15:53 +08:00
|
|
|
this.Warnings = entry.Warnings;
|
2018-10-21 03:10:44 +08:00
|
|
|
this.Slug = entry.Anchor;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*********
|
|
|
|
** Private methods
|
|
|
|
*********/
|
|
|
|
/// <summary>Get the web URL for the mod's source code repository, if any.</summary>
|
|
|
|
/// <param name="entry">The mod metadata.</param>
|
|
|
|
private string GetSourceUrl(WikiModEntry entry)
|
|
|
|
{
|
|
|
|
if (!string.IsNullOrWhiteSpace(entry.GitHubRepo))
|
|
|
|
return $"https://github.com/{entry.GitHubRepo}";
|
|
|
|
if (!string.IsNullOrWhiteSpace(entry.CustomSourceUrl))
|
|
|
|
return entry.CustomSourceUrl;
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>Get the web URLs for the mod pages, if any.</summary>
|
|
|
|
/// <param name="entry">The mod metadata.</param>
|
|
|
|
private IEnumerable<ModLinkModel> GetModPageUrls(WikiModEntry entry)
|
|
|
|
{
|
|
|
|
bool anyFound = false;
|
|
|
|
|
|
|
|
// normal mod pages
|
|
|
|
if (entry.NexusID.HasValue)
|
|
|
|
{
|
|
|
|
anyFound = true;
|
|
|
|
yield return new ModLinkModel($"https://www.nexusmods.com/stardewvalley/mods/{entry.NexusID}", "Nexus");
|
|
|
|
}
|
|
|
|
if (entry.ChucklefishID.HasValue)
|
|
|
|
{
|
|
|
|
anyFound = true;
|
|
|
|
yield return new ModLinkModel($"https://community.playstarbound.com/resources/{entry.ChucklefishID}", "Chucklefish");
|
|
|
|
}
|
2018-12-03 04:16:24 +08:00
|
|
|
if (entry.ModDropID.HasValue)
|
|
|
|
{
|
|
|
|
anyFound = true;
|
|
|
|
yield return new ModLinkModel($"https://www.moddrop.com/sdv/mod/467243/{entry.ModDropID}", "ModDrop");
|
|
|
|
}
|
2018-10-21 03:10:44 +08:00
|
|
|
|
|
|
|
// fallback
|
|
|
|
if (!anyFound && !string.IsNullOrWhiteSpace(entry.CustomUrl))
|
|
|
|
{
|
|
|
|
anyFound = true;
|
|
|
|
yield return new ModLinkModel(entry.CustomUrl, "custom");
|
|
|
|
}
|
|
|
|
if (!anyFound && !string.IsNullOrWhiteSpace(entry.GitHubRepo))
|
|
|
|
yield return new ModLinkModel($"https://github.com/{entry.GitHubRepo}/releases", "GitHub");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|