mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
83 lines
2.6 KiB
C#
83 lines
2.6 KiB
C#
// Kyoo - A portable and vast media library solution.
|
|
// Copyright (c) Kyoo.
|
|
//
|
|
// See AUTHORS.md and LICENSE file in the project root for full license information.
|
|
//
|
|
// Kyoo is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// any later version.
|
|
//
|
|
// Kyoo is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with Kyoo. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Kyoo.Abstractions.Controllers;
|
|
using Kyoo.Abstractions.Models.Attributes;
|
|
using Kyoo.Utils;
|
|
|
|
namespace Kyoo.Abstractions.Models
|
|
{
|
|
/// <summary>
|
|
/// This class contains metadata about <see cref="IMetadataProvider"/>.
|
|
/// You can have providers even if you don't have the corresponding <see cref="IMetadataProvider"/>.
|
|
/// </summary>
|
|
public class Provider : IResource, IThumbnails
|
|
{
|
|
/// <inheritdoc />
|
|
public int ID { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public string Slug { get; set; }
|
|
|
|
/// <summary>
|
|
/// The name of this provider.
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <inheritdoc />
|
|
public Dictionary<int, string> Images { get; set; }
|
|
|
|
/// <summary>
|
|
/// The path of this provider's logo.
|
|
/// By default, the http path for this logo is returned from the public API.
|
|
/// This can be disabled using the internal query flag.
|
|
/// </summary>
|
|
[SerializeAs("{HOST}/api/providers/{Slug}/logo")]
|
|
[Obsolete("Use Images instead of this, this is only kept for the API response.")]
|
|
public string Logo => Images?.GetValueOrDefault(Models.Images.Logo);
|
|
|
|
/// <summary>
|
|
/// The list of libraries that uses this provider.
|
|
/// </summary>
|
|
[LoadableRelation] public ICollection<Library> Libraries { get; set; }
|
|
|
|
/// <summary>
|
|
/// Create a new, default, <see cref="Provider"/>
|
|
/// </summary>
|
|
public Provider() { }
|
|
|
|
/// <summary>
|
|
/// Create a new <see cref="Provider"/> and specify it's <see cref="Name"/>.
|
|
/// The <see cref="Slug"/> is automatically calculated from it's name.
|
|
/// </summary>
|
|
/// <param name="name">The name of this provider.</param>
|
|
/// <param name="logo">The logo of this provider.</param>
|
|
public Provider(string name, string logo)
|
|
{
|
|
Slug = Utility.ToSlug(name);
|
|
Name = name;
|
|
Images = new Dictionary<int, string>
|
|
{
|
|
[Models.Images.Logo] = logo
|
|
};
|
|
}
|
|
}
|
|
}
|