jellyfin/MediaBrowser.Controller/Collections/ICollectionManager.cs

68 lines
2.6 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2018-12-27 18:27:57 -05:00
using System.Collections.Generic;
2020-08-21 16:01:19 -04:00
using System.Threading.Tasks;
2020-05-20 13:07:53 -04:00
using Jellyfin.Data.Entities;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Collections
{
public interface ICollectionManager
{
/// <summary>
/// Occurs when [collection created].
/// </summary>
2021-08-15 11:20:07 -04:00
event EventHandler<CollectionCreatedEventArgs>? CollectionCreated;
2018-12-27 18:27:57 -05:00
/// <summary>
/// Occurs when [items added to collection].
/// </summary>
2021-08-15 11:20:07 -04:00
event EventHandler<CollectionModifiedEventArgs>? ItemsAddedToCollection;
2018-12-27 18:27:57 -05:00
/// <summary>
/// Occurs when [items removed from collection].
/// </summary>
2021-08-15 11:20:07 -04:00
event EventHandler<CollectionModifiedEventArgs>? ItemsRemovedFromCollection;
2018-12-27 18:27:57 -05:00
/// <summary>
/// Creates the collection.
/// </summary>
/// <param name="options">The options.</param>
/// <returns>BoxSet wrapped in an awaitable task.</returns>
2020-08-21 16:01:19 -04:00
Task<BoxSet> CreateCollectionAsync(CollectionCreationOptions options);
2018-12-27 18:27:57 -05:00
/// <summary>
/// Adds to collection.
/// </summary>
/// <param name="collectionId">The collection identifier.</param>
/// <param name="itemIds">The item ids.</param>
2020-08-21 16:01:19 -04:00
/// <returns><see cref="Task"/> representing the asynchronous operation.</returns>
Task AddToCollectionAsync(Guid collectionId, IEnumerable<Guid> itemIds);
2018-12-27 18:27:57 -05:00
/// <summary>
/// Removes from collection.
/// </summary>
/// <param name="collectionId">The collection identifier.</param>
/// <param name="itemIds">The item ids.</param>
2020-08-21 16:01:19 -04:00
/// <returns>A <see cref="Task"/> representing the asynchronous operation.</returns>
Task RemoveFromCollectionAsync(Guid collectionId, IEnumerable<Guid> itemIds);
2018-12-27 18:27:57 -05:00
/// <summary>
/// Collapses the items within box sets.
/// </summary>
/// <param name="items">The items.</param>
/// <param name="user">The user.</param>
/// <returns>IEnumerable{BaseItem}.</returns>
2020-05-20 13:07:53 -04:00
IEnumerable<BaseItem> CollapseItemsWithinBoxSets(IEnumerable<BaseItem> items, User user);
2023-02-01 13:34:58 -05:00
/// <summary>
/// Gets the folder where collections are stored.
/// </summary>
/// <param name="createIfNeeded">Will create the collection folder on the storage if set to true.</param>
/// <returns>The folder instance referencing the collection storage.</returns>
Task<Folder?> GetCollectionsFolder(bool createIfNeeded);
2018-12-27 18:27:57 -05:00
}
}