using MediaBrowser.Common; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Library; using MediaBrowser.Model.Entities; using ServiceStack; using System; using System.Collections.Generic; using System.Linq; namespace MediaBrowser.Api.Library { /// /// Class GetPhyscialPaths /// [Route("/Library/PhysicalPaths", "GET")] [Api(Description = "Gets a list of physical paths from virtual folders")] public class GetPhyscialPaths : IReturn> { } /// /// Class GetItemTypes /// [Route("/Library/ItemTypes", "GET")] [Api(Description = "Gets a list of BaseItem types")] public class GetItemTypes : IReturn> { /// /// Gets or sets a value indicating whether this instance has internet provider. /// /// true if this instance has internet provider; otherwise, false. [ApiMember(Name = "HasInternetProvider", Description = "Optional filter by item types that have internet providers. true/false", IsRequired = false, DataType = "boolean", ParameterType = "query", Verb = "GET")] public bool HasInternetProvider { get; set; } } /// /// Class LibraryService /// public class LibraryService : BaseApiService { /// /// The _app host /// private readonly IApplicationHost _appHost; private readonly ILibraryManager _libraryManager; /// /// Initializes a new instance of the class. /// /// The app host. /// The library manager. /// appHost public LibraryService(IApplicationHost appHost, ILibraryManager libraryManager) { if (appHost == null) { throw new ArgumentNullException("appHost"); } _appHost = appHost; _libraryManager = libraryManager; } /// /// Gets the specified request. /// /// The request. /// System.Object. public object Get(GetPhyscialPaths request) { var result = _libraryManager.RootFolder.Children .SelectMany(c => { var locationType = c.LocationType; if (locationType != LocationType.Remote && locationType != LocationType.Virtual) { return c.PhysicalLocations; } return new List(); }) .ToList(); return ToOptimizedSerializedResultUsingCache(result); } /// /// Gets the specified request. /// /// The request. /// System.Object. public object Get(GetItemTypes request) { var allTypes = _appHost.AllConcreteTypes.Where(t => t.IsSubclassOf(typeof(BaseItem))); if (request.HasInternetProvider) { allTypes = allTypes.Where(t => { if (t == typeof(UserRootFolder) || t == typeof(AggregateFolder) || t == typeof(Folder) || t == typeof(CollectionFolder) || t == typeof(Year)) { return false; } if (t == typeof(User)) { return false; } // For now it seems internet providers generally only deal with video subclasses if (t == typeof(Video)) { return false; } if (t.IsSubclassOf(typeof(BasePluginFolder))) { return false; } return true; }); } return allTypes.Select(t => t.Name).OrderBy(s => s).ToList(); } } }