using System.Collections.Generic; using System.Linq; using StardewModdingAPI.Toolkit.Framework.Clients.Wiki; namespace StardewModdingAPI.Web.ViewModels { /// Metadata about a mod. public class ModModel { /********* ** Accessors *********/ /// The mod name. public string Name { get; set; } /// The mod's alternative names, if any. public string AlternateNames { get; set; } /// The mod author's name. public string Author { get; set; } /// The mod author's alternative names, if any. public string AlternateAuthors { get; set; } /// The URL to the mod's source code, if any. public string SourceUrl { get; set; } /// The compatibility status for the stable version of the game. public ModCompatibilityModel Compatibility { get; set; } /// The compatibility status for the beta version of the game. public ModCompatibilityModel BetaCompatibility { get; set; } /// Links to the available mod pages. public ModLinkModel[] ModPages { get; set; } /// The game or SMAPI version which broke this mod (if applicable). public string BrokeIn { get; set; } /// A unique identifier for the mod that can be used in an anchor URL. public string Slug { get; set; } /********* ** Public methods *********/ /// Construct an instance. /// The mod metadata. public ModModel(WikiModEntry entry) { // basic info this.Name = entry.Name; this.AlternateNames = entry.AlternateNames; this.Author = entry.Author; this.AlternateAuthors = entry.AlternateAuthors; 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(); this.BrokeIn = entry.BrokeIn; this.Slug = entry.Anchor; } /********* ** Private methods *********/ /// Get the web URL for the mod's source code repository, if any. /// The mod metadata. 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; } /// Get the web URLs for the mod pages, if any. /// The mod metadata. private IEnumerable 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"); } // 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"); } } }