mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			185 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			185 lines
		
	
	
		
			6.3 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
 | 
						|
#pragma warning disable CS1591
 | 
						|
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Threading;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
using MediaBrowser.Model.Dto;
 | 
						|
using MediaBrowser.Model.Entities;
 | 
						|
using MediaBrowser.Model.Querying;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Persistence
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Provides an interface to implement an Item repository.
 | 
						|
    /// </summary>
 | 
						|
    public interface IItemRepository : IRepository
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Saves an item.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="item">The item.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        void SaveItem(BaseItem item, CancellationToken cancellationToken);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Deletes the item.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The identifier.</param>
 | 
						|
        void DeleteItem(Guid id);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Saves the items.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="items">The items.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        void SaveItems(IEnumerable<BaseItem> items, CancellationToken cancellationToken);
 | 
						|
 | 
						|
        void SaveImages(BaseItem item);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Retrieves the item.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The id.</param>
 | 
						|
        /// <returns>BaseItem.</returns>
 | 
						|
        BaseItem RetrieveItem(Guid id);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets chapters for an item.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The item.</param>
 | 
						|
        /// <returns>The list of chapter info.</returns>
 | 
						|
        List<ChapterInfo> GetChapters(BaseItem id);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets a single chapter for an item.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The item.</param>
 | 
						|
        /// <param name="index">The chapter index.</param>
 | 
						|
        /// <returns>The chapter info at the specified index.</returns>
 | 
						|
        ChapterInfo GetChapter(BaseItem id, int index);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Saves the chapters.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The item id.</param>
 | 
						|
        /// <param name="chapters">The list of chapters to save.</param>
 | 
						|
        void SaveChapters(Guid id, IReadOnlyList<ChapterInfo> chapters);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the media streams.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>IEnumerable{MediaStream}.</returns>
 | 
						|
        List<MediaStream> GetMediaStreams(MediaStreamQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Saves the media streams.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The identifier.</param>
 | 
						|
        /// <param name="streams">The streams.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        void SaveMediaStreams(Guid id, List<MediaStream> streams, CancellationToken cancellationToken);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the media attachments.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>IEnumerable{MediaAttachment}.</returns>
 | 
						|
        List<MediaAttachment> GetMediaAttachments(MediaAttachmentQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Saves the media attachments.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="id">The identifier.</param>
 | 
						|
        /// <param name="attachments">The attachments.</param>
 | 
						|
        /// <param name="cancellationToken">The cancellation token.</param>
 | 
						|
        void SaveMediaAttachments(Guid id, IReadOnlyList<MediaAttachment> attachments, CancellationToken cancellationToken);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the item ids.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>IEnumerable<Guid>.</returns>
 | 
						|
        QueryResult<Guid> GetItemIds(InternalItemsQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the items.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>QueryResult<BaseItem>.</returns>
 | 
						|
        QueryResult<BaseItem> GetItems(InternalItemsQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the item ids list.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>List<Guid>.</returns>
 | 
						|
        List<Guid> GetItemIdsList(InternalItemsQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the people.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>List<PersonInfo>.</returns>
 | 
						|
        List<PersonInfo> GetPeople(InternalPeopleQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Updates the people.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="itemId">The item identifier.</param>
 | 
						|
        /// <param name="people">The people.</param>
 | 
						|
        void UpdatePeople(Guid itemId, List<PersonInfo> people);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the people names.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>List<System.String>.</returns>
 | 
						|
        List<string> GetPeopleNames(InternalPeopleQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the item ids with path.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>QueryResult<Tuple<Guid, System.String>>.</returns>
 | 
						|
        List<Tuple<Guid, string>> GetItemIdsWithPath(InternalItemsQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the item list.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="query">The query.</param>
 | 
						|
        /// <returns>List<BaseItem>.</returns>
 | 
						|
        List<BaseItem> GetItemList(InternalItemsQuery query);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Updates the inherited values.
 | 
						|
        /// </summary>
 | 
						|
        void UpdateInheritedValues();
 | 
						|
 | 
						|
        int GetCount(InternalItemsQuery query);
 | 
						|
 | 
						|
        QueryResult<(BaseItem, ItemCounts)> GetGenres(InternalItemsQuery query);
 | 
						|
 | 
						|
        QueryResult<(BaseItem, ItemCounts)> GetMusicGenres(InternalItemsQuery query);
 | 
						|
 | 
						|
        QueryResult<(BaseItem, ItemCounts)> GetStudios(InternalItemsQuery query);
 | 
						|
 | 
						|
        QueryResult<(BaseItem, ItemCounts)> GetArtists(InternalItemsQuery query);
 | 
						|
 | 
						|
        QueryResult<(BaseItem, ItemCounts)> GetAlbumArtists(InternalItemsQuery query);
 | 
						|
 | 
						|
        QueryResult<(BaseItem, ItemCounts)> GetAllArtists(InternalItemsQuery query);
 | 
						|
 | 
						|
        List<string> GetMusicGenreNames();
 | 
						|
 | 
						|
        List<string> GetStudioNames();
 | 
						|
 | 
						|
        List<string> GetGenreNames();
 | 
						|
 | 
						|
        List<string> GetAllArtistNames();
 | 
						|
    }
 | 
						|
}
 |