2013-02-28 19:32:41 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-04-17 14:42:25 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-02-27 20:25:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-04-13 18:02:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Persistence;
|
2013-04-17 14:42:25 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using ServiceStack.ServiceHost;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Api.UserLibrary
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class GetStudios
|
|
|
|
|
/// </summary>
|
2013-03-16 19:27:54 +00:00
|
|
|
|
[Route("/Users/{UserId}/Items/{ParentId}/Studios", "GET")]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
[Route("/Users/{UserId}/Items/Root/Studios", "GET")]
|
2013-04-10 15:32:09 +00:00
|
|
|
|
[Api(Description = "Gets all studios from a given item, folder, or the entire library")]
|
2013-02-21 01:33:05 +00:00
|
|
|
|
public class GetStudios : GetItemsByName
|
|
|
|
|
{
|
|
|
|
|
}
|
2013-04-17 14:42:25 +00:00
|
|
|
|
|
|
|
|
|
[Route("/Users/{UserId}/Studios/{Name}/Counts", "GET")]
|
|
|
|
|
[Api(Description = "Gets item counts of library items that a studio appears in")]
|
|
|
|
|
public class GetStudioItemCounts : IReturn<ItemByNameCounts>
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the user id.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The user id.</value>
|
|
|
|
|
[ApiMember(Name = "UserId", Description = "User Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
|
|
|
|
|
public Guid UserId { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The name.</value>
|
|
|
|
|
[ApiMember(Name = "Name", Description = "The studio name", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class StudiosService
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class StudiosService : BaseItemsByNameService<Studio>
|
|
|
|
|
{
|
2013-04-13 18:02:30 +00:00
|
|
|
|
public StudiosService(IUserManager userManager, ILibraryManager libraryManager, IUserDataRepository userDataRepository)
|
|
|
|
|
: base(userManager, libraryManager, userDataRepository)
|
2013-02-27 20:25:45 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-17 14:42:25 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the specified request.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
|
public object Get(GetStudioItemCounts request)
|
|
|
|
|
{
|
|
|
|
|
var user = UserManager.GetUserById(request.UserId);
|
|
|
|
|
|
|
|
|
|
var items = user.RootFolder.GetRecursiveChildren(user).Where(i => i.Studios != null && i.Studios.Contains(request.Name, StringComparer.OrdinalIgnoreCase)).ToList();
|
|
|
|
|
|
|
|
|
|
var counts = new ItemByNameCounts
|
|
|
|
|
{
|
|
|
|
|
TotalCount = items.Count,
|
|
|
|
|
|
|
|
|
|
TrailerCount = items.OfType<Trailer>().Count(),
|
|
|
|
|
|
|
|
|
|
MovieCount = items.OfType<Movie>().Count(),
|
|
|
|
|
|
|
|
|
|
SeriesCount = items.OfType<Series>().Count(),
|
|
|
|
|
|
|
|
|
|
GameCount = items.OfType<BaseGame>().Count(),
|
|
|
|
|
|
|
|
|
|
SongCount = items.OfType<AudioCodecs>().Count(),
|
|
|
|
|
|
|
|
|
|
AlbumCount = items.OfType<MusicAlbum>().Count()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return ToOptimizedResult(counts);
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the specified request.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
|
public object Get(GetStudios request)
|
|
|
|
|
{
|
|
|
|
|
var result = GetResult(request).Result;
|
|
|
|
|
|
|
|
|
|
return ToOptimizedResult(result);
|
|
|
|
|
}
|
2013-04-13 00:42:51 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets all items.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="request">The request.</param>
|
|
|
|
|
/// <param name="items">The items.</param>
|
|
|
|
|
/// <param name="user">The user.</param>
|
|
|
|
|
/// <returns>IEnumerable{Tuple{System.StringFunc{System.Int32}}}.</returns>
|
2013-04-13 21:49:16 +00:00
|
|
|
|
protected override IEnumerable<IbnStub<Studio>> GetAllItems(GetItemsByName request, IEnumerable<BaseItem> items, User user)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
var itemsList = items.Where(i => i.Studios != null).ToList();
|
|
|
|
|
|
|
|
|
|
return itemsList
|
|
|
|
|
.SelectMany(i => i.Studios)
|
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
2013-04-13 21:49:16 +00:00
|
|
|
|
.Select(name => new IbnStub<Studio>(name, () => itemsList.Where(i => i.Studios.Contains(name, StringComparer.OrdinalIgnoreCase)), GetEntity));
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the entity.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="name">The name.</param>
|
|
|
|
|
/// <returns>Task{Studio}.</returns>
|
2013-04-13 21:49:16 +00:00
|
|
|
|
protected Task<Studio> GetEntity(string name)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-28 19:32:41 +00:00
|
|
|
|
return LibraryManager.GetStudio(name);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|