2013-02-19 02:13:42 +01:00
|
|
|
|
using System;
|
|
|
|
|
using AutoMapper;
|
2013-02-23 18:42:15 +01:00
|
|
|
|
using NzbDrone.Api.Calendar;
|
2013-03-02 20:13:23 +01:00
|
|
|
|
using NzbDrone.Api.Episodes;
|
2013-05-03 08:53:32 +02:00
|
|
|
|
using NzbDrone.Api.History;
|
2013-03-21 04:02:57 +01:00
|
|
|
|
using NzbDrone.Api.Missing;
|
2013-05-20 02:30:02 +02:00
|
|
|
|
using NzbDrone.Api.Qualities;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
using NzbDrone.Api.Resolvers;
|
|
|
|
|
using NzbDrone.Api.Series;
|
2013-05-02 07:50:34 +02:00
|
|
|
|
using NzbDrone.Core.Datastore;
|
2013-02-27 04:19:22 +01:00
|
|
|
|
using NzbDrone.Core.Qualities;
|
2013-02-20 08:45:52 +01:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-02-19 02:13:42 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Api
|
|
|
|
|
{
|
|
|
|
|
public static class AutomapperBootstraper
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public static void InitializeAutomapper()
|
|
|
|
|
{
|
|
|
|
|
//QualityProfiles
|
2013-05-20 02:30:02 +02:00
|
|
|
|
Mapper.CreateMap<QualityProfile, QualityProfileResource>()
|
2013-02-19 02:13:42 +01:00
|
|
|
|
.ForMember(dest => dest.Qualities,
|
|
|
|
|
opt => opt.ResolveUsing<AllowedToQualitiesResolver>().FromMember(src => src.Allowed));
|
|
|
|
|
|
2013-05-20 02:30:02 +02:00
|
|
|
|
Mapper.CreateMap<QualityProfileResource, QualityProfile>()
|
2013-02-19 02:13:42 +01:00
|
|
|
|
.ForMember(dest => dest.Allowed,
|
|
|
|
|
opt => opt.ResolveUsing<QualitiesToAllowedResolver>().FromMember(src => src.Qualities));
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
Mapper.CreateMap<Quality, QualityProfileType>()
|
2013-02-19 02:13:42 +01:00
|
|
|
|
.ForMember(dest => dest.Allowed, opt => opt.Ignore());
|
|
|
|
|
|
2013-02-27 04:19:22 +01:00
|
|
|
|
//QualitySize
|
2013-03-07 09:01:18 +01:00
|
|
|
|
Mapper.CreateMap<QualitySize, QualitySizeResource>()
|
2013-02-27 04:19:22 +01:00
|
|
|
|
.ForMember(dest => dest.Id, opt => opt.MapFrom(src => src.QualityId));
|
2013-02-19 02:13:42 +01:00
|
|
|
|
|
2013-03-07 09:01:18 +01:00
|
|
|
|
Mapper.CreateMap<QualitySizeResource, QualitySize>()
|
2013-02-27 04:19:22 +01:00
|
|
|
|
.ForMember(dest => dest.QualityId, opt => opt.MapFrom(src => src.Id));
|
2013-02-19 02:13:42 +01:00
|
|
|
|
|
2013-03-02 20:13:23 +01:00
|
|
|
|
//Episode
|
|
|
|
|
Mapper.CreateMap<Episode, EpisodeResource>();
|
2013-05-02 07:50:34 +02:00
|
|
|
|
|
|
|
|
|
//Episode Paging
|
|
|
|
|
Mapper.CreateMap<PagingSpec<Episode>, PagingResource<EpisodeResource>>();
|
2013-05-03 08:53:32 +02:00
|
|
|
|
|
|
|
|
|
//History
|
2013-05-11 00:33:04 +02:00
|
|
|
|
Mapper.CreateMap<Core.History.History, HistoryResource>();
|
2013-05-03 08:53:32 +02:00
|
|
|
|
Mapper.CreateMap<PagingSpec<Core.History.History>, PagingResource<HistoryResource>>();
|
2013-02-19 02:13:42 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|