You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/Hqub.MusicBrainz.API/Entities/ReleaseGroup.cs

160 lines
6.0 KiB

using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using System.Xml.Serialization;
using Hqub.MusicBrainz.API.Entities.Collections;
using Hqub.MusicBrainz.API.Entities.Metadata;
namespace Hqub.MusicBrainz.API.Entities
{
[XmlRoot("release-group", Namespace = "http://musicbrainz.org/ns/mmd-2.0#")]
public class ReleaseGroup : Entity
{
public const string EntityName = "release-group";
#region Properties
/// <summary>
/// Gets or sets the score (only available in search results).
/// </summary>
[XmlAttribute("score", Namespace = "http://musicbrainz.org/ns/ext#-2.0")]
public int Score { get; set; }
/// <summary>
/// Gets or sets the MusicBrainz id.
/// </summary>
[XmlAttribute("id")]
public string Id { get; set; }
/// <summary>
/// Gets or sets the type (like album, single or ep).
/// </summary>
[XmlAttribute("type")]
public string Type { get; set; }
/// <summary>
/// Gets or sets the title.
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
/// <summary>
/// Gets or sets the first release date.
/// </summary>
[XmlElement("first-release-date")]
public string FirstReleaseDate { get; set; }
/// <summary>
/// Gets or sets the primary type.
/// </summary>
[XmlElement("primary-type")]
public string PrimaryType { get; set; }
/// <summary>
/// Gets or sets the rating".
/// </summary>
[XmlElement("rating")]
public Rating Rating { get; set; }
/// <summary>
/// Gets or sets the tag-list.
/// </summary>
[XmlElement("tag-list")]
public TagList Tags { get; set; }
#endregion
#region Subqueries
[XmlArray("artist-credit")]
[XmlArrayItem("name-credit")]
public List<NameCredit> Credits { get; set; }
[XmlArray("release-list")]
[XmlArrayItem("release")]
public List<Release> Releases { get; set; }
#endregion
#region Static Methods
[Obsolete("Use GetAsync() method.")]
public static ReleaseGroup Get(string id, params string[] inc)
{
return GetAsync<ReleaseGroup>(EntityName, id, inc).Result;
}
[Obsolete("Use SearchAsync() method.")]
public static ReleaseGroupList Search(string query, int limit = 25, int offset = 0)
{
return SearchAsync<ReleaseGroupMetadata>(EntityName,
query, limit, offset).Result.Collection;
}
[Obsolete("Use BrowseAsync() method.")]
public static ReleaseGroupList Browse(string relatedEntity, string value, int limit = 25, int offset = 0, params string[] inc)
{
return BrowseAsync<ReleaseGroupMetadata>(EntityName,
relatedEntity, value, limit, offset, inc).Result.Collection;
}
/// <summary>
/// Lookup a release-group in the MusicBrainz database.
/// </summary>
/// <param name="id">The release-group MusicBrainz id.</param>
/// <param name="inc">A list of entities to include (subqueries).</param>
/// <returns></returns>
public async static Task<ReleaseGroup> GetAsync(string id, params string[] inc)
{
return await GetAsync<ReleaseGroup>(EntityName, id, inc);
}
/// <summary>
/// Search for a release-group in the MusicBrainz database, matching the given query.
/// </summary>
/// <param name="query">The query string.</param>
/// <param name="limit">The maximum number of release-groups to return (default = 25).</param>
/// <param name="offset">The offset to the release-groups list (enables paging, default = 0).</param>
/// <returns></returns>
public async static Task<ReleaseGroupList> SearchAsync(string query, int limit = 25, int offset = 0)
{
return (await SearchAsync<ReleaseGroupMetadata>(EntityName,
query, limit, offset)).Collection;
}
/// <summary>
/// Search for a release-group in the MusicBrainz database, matching the given query.
/// </summary>
/// <param name="query">The query parameters.</param>
/// <param name="limit">The maximum number of release-groups to return (default = 25).</param>
/// <param name="offset">The offset to the release-groups list (enables paging, default = 0).</param>
/// <returns></returns>
public async static Task<ReleaseGroupList> SearchAsync(QueryParameters<ReleaseGroup> query, int limit = 25, int offset = 0)
{
return (await SearchAsync<ReleaseGroupMetadata>(EntityName,
query.ToString(), limit, offset)).Collection;
}
/// <summary>
/// Browse all the release-groups in the MusicBrainz database, which are directly linked to the
/// entity with given id.
/// </summary>
/// <param name="entity">The name of the related entity.</param>
/// <param name="id">The id of the related entity.</param>
/// <param name="limit">The maximum number of release-groups to return (default = 25).</param>
/// <param name="offset">The offset to the release-groups list (enables paging, default = 0).</param>
/// <param name="inc">A list of entities to include (subqueries).</param>
/// <returns></returns>
public async static Task<ReleaseGroupList> BrowseAsync(string entity, string id, int limit = 25, int offset = 0, params string[] inc)
{
return (await BrowseAsync<ReleaseGroupMetadata>(EntityName, entity, id,
limit, offset, inc)).Collection;
}
// TODO: add string parameter 'type' and 'status' to browse methods
// see http://musicbrainz.org/doc/Development/XML_Web_Service/Version_2#Release_Type_and_Status
#endregion
}
}