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/NzbDrone.Api/Albums/AlbumResource.cs

85 lines
2.6 KiB

using NzbDrone.Core.Music;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using NzbDrone.Api.REST;
using NzbDrone.Api.Music;
using NzbDrone.Core.MediaCover;
namespace NzbDrone.Api.Albums
{
public class AlbumResource : RestResource
{
public string Title { get; set; }
public int ArtistId { get; set; }
public string Label { get; set; }
public bool Monitored { get; set; }
public string Path { get; set; }
public int ProfileId { get; set; }
public int Duration { get; set; }
public Ratings Ratings { get; set; }
public DateTime? ReleaseDate { get; set; }
public List<string> Genres { get; set; }
public ArtistResource Artist { get; set; }
public List<MediaCover> Images { get; set; }
public AlbumStatisticsResource Statistics { get; set; }
}
public static class AlbumResourceMapper
{
public static AlbumResource ToResource(this Core.Music.Album model)
{
if (model == null) return null;
return new AlbumResource
{
Id = model.Id,
ArtistId = model.ArtistId,
Label = model.Label,
Path = model.Path,
ProfileId = model.ProfileId,
Monitored = model.Monitored,
ReleaseDate = model.ReleaseDate,
Genres = model.Genres,
Title = model.Title,
Images = model.Images,
Ratings = model.Ratings,
Duration = model.Duration,
};
}
public static Album ToModel(this AlbumResource resource)
{
if (resource == null) return null;
return new Core.Music.Album
{
Id = resource.Id,
ArtistId = resource.ArtistId,
Label = resource.Label,
Path = resource.Path,
Monitored = resource.Monitored,
ProfileId = resource.ProfileId,
ReleaseDate = resource.ReleaseDate,
Genres = resource.Genres,
Title = resource.Title,
Images = resource.Images,
Ratings = resource.Ratings,
};
}
public static List<AlbumResource> ToResource(this IEnumerable<Album> models)
{
return models.Select(ToResource).ToList();
}
public static List<Album> ToModel(this IEnumerable<AlbumResource> resources)
{
return resources?.Select(ToModel).ToList() ?? new List<Album>();
}
}
}