2014-01-12 21:32:13 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-05-12 15:27:56 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2013-03-16 05:52:33 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-12-07 15:52:38 +00:00
|
|
|
|
using MediaBrowser.Controller.Net;
|
2014-03-25 21:13:55 +00:00
|
|
|
|
using MediaBrowser.Controller.Session;
|
2013-03-16 05:52:33 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2015-01-22 16:41:34 +00:00
|
|
|
|
using ServiceStack.Text.Controller;
|
2014-01-12 21:32:13 +00:00
|
|
|
|
using ServiceStack.Web;
|
2013-03-16 05:52:33 +00:00
|
|
|
|
using System;
|
2013-03-24 02:45:00 +00:00
|
|
|
|
using System.Collections.Generic;
|
2013-05-12 20:30:23 +00:00
|
|
|
|
using System.Linq;
|
2013-03-16 05:52:33 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Api
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class BaseApiService
|
|
|
|
|
/// </summary>
|
2014-07-02 04:57:18 +00:00
|
|
|
|
public class BaseApiService : IHasResultFactory, IRestfulService, IHasSession
|
2013-03-16 05:52:33 +00:00
|
|
|
|
{
|
2013-03-24 02:45:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the logger.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The logger.</value>
|
|
|
|
|
public ILogger Logger { get; set; }
|
2015-01-22 16:41:34 +00:00
|
|
|
|
|
2013-03-24 02:45:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the HTTP result factory.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The HTTP result factory.</value>
|
|
|
|
|
public IHttpResultFactory ResultFactory { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the request context.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The request context.</value>
|
2013-12-07 15:52:38 +00:00
|
|
|
|
public IRequest Request { get; set; }
|
|
|
|
|
|
2014-07-02 04:57:18 +00:00
|
|
|
|
public ISessionContext SessionContext { get; set; }
|
|
|
|
|
|
2013-12-07 15:52:38 +00:00
|
|
|
|
public string GetHeader(string name)
|
|
|
|
|
{
|
|
|
|
|
return Request.Headers[name];
|
|
|
|
|
}
|
2013-05-12 15:27:56 +00:00
|
|
|
|
|
2013-03-24 02:45:00 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// To the optimized result.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
/// <param name="result">The result.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
|
protected object ToOptimizedResult<T>(T result)
|
|
|
|
|
where T : class
|
|
|
|
|
{
|
2013-12-07 15:52:38 +00:00
|
|
|
|
return ResultFactory.GetOptimizedResult(Request, result);
|
2013-03-24 02:45:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// To the optimized result using cache.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
/// <param name="cacheKey">The cache key.</param>
|
|
|
|
|
/// <param name="lastDateModified">The last date modified.</param>
|
|
|
|
|
/// <param name="cacheDuration">Duration of the cache.</param>
|
2014-02-04 04:04:19 +00:00
|
|
|
|
/// <param name="factoryFn">The factory function.</param>
|
2013-03-24 02:45:00 +00:00
|
|
|
|
/// <returns>System.Object.</returns>
|
2014-02-04 04:04:19 +00:00
|
|
|
|
protected object ToOptimizedResultUsingCache<T>(Guid cacheKey, DateTime? lastDateModified, TimeSpan? cacheDuration, Func<T> factoryFn)
|
|
|
|
|
where T : class
|
2013-03-24 02:45:00 +00:00
|
|
|
|
{
|
2013-12-07 15:52:38 +00:00
|
|
|
|
return ResultFactory.GetOptimizedResultUsingCache(Request, cacheKey, lastDateModified, cacheDuration, factoryFn);
|
2013-03-24 02:45:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-04 04:04:19 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// To the optimized serialized result using cache.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <typeparam name="T"></typeparam>
|
|
|
|
|
/// <param name="result">The result.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
|
protected object ToOptimizedSerializedResultUsingCache<T>(T result)
|
|
|
|
|
where T : class
|
|
|
|
|
{
|
2014-02-09 21:11:11 +00:00
|
|
|
|
return ToOptimizedResult(result);
|
2014-02-04 04:04:19 +00:00
|
|
|
|
}
|
2014-02-13 01:52:24 +00:00
|
|
|
|
|
2014-03-25 21:13:55 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the session.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>SessionInfo.</returns>
|
2014-07-02 04:57:18 +00:00
|
|
|
|
protected SessionInfo GetSession()
|
2014-03-25 21:13:55 +00:00
|
|
|
|
{
|
2014-07-02 04:57:18 +00:00
|
|
|
|
var session = SessionContext.GetSession(Request);
|
2014-06-25 15:12:39 +00:00
|
|
|
|
|
|
|
|
|
if (session == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("Session not found.");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return session;
|
2014-03-25 21:13:55 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-02 14:30:38 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// To the static file result.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="path">The path.</param>
|
|
|
|
|
/// <returns>System.Object.</returns>
|
|
|
|
|
protected object ToStaticFileResult(string path)
|
|
|
|
|
{
|
2013-12-07 15:52:38 +00:00
|
|
|
|
return ResultFactory.GetStaticFileResult(Request, path);
|
2013-05-02 14:30:38 +00:00
|
|
|
|
}
|
2013-05-12 15:27:56 +00:00
|
|
|
|
|
2014-10-25 18:32:58 +00:00
|
|
|
|
private readonly char[] _dashReplaceChars = { '?', '/', '&' };
|
2013-05-12 15:27:56 +00:00
|
|
|
|
private const char SlugChar = '-';
|
|
|
|
|
|
2013-11-21 20:48:26 +00:00
|
|
|
|
protected MusicArtist GetArtist(string name, ILibraryManager libraryManager)
|
2013-05-12 15:27:56 +00:00
|
|
|
|
{
|
|
|
|
|
return libraryManager.GetArtist(DeSlugArtistName(name, libraryManager));
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-17 02:08:18 +00:00
|
|
|
|
protected Studio GetStudio(string name, ILibraryManager libraryManager)
|
2013-05-12 15:27:56 +00:00
|
|
|
|
{
|
|
|
|
|
return libraryManager.GetStudio(DeSlugStudioName(name, libraryManager));
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-17 02:08:18 +00:00
|
|
|
|
protected Genre GetGenre(string name, ILibraryManager libraryManager)
|
2013-05-12 15:27:56 +00:00
|
|
|
|
{
|
|
|
|
|
return libraryManager.GetGenre(DeSlugGenreName(name, libraryManager));
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-17 02:08:18 +00:00
|
|
|
|
protected MusicGenre GetMusicGenre(string name, ILibraryManager libraryManager)
|
2013-06-11 03:31:00 +00:00
|
|
|
|
{
|
|
|
|
|
return libraryManager.GetMusicGenre(DeSlugGenreName(name, libraryManager));
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-17 02:08:18 +00:00
|
|
|
|
protected GameGenre GetGameGenre(string name, ILibraryManager libraryManager)
|
2013-07-01 17:17:33 +00:00
|
|
|
|
{
|
2013-07-01 18:17:55 +00:00
|
|
|
|
return libraryManager.GetGameGenre(DeSlugGameGenreName(name, libraryManager));
|
2013-07-01 17:17:33 +00:00
|
|
|
|
}
|
2013-09-17 02:08:18 +00:00
|
|
|
|
|
|
|
|
|
protected Person GetPerson(string name, ILibraryManager libraryManager)
|
2013-05-12 15:27:56 +00:00
|
|
|
|
{
|
|
|
|
|
return libraryManager.GetPerson(DeSlugPersonName(name, libraryManager));
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 21:13:32 +00:00
|
|
|
|
protected IEnumerable<BaseItem> GetAllLibraryItems(Guid? userId, IUserManager userManager, ILibraryManager libraryManager, string parentId = null)
|
2013-09-21 21:00:04 +00:00
|
|
|
|
{
|
2014-05-02 02:54:33 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(parentId))
|
|
|
|
|
{
|
2015-01-22 16:41:34 +00:00
|
|
|
|
var folder = (Folder)libraryManager.GetItemById(new Guid(parentId));
|
2014-05-02 02:54:33 +00:00
|
|
|
|
|
2014-06-14 23:13:09 +00:00
|
|
|
|
if (userId.HasValue)
|
|
|
|
|
{
|
|
|
|
|
var user = userManager.GetUserById(userId.Value);
|
|
|
|
|
|
2014-07-15 01:25:58 +00:00
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("User not found");
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 21:13:32 +00:00
|
|
|
|
return folder.GetRecursiveChildren(user);
|
2014-06-14 23:13:09 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 02:54:33 +00:00
|
|
|
|
return folder.GetRecursiveChildren();
|
|
|
|
|
}
|
2013-09-21 21:00:04 +00:00
|
|
|
|
if (userId.HasValue)
|
|
|
|
|
{
|
|
|
|
|
var user = userManager.GetUserById(userId.Value);
|
|
|
|
|
|
2014-07-15 01:25:58 +00:00
|
|
|
|
if (user == null)
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException("User not found");
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 21:13:32 +00:00
|
|
|
|
return userManager.GetUserById(userId.Value).RootFolder.GetRecursiveChildren(user);
|
2013-09-21 21:00:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-27 12:24:28 +00:00
|
|
|
|
return libraryManager.RootFolder.GetRecursiveChildren();
|
2013-09-21 21:00:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-05-12 15:27:56 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Deslugs an artist name by finding the correct entry in the library
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="name"></param>
|
|
|
|
|
/// <param name="libraryManager"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
protected string DeSlugArtistName(string name, ILibraryManager libraryManager)
|
|
|
|
|
{
|
|
|
|
|
if (name.IndexOf(SlugChar) == -1)
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
2013-09-17 02:08:18 +00:00
|
|
|
|
|
2014-03-09 22:14:44 +00:00
|
|
|
|
return libraryManager.RootFolder.RecursiveChildren
|
|
|
|
|
.OfType<Audio>()
|
|
|
|
|
.SelectMany(i => i.AllArtists)
|
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
2013-05-12 15:27:56 +00:00
|
|
|
|
.FirstOrDefault(i =>
|
|
|
|
|
{
|
|
|
|
|
i = _dashReplaceChars.Aggregate(i, (current, c) => current.Replace(c, SlugChar));
|
|
|
|
|
|
|
|
|
|
return string.Equals(i, name, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
|
|
}) ?? name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Deslugs a genre name by finding the correct entry in the library
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected string DeSlugGenreName(string name, ILibraryManager libraryManager)
|
|
|
|
|
{
|
|
|
|
|
if (name.IndexOf(SlugChar) == -1)
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-27 12:24:28 +00:00
|
|
|
|
return libraryManager.RootFolder.GetRecursiveChildren()
|
2013-05-12 15:27:56 +00:00
|
|
|
|
.SelectMany(i => i.Genres)
|
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
|
|
|
|
.FirstOrDefault(i =>
|
|
|
|
|
{
|
|
|
|
|
i = _dashReplaceChars.Aggregate(i, (current, c) => current.Replace(c, SlugChar));
|
|
|
|
|
|
|
|
|
|
return string.Equals(i, name, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
|
|
}) ?? name;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-01 18:17:55 +00:00
|
|
|
|
protected string DeSlugGameGenreName(string name, ILibraryManager libraryManager)
|
|
|
|
|
{
|
|
|
|
|
if (name.IndexOf(SlugChar) == -1)
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-01 21:13:32 +00:00
|
|
|
|
return libraryManager.RootFolder.GetRecursiveChildren()
|
|
|
|
|
.OfType<Game>()
|
2013-07-01 18:17:55 +00:00
|
|
|
|
.SelectMany(i => i.Genres)
|
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
|
|
|
|
.FirstOrDefault(i =>
|
|
|
|
|
{
|
|
|
|
|
i = _dashReplaceChars.Aggregate(i, (current, c) => current.Replace(c, SlugChar));
|
|
|
|
|
|
|
|
|
|
return string.Equals(i, name, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
|
|
}) ?? name;
|
|
|
|
|
}
|
2013-09-17 02:08:18 +00:00
|
|
|
|
|
2013-05-12 15:27:56 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Deslugs a studio name by finding the correct entry in the library
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected string DeSlugStudioName(string name, ILibraryManager libraryManager)
|
|
|
|
|
{
|
|
|
|
|
if (name.IndexOf(SlugChar) == -1)
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-27 12:24:28 +00:00
|
|
|
|
return libraryManager.RootFolder.GetRecursiveChildren()
|
2013-05-12 15:27:56 +00:00
|
|
|
|
.SelectMany(i => i.Studios)
|
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
|
|
|
|
.FirstOrDefault(i =>
|
|
|
|
|
{
|
|
|
|
|
i = _dashReplaceChars.Aggregate(i, (current, c) => current.Replace(c, SlugChar));
|
|
|
|
|
|
|
|
|
|
return string.Equals(i, name, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
|
|
}) ?? name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Deslugs a person name by finding the correct entry in the library
|
|
|
|
|
/// </summary>
|
|
|
|
|
protected string DeSlugPersonName(string name, ILibraryManager libraryManager)
|
|
|
|
|
{
|
|
|
|
|
if (name.IndexOf(SlugChar) == -1)
|
|
|
|
|
{
|
|
|
|
|
return name;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-27 12:24:28 +00:00
|
|
|
|
return libraryManager.RootFolder.GetRecursiveChildren()
|
2013-05-12 15:27:56 +00:00
|
|
|
|
.SelectMany(i => i.People)
|
|
|
|
|
.Select(i => i.Name)
|
|
|
|
|
.Distinct(StringComparer.OrdinalIgnoreCase)
|
|
|
|
|
.FirstOrDefault(i =>
|
|
|
|
|
{
|
|
|
|
|
i = _dashReplaceChars.Aggregate(i, (current, c) => current.Replace(c, SlugChar));
|
|
|
|
|
|
|
|
|
|
return string.Equals(i, name, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
|
|
}) ?? name;
|
|
|
|
|
}
|
2013-08-03 14:38:56 +00:00
|
|
|
|
|
2015-01-22 16:41:34 +00:00
|
|
|
|
protected string GetPathValue(int index)
|
|
|
|
|
{
|
|
|
|
|
var pathInfo = PathInfo.Parse(Request.PathInfo);
|
|
|
|
|
var first = pathInfo.GetArgumentValue<string>(0);
|
|
|
|
|
|
|
|
|
|
// backwards compatibility
|
|
|
|
|
if (string.Equals(first, "mediabrowser", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
index++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return pathInfo.GetArgumentValue<string>(index);
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-03 14:38:56 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the name of the item by.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="name">The name.</param>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <param name="libraryManager">The library manager.</param>
|
|
|
|
|
/// <returns>Task{BaseItem}.</returns>
|
2013-09-17 02:08:18 +00:00
|
|
|
|
protected BaseItem GetItemByName(string name, string type, ILibraryManager libraryManager)
|
2013-08-03 14:38:56 +00:00
|
|
|
|
{
|
|
|
|
|
BaseItem item;
|
|
|
|
|
|
|
|
|
|
if (type.IndexOf("Person", StringComparison.OrdinalIgnoreCase) == 0)
|
|
|
|
|
{
|
2013-09-17 02:08:18 +00:00
|
|
|
|
item = GetPerson(name, libraryManager);
|
2013-08-03 14:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
else if (type.IndexOf("Artist", StringComparison.OrdinalIgnoreCase) == 0)
|
|
|
|
|
{
|
2013-09-17 02:08:18 +00:00
|
|
|
|
item = GetArtist(name, libraryManager);
|
2013-08-03 14:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
else if (type.IndexOf("Genre", StringComparison.OrdinalIgnoreCase) == 0)
|
|
|
|
|
{
|
2013-09-17 02:08:18 +00:00
|
|
|
|
item = GetGenre(name, libraryManager);
|
2013-08-03 14:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
else if (type.IndexOf("MusicGenre", StringComparison.OrdinalIgnoreCase) == 0)
|
|
|
|
|
{
|
2013-09-17 02:08:18 +00:00
|
|
|
|
item = GetMusicGenre(name, libraryManager);
|
2013-08-03 14:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
else if (type.IndexOf("GameGenre", StringComparison.OrdinalIgnoreCase) == 0)
|
|
|
|
|
{
|
2013-09-17 02:08:18 +00:00
|
|
|
|
item = GetGameGenre(name, libraryManager);
|
2013-08-03 14:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
else if (type.IndexOf("Studio", StringComparison.OrdinalIgnoreCase) == 0)
|
|
|
|
|
{
|
2013-09-17 02:08:18 +00:00
|
|
|
|
item = GetStudio(name, libraryManager);
|
2013-08-03 14:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
else if (type.IndexOf("Year", StringComparison.OrdinalIgnoreCase) == 0)
|
|
|
|
|
{
|
2013-09-17 02:08:18 +00:00
|
|
|
|
item = libraryManager.GetYear(int.Parse(name));
|
2013-08-03 14:38:56 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
throw new ArgumentException();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return item;
|
|
|
|
|
}
|
2013-03-16 05:52:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|