summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/Framework/Clients/GenericModDownload.cs
blob: 6c9c08efb26394904f6566a09fcc58a0fe10a8a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;

namespace StardewModdingAPI.Web.Framework.Clients
{
    /// <summary>Generic metadata about a file download on a mod page.</summary>
    internal class GenericModDownload : IModDownload
    {
        /*********
        ** Accessors
        *********/
        /// <summary>The download's display name.</summary>
        public string Name { get; }

        /// <summary>The download's description.</summary>
        public string? Description { get; }

        /// <summary>The download's file version.</summary>
        public string? Version { get; }

        /// <summary>The mod URL page from which to download this update, if different from the URL of the mod page it was fetched from.</summary>
        public string? ModPageUrl { get; }


        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="name">The download's display name.</param>
        /// <param name="description">The download's description.</param>
        /// <param name="version">The download's file version.</param>
        /// <param name="modPageUrl">The mod URL page from which to download this update, if different from the URL of the mod page it was fetched from.</param>
        public GenericModDownload(string name, string? description, string? version, string? modPageUrl = null)
        {
            this.Name = name;
            this.Description = description;
            this.Version = version;
            this.ModPageUrl = modPageUrl;
        }

        /// <summary>Get whether the subkey matches this download.</summary>
        /// <param name="subkey">The update subkey to check.</param>
        public virtual bool MatchesSubkey(string subkey)
        {
            return
                this.Name.Contains(subkey, StringComparison.OrdinalIgnoreCase)
                || this.Description?.Contains(subkey, StringComparison.OrdinalIgnoreCase) == true;
        }
    }
}