2013-09-04 17:02:19 +00:00
|
|
|
|
using MediaBrowser.Controller.Dto;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-05-25 23:52:41 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-07-02 18:34:08 +00:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2013-05-25 23:52:41 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
|
|
|
|
using System;
|
2015-07-08 16:10:34 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-05-25 23:52:41 +00:00
|
|
|
|
using System.Linq;
|
2016-06-19 06:18:29 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.Services;
|
2013-05-25 23:52:41 +00:00
|
|
|
|
|
2014-03-06 05:17:13 +00:00
|
|
|
|
namespace MediaBrowser.Api.Music
|
2013-05-25 23:52:41 +00:00
|
|
|
|
{
|
2014-04-27 03:42:05 +00:00
|
|
|
|
[Route("/Albums/{Id}/Similar", "GET", Summary = "Finds albums similar to a given album.")]
|
2013-08-09 15:55:22 +00:00
|
|
|
|
public class GetSimilarAlbums : BaseGetSimilarItemsFromItem
|
2013-05-25 23:52:41 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-21 02:36:30 +00:00
|
|
|
|
[Route("/Artists/{Id}/Similar", "GET", Summary = "Finds albums similar to a given album.")]
|
|
|
|
|
public class GetSimilarArtists : BaseGetSimilarItemsFromItem
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-02 18:34:08 +00:00
|
|
|
|
[Authenticated]
|
2013-05-25 23:52:41 +00:00
|
|
|
|
public class AlbumsService : BaseApiService
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _user manager
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly IUserManager _userManager;
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _user data repository
|
|
|
|
|
/// </summary>
|
2013-10-02 16:08:58 +00:00
|
|
|
|
private readonly IUserDataManager _userDataRepository;
|
2013-05-25 23:52:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _library manager
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2013-06-18 19:16:27 +00:00
|
|
|
|
private readonly IItemRepository _itemRepo;
|
2013-09-04 17:02:19 +00:00
|
|
|
|
private readonly IDtoService _dtoService;
|
2016-11-10 14:41:24 +00:00
|
|
|
|
private readonly IAuthorizationContext _authContext;
|
2013-05-25 23:52:41 +00:00
|
|
|
|
|
2016-11-10 14:41:24 +00:00
|
|
|
|
public AlbumsService(IUserManager userManager, IUserDataManager userDataRepository, ILibraryManager libraryManager, IItemRepository itemRepo, IDtoService dtoService, IAuthorizationContext authContext)
|
2013-05-25 23:52:41 +00:00
|
|
|
|
{
|
|
|
|
|
_userManager = userManager;
|
|
|
|
|
_userDataRepository = userDataRepository;
|
|
|
|
|
_libraryManager = libraryManager;
|
2013-06-18 19:16:27 +00:00
|
|
|
|
_itemRepo = itemRepo;
|
2013-09-04 17:02:19 +00:00
|
|
|
|
_dtoService = dtoService;
|
2016-11-10 14:41:24 +00:00
|
|
|
|
_authContext = authContext;
|
2013-05-25 23:52:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
|
public async Task<object> Get(GetSimilarArtists request)
|
2015-08-21 02:36:30 +00:00
|
|
|
|
{
|
2016-11-10 14:41:24 +00:00
|
|
|
|
var dtoOptions = GetDtoOptions(_authContext, request);
|
2015-08-21 02:36:30 +00:00
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
|
var result = await SimilarItemsHelper.GetSimilarItemsResult(dtoOptions, _userManager,
|
2016-03-25 03:53:42 +00:00
|
|
|
|
_itemRepo,
|
|
|
|
|
_libraryManager,
|
|
|
|
|
_userDataRepository,
|
|
|
|
|
_dtoService,
|
|
|
|
|
Logger,
|
|
|
|
|
request, new[] { typeof(MusicArtist) },
|
2016-06-19 06:18:29 +00:00
|
|
|
|
SimilarItemsHelper.GetSimiliarityScore).ConfigureAwait(false);
|
2015-08-21 02:36:30 +00:00
|
|
|
|
|
|
|
|
|
return ToOptimizedSerializedResultUsingCache(result);
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-25 23:52:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the specified request.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
2016-06-19 06:18:29 +00:00
|
|
|
|
public async Task<object> Get(GetSimilarAlbums request)
|
2013-05-25 23:52:41 +00:00
|
|
|
|
{
|
2016-11-10 14:41:24 +00:00
|
|
|
|
var dtoOptions = GetDtoOptions(_authContext, request);
|
2015-01-24 19:03:55 +00:00
|
|
|
|
|
2016-06-19 06:18:29 +00:00
|
|
|
|
var result = await SimilarItemsHelper.GetSimilarItemsResult(dtoOptions, _userManager,
|
2013-06-18 19:16:27 +00:00
|
|
|
|
_itemRepo,
|
2013-05-25 23:52:41 +00:00
|
|
|
|
_libraryManager,
|
|
|
|
|
_userDataRepository,
|
2013-09-04 17:02:19 +00:00
|
|
|
|
_dtoService,
|
2013-05-25 23:52:41 +00:00
|
|
|
|
Logger,
|
2016-03-25 03:53:42 +00:00
|
|
|
|
request, new[] { typeof(MusicAlbum) },
|
2016-06-19 06:18:29 +00:00
|
|
|
|
GetAlbumSimilarityScore).ConfigureAwait(false);
|
2013-05-25 23:52:41 +00:00
|
|
|
|
|
2014-02-04 04:04:19 +00:00
|
|
|
|
return ToOptimizedSerializedResultUsingCache(result);
|
2013-05-25 23:52:41 +00:00
|
|
|
|
}
|
2015-08-21 02:36:30 +00:00
|
|
|
|
|
2013-05-25 23:52:41 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the album similarity score.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item1">The item1.</param>
|
2015-07-08 16:10:34 +00:00
|
|
|
|
/// <param name="item1People">The item1 people.</param>
|
|
|
|
|
/// <param name="allPeople">All people.</param>
|
2013-05-25 23:52:41 +00:00
|
|
|
|
/// <param name="item2">The item2.</param>
|
|
|
|
|
/// <returns>System.Int32.</returns>
|
2015-07-08 16:10:34 +00:00
|
|
|
|
private int GetAlbumSimilarityScore(BaseItem item1, List<PersonInfo> item1People, List<PersonInfo> allPeople, BaseItem item2)
|
2013-05-25 23:52:41 +00:00
|
|
|
|
{
|
2015-07-08 16:10:34 +00:00
|
|
|
|
var points = SimilarItemsHelper.GetSimiliarityScore(item1, item1People, allPeople, item2);
|
2013-05-25 23:52:41 +00:00
|
|
|
|
|
|
|
|
|
var album1 = (MusicAlbum)item1;
|
|
|
|
|
var album2 = (MusicAlbum)item2;
|
|
|
|
|
|
2015-03-13 17:25:28 +00:00
|
|
|
|
var artists1 = album1
|
|
|
|
|
.AllArtists
|
2015-04-09 21:11:57 +00:00
|
|
|
|
.DistinctNames()
|
2013-05-25 23:52:41 +00:00
|
|
|
|
.ToList();
|
|
|
|
|
|
2015-03-13 17:25:28 +00:00
|
|
|
|
var artists2 = album2
|
|
|
|
|
.AllArtists
|
2015-04-09 21:11:57 +00:00
|
|
|
|
.DistinctNames()
|
2013-08-07 16:00:20 +00:00
|
|
|
|
.ToDictionary(i => i, StringComparer.OrdinalIgnoreCase);
|
2013-05-25 23:52:41 +00:00
|
|
|
|
|
2013-08-07 16:00:20 +00:00
|
|
|
|
return points + artists1.Where(artists2.ContainsKey).Sum(i => 5);
|
2013-05-25 23:52:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|