2014-03-07 15:53:23 +00:00
using MediaBrowser.Controller.Collections ;
2014-06-04 03:34:36 +00:00
using MediaBrowser.Controller.Dto ;
2014-07-02 18:34:08 +00:00
using MediaBrowser.Controller.Net ;
2014-08-02 02:34:45 +00:00
using MediaBrowser.Model.Collections ;
2014-03-07 15:53:23 +00:00
using ServiceStack ;
using System ;
2014-06-04 03:34:36 +00:00
using System.Collections.Generic ;
2014-03-07 15:53:23 +00:00
using System.Linq ;
using System.Threading.Tasks ;
namespace MediaBrowser.Api.Movies
{
2014-03-21 03:31:40 +00:00
[Route("/Collections", "POST", Summary = "Creates a new collection")]
2014-06-04 03:34:36 +00:00
public class CreateCollection : IReturn < CollectionCreationResult >
2014-03-07 15:53:23 +00:00
{
[ApiMember(Name = "IsLocked", Description = "Whether or not to lock the new collection.", IsRequired = false, DataType = "bool", ParameterType = "query", Verb = "POST")]
public bool IsLocked { get ; set ; }
[ApiMember(Name = "Name", Description = "The name of the new collection.", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
public string Name { get ; set ; }
[ApiMember(Name = "ParentId", Description = "Optional - create the collection within a specific folder", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST")]
2015-05-29 23:51:33 +00:00
public string ParentId { get ; set ; }
2014-06-04 03:34:36 +00:00
[ApiMember(Name = "Ids", Description = "Item Ids to add to the collection", IsRequired = false, DataType = "string", ParameterType = "query", Verb = "POST", AllowMultiple = true)]
public string Ids { get ; set ; }
2014-03-07 15:53:23 +00:00
}
2014-03-21 03:31:40 +00:00
[Route("/Collections/{Id}/Items", "POST", Summary = "Adds items to a collection")]
2014-03-07 15:53:23 +00:00
public class AddToCollection : IReturnVoid
{
[ApiMember(Name = "Ids", Description = "Item id, comma delimited", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")]
public string Ids { get ; set ; }
[ApiMember(Name = "Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
2015-05-29 23:51:33 +00:00
public string Id { get ; set ; }
2014-03-07 15:53:23 +00:00
}
2014-03-21 03:31:40 +00:00
[Route("/Collections/{Id}/Items", "DELETE", Summary = "Removes items from a collection")]
2014-03-07 15:53:23 +00:00
public class RemoveFromCollection : IReturnVoid
{
[ApiMember(Name = "Ids", Description = "Item id, comma delimited", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")]
public string Ids { get ; set ; }
[ApiMember(Name = "Id", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "DELETE")]
2015-05-29 23:51:33 +00:00
public string Id { get ; set ; }
2014-03-07 15:53:23 +00:00
}
2014-07-02 18:34:08 +00:00
[Authenticated]
2014-03-07 15:53:23 +00:00
public class CollectionService : BaseApiService
{
private readonly ICollectionManager _collectionManager ;
2014-06-04 03:34:36 +00:00
private readonly IDtoService _dtoService ;
2014-03-07 15:53:23 +00:00
2014-06-04 03:34:36 +00:00
public CollectionService ( ICollectionManager collectionManager , IDtoService dtoService )
2014-03-07 15:53:23 +00:00
{
_collectionManager = collectionManager ;
2014-06-04 03:34:36 +00:00
_dtoService = dtoService ;
2014-03-07 15:53:23 +00:00
}
2014-08-17 05:38:13 +00:00
public async Task < object > Post ( CreateCollection request )
2014-03-07 15:53:23 +00:00
{
2015-04-26 04:39:40 +00:00
var userId = AuthorizationContext . GetAuthorizationInfo ( Request ) . UserId ;
2015-05-29 23:51:33 +00:00
var parentId = string . IsNullOrWhiteSpace ( request . ParentId ) ? ( Guid ? ) null : new Guid ( request . ParentId ) ;
2014-08-17 05:38:13 +00:00
var item = await _collectionManager . CreateCollection ( new CollectionCreationOptions
2014-03-07 15:53:23 +00:00
{
IsLocked = request . IsLocked ,
Name = request . Name ,
2015-05-29 23:51:33 +00:00
ParentId = parentId ,
2015-04-26 04:39:40 +00:00
ItemIdList = ( request . Ids ? ? string . Empty ) . Split ( ',' ) . Where ( i = > ! string . IsNullOrWhiteSpace ( i ) ) . Select ( i = > new Guid ( i ) ) . ToList ( ) ,
UserIds = new List < Guid > { new Guid ( userId ) }
2014-03-07 15:53:23 +00:00
2014-08-17 05:38:13 +00:00
} ) . ConfigureAwait ( false ) ;
2014-06-04 03:34:36 +00:00
2015-01-24 19:03:55 +00:00
var dtoOptions = GetDtoOptions ( request ) ;
2014-12-27 05:08:39 +00:00
var dto = _dtoService . GetBaseItemDto ( item , dtoOptions ) ;
2014-06-04 03:34:36 +00:00
return ToOptimizedResult ( new CollectionCreationResult
{
Id = dto . Id
} ) ;
2014-03-07 15:53:23 +00:00
}
public void Post ( AddToCollection request )
{
2015-05-29 23:51:33 +00:00
var task = _collectionManager . AddToCollection ( new Guid ( request . Id ) , request . Ids . Split ( ',' ) . Select ( i = > new Guid ( i ) ) ) ;
2014-03-07 15:53:23 +00:00
Task . WaitAll ( task ) ;
}
public void Delete ( RemoveFromCollection request )
{
2015-05-29 23:51:33 +00:00
var task = _collectionManager . RemoveFromCollection ( new Guid ( request . Id ) , request . Ids . Split ( ',' ) . Select ( i = > new Guid ( i ) ) ) ;
2014-03-07 15:53:23 +00:00
Task . WaitAll ( task ) ;
}
}
}