jellyfin/MediaBrowser.Api/ItemUpdateService.cs

435 lines
15 KiB
C#
Raw Normal View History

2014-12-22 01:50:29 -05:00
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Entities;
2013-06-27 15:06:37 -04:00
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Library;
2014-12-22 22:58:14 -05:00
using MediaBrowser.Controller.LiveTv;
2014-12-21 00:57:06 -05:00
using MediaBrowser.Controller.Localization;
2014-07-02 14:34:08 -04:00
using MediaBrowser.Controller.Net;
2014-12-21 00:57:06 -05:00
using MediaBrowser.Controller.Providers;
2013-06-27 15:06:37 -04:00
using MediaBrowser.Model.Dto;
2014-12-21 13:58:17 -05:00
using MediaBrowser.Model.Entities;
2013-12-07 10:52:38 -05:00
using ServiceStack;
2013-06-27 15:29:58 -04:00
using System;
2014-07-02 14:34:08 -04:00
using System.Collections.Generic;
2013-06-27 15:29:58 -04:00
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
2013-06-27 15:06:37 -04:00
namespace MediaBrowser.Api
{
2014-04-26 23:42:05 -04:00
[Route("/Items/{ItemId}", "POST", Summary = "Updates an item")]
2013-06-27 15:06:37 -04:00
public class UpdateItem : BaseItemDto, IReturnVoid
{
[ApiMember(Name = "ItemId", Description = "The id of the item", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
public string ItemId { get; set; }
}
2014-12-21 00:57:06 -05:00
[Route("/Items/{ItemId}/MetadataEditor", "GET", Summary = "Gets metadata editor info for an item")]
public class GetMetadataEditorInfo : IReturn<MetadataEditorInfo>
{
[ApiMember(Name = "ItemId", Description = "The id of the item", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "GET")]
public string ItemId { get; set; }
}
2014-12-21 13:58:17 -05:00
[Route("/Items/{ItemId}/ContentType", "POST", Summary = "Updates an item's content type")]
public class UpdateItemContentType : IReturnVoid
{
[ApiMember(Name = "ItemId", Description = "The id of the item", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")]
public string ItemId { get; set; }
[ApiMember(Name = "ContentType", Description = "The content type of the item", IsRequired = true, DataType = "string", ParameterType = "query", Verb = "POST")]
public string ContentType { get; set; }
}
2014-12-21 00:57:06 -05:00
2014-07-02 14:34:08 -04:00
[Authenticated]
2013-06-27 15:06:37 -04:00
public class ItemUpdateService : BaseApiService
{
private readonly ILibraryManager _libraryManager;
2014-12-21 00:57:06 -05:00
private readonly IProviderManager _providerManager;
private readonly ILocalizationManager _localizationManager;
2014-12-22 01:50:29 -05:00
private readonly IServerConfigurationManager _config;
2013-06-27 15:06:37 -04:00
2014-12-22 01:50:29 -05:00
public ItemUpdateService(ILibraryManager libraryManager, IProviderManager providerManager, ILocalizationManager localizationManager, IServerConfigurationManager config)
2013-06-27 15:06:37 -04:00
{
_libraryManager = libraryManager;
2014-12-21 00:57:06 -05:00
_providerManager = providerManager;
_localizationManager = localizationManager;
2014-12-22 01:50:29 -05:00
_config = config;
2014-12-21 00:57:06 -05:00
}
public object Get(GetMetadataEditorInfo request)
{
var item = _libraryManager.GetItemById(request.ItemId);
var info = new MetadataEditorInfo
{
ParentalRatingOptions = _localizationManager.GetParentalRatings().ToList(),
ExternalIdInfos = _providerManager.GetExternalIdInfos(item).ToList(),
Countries = _localizationManager.GetCountries().ToList(),
Cultures = _localizationManager.GetCultures().ToList()
};
2014-12-21 13:58:17 -05:00
var locationType = item.LocationType;
if (locationType == LocationType.FileSystem ||
locationType == LocationType.Offline)
{
2014-12-22 22:58:14 -05:00
if (!(item is ICollectionFolder) && !(item is UserView) && !(item is AggregateFolder) && !(item is LiveTvChannel) && !(item is IItemByName))
2014-12-21 13:58:17 -05:00
{
2015-01-09 20:38:01 -05:00
var inheritedContentType = _libraryManager.GetInheritedContentType(item);
var configuredContentType = _libraryManager.GetConfiguredContentType(item);
if (string.IsNullOrWhiteSpace(inheritedContentType) || string.Equals(inheritedContentType, CollectionType.TvShows, StringComparison.OrdinalIgnoreCase) || !string.IsNullOrWhiteSpace(configuredContentType))
2014-12-22 01:50:29 -05:00
{
info.ContentTypeOptions = GetContentTypeOptions(true);
2015-01-09 20:38:01 -05:00
info.ContentType = configuredContentType;
2014-12-22 01:50:29 -05:00
}
2014-12-21 13:58:17 -05:00
}
}
2014-12-21 00:57:06 -05:00
return ToOptimizedResult(info);
2013-06-27 15:06:37 -04:00
}
2014-12-21 13:58:17 -05:00
public void Post(UpdateItemContentType request)
{
2014-12-22 01:50:29 -05:00
var item = _libraryManager.GetItemById(request.ItemId);
var path = item.ContainingFolderPath;
var types = _config.Configuration.ContentTypes
.Where(i => !string.Equals(i.Name, path, StringComparison.OrdinalIgnoreCase))
.ToList();
if (!string.IsNullOrWhiteSpace(request.ContentType))
{
types.Add(new NameValuePair
{
Name = path,
Value = request.ContentType
});
}
_config.Configuration.ContentTypes = types.ToArray();
_config.SaveConfiguration();
2014-12-21 13:58:17 -05:00
}
private List<NameValuePair> GetContentTypeOptions(bool isForItem)
{
var list = new List<NameValuePair>();
if (isForItem)
{
list.Add(new NameValuePair
{
Name = "FolderTypeInherit",
Value = ""
});
}
list.Add(new NameValuePair
{
Name = "FolderTypeMovies",
Value = "movies"
});
list.Add(new NameValuePair
{
Name = "FolderTypeMusic",
Value = "music"
});
list.Add(new NameValuePair
{
Name = "FolderTypeTvShows",
Value = "tvshows"
});
if (!isForItem)
{
list.Add(new NameValuePair
{
Name = "FolderTypeBooks",
Value = "books"
});
list.Add(new NameValuePair
{
Name = "FolderTypeGames",
Value = "games"
});
}
list.Add(new NameValuePair
{
Name = "FolderTypeHomeVideos",
Value = "homevideos"
});
list.Add(new NameValuePair
{
Name = "FolderTypeMusicVideos",
Value = "musicvideos"
});
list.Add(new NameValuePair
{
Name = "FolderTypePhotos",
Value = "photos"
});
if (!isForItem)
{
list.Add(new NameValuePair
{
Name = "FolderTypeMixed",
Value = ""
});
}
foreach (var val in list)
{
val.Name = _localizationManager.GetLocalizedString(val.Name);
}
return list;
}
2013-06-27 15:06:37 -04:00
public void Post(UpdateItem request)
{
var task = UpdateItem(request);
Task.WaitAll(task);
}
2013-12-01 01:25:05 -05:00
private async Task UpdateItem(UpdateItem request)
2013-06-27 15:06:37 -04:00
{
2014-04-25 16:15:50 -04:00
var item = _libraryManager.GetItemById(request.ItemId);
2013-06-27 15:06:37 -04:00
2014-02-19 00:21:03 -05:00
var newLockData = request.LockData ?? false;
2014-04-26 23:42:05 -04:00
var isLockedChanged = item.IsLocked != newLockData;
2013-12-01 01:25:05 -05:00
2013-06-27 15:06:37 -04:00
UpdateItem(request, item);
2014-04-26 23:42:05 -04:00
if (isLockedChanged && item.IsLocked)
{
item.IsUnidentified = false;
}
2014-03-09 22:33:49 -04:00
await item.UpdateToRepository(ItemUpdateType.MetadataEdit, CancellationToken.None).ConfigureAwait(false);
2013-12-01 01:25:05 -05:00
2014-04-26 23:42:05 -04:00
if (isLockedChanged && item.IsFolder)
2013-12-01 01:25:05 -05:00
{
var folder = (Folder)item;
foreach (var child in folder.RecursiveChildren.ToList())
{
2014-04-26 23:42:05 -04:00
child.IsLocked = newLockData;
2014-03-09 22:33:49 -04:00
await child.UpdateToRepository(ItemUpdateType.MetadataEdit, CancellationToken.None).ConfigureAwait(false);
2013-12-01 01:25:05 -05:00
}
}
2013-06-27 15:06:37 -04:00
}
2014-07-13 00:55:56 -04:00
private DateTime NormalizeDateTime(DateTime val)
{
return DateTime.SpecifyKind(val, DateTimeKind.Utc);
}
2013-06-27 15:06:37 -04:00
private void UpdateItem(BaseItemDto request, BaseItem item)
{
item.Name = request.Name;
2014-03-24 13:54:45 -04:00
item.ForcedSortName = request.ForcedSortName;
2013-06-27 15:06:37 -04:00
2013-12-02 11:16:03 -05:00
var hasBudget = item as IHasBudget;
if (hasBudget != null)
{
hasBudget.Budget = request.Budget;
hasBudget.Revenue = request.Revenue;
}
2013-09-11 13:54:59 -04:00
2013-11-06 11:06:16 -05:00
var hasCriticRating = item as IHasCriticRating;
if (hasCriticRating != null)
{
hasCriticRating.CriticRating = request.CriticRating;
hasCriticRating.CriticRatingSummary = request.CriticRatingSummary;
}
2013-09-11 13:54:59 -04:00
item.DisplayMediaType = request.DisplayMediaType;
item.CommunityRating = request.CommunityRating;
item.VoteCount = request.VoteCount;
2013-09-11 13:54:59 -04:00
item.HomePageUrl = request.HomePageUrl;
2013-06-27 15:06:37 -04:00
item.IndexNumber = request.IndexNumber;
item.ParentIndexNumber = request.ParentIndexNumber;
item.Overview = request.Overview;
item.Genres = request.Genres;
var episode = item as Episode;
if (episode != null)
{
episode.DvdSeasonNumber = request.DvdSeasonNumber;
episode.DvdEpisodeNumber = request.DvdEpisodeNumber;
episode.AirsAfterSeasonNumber = request.AirsAfterSeasonNumber;
episode.AirsBeforeEpisodeNumber = request.AirsBeforeEpisodeNumber;
episode.AirsBeforeSeasonNumber = request.AirsBeforeSeasonNumber;
episode.AbsoluteEpisodeNumber = request.AbsoluteEpisodeNumber;
}
2014-04-26 23:42:05 -04:00
var hasTags = item as IHasTags;
if (hasTags != null)
{
hasTags.Tags = request.Tags;
}
2014-06-28 22:30:20 -04:00
var hasTaglines = item as IHasTaglines;
if (hasTaglines != null)
{
hasTaglines.Taglines = request.Taglines;
}
2014-06-24 00:18:02 -04:00
var hasShortOverview = item as IHasShortOverview;
if (hasShortOverview != null)
{
hasShortOverview.ShortOverview = request.ShortOverview;
}
2014-01-14 10:50:39 -05:00
var hasKeywords = item as IHasKeywords;
if (hasKeywords != null)
{
hasKeywords.Keywords = request.Keywords;
}
if (request.Studios != null)
{
item.Studios = request.Studios.Select(x => x.Name).ToList();
}
if (request.People != null)
{
item.People = request.People.Select(x => new PersonInfo { Name = x.Name, Role = x.Role, Type = x.Type }).ToList();
}
2013-06-27 15:06:37 -04:00
if (request.DateCreated.HasValue)
{
2014-07-13 00:55:56 -04:00
item.DateCreated = NormalizeDateTime(request.DateCreated.Value);
}
2014-07-13 00:55:56 -04:00
item.EndDate = request.EndDate.HasValue ? NormalizeDateTime(request.EndDate.Value) : (DateTime?)null;
item.PremiereDate = request.PremiereDate.HasValue ? NormalizeDateTime(request.PremiereDate.Value) : (DateTime?)null;
2013-06-27 15:06:37 -04:00
item.ProductionYear = request.ProductionYear;
item.OfficialRating = request.OfficialRating;
item.CustomRating = request.CustomRating;
SetProductionLocations(item, request);
2013-12-28 11:58:13 -05:00
var hasLang = item as IHasPreferredMetadataLanguage;
if (hasLang != null)
{
2013-12-28 11:58:13 -05:00
hasLang.PreferredMetadataCountryCode = request.PreferredMetadataCountryCode;
hasLang.PreferredMetadataLanguage = request.PreferredMetadataLanguage;
}
var hasDisplayOrder = item as IHasDisplayOrder;
if (hasDisplayOrder != null)
{
hasDisplayOrder.DisplayOrder = request.DisplayOrder;
}
2014-04-26 23:42:05 -04:00
var hasAspectRatio = item as IHasAspectRatio;
if (hasAspectRatio != null)
{
hasAspectRatio.AspectRatio = request.AspectRatio;
}
2014-02-19 00:21:03 -05:00
2014-04-26 23:42:05 -04:00
item.IsLocked = (request.LockData ?? false);
2014-02-19 00:21:03 -05:00
if (request.LockedFields != null)
2013-06-27 15:06:37 -04:00
{
item.LockedFields = request.LockedFields;
}
// Only allow this for series. Runtimes for media comes from ffprobe.
if (item is Series)
{
item.RunTimeTicks = request.RunTimeTicks;
}
2013-06-27 15:06:37 -04:00
foreach (var pair in request.ProviderIds.ToList())
{
if (string.IsNullOrEmpty(pair.Value))
{
request.ProviderIds.Remove(pair.Key);
}
}
item.ProviderIds = request.ProviderIds;
var video = item as Video;
if (video != null)
{
video.Video3DFormat = request.Video3DFormat;
}
2014-01-15 00:01:58 -05:00
var hasMetascore = item as IHasMetascore;
if (hasMetascore != null)
{
hasMetascore.Metascore = request.Metascore;
}
var hasAwards = item as IHasAwards;
if (hasAwards != null)
{
hasAwards.AwardSummary = request.AwardSummary;
}
2013-06-27 15:06:37 -04:00
var game = item as Game;
if (game != null)
{
game.PlayersSupported = request.Players;
}
var song = item as Audio;
if (song != null)
{
song.Album = request.Album;
2014-06-23 12:05:19 -04:00
song.AlbumArtists = string.IsNullOrWhiteSpace(request.AlbumArtist) ? new List<string>() : new List<string> { request.AlbumArtist };
song.Artists = request.Artists.ToList();
2013-06-27 15:06:37 -04:00
}
var musicVideo = item as MusicVideo;
if (musicVideo != null)
{
2014-10-20 16:23:40 -04:00
musicVideo.Artists = request.Artists.ToList();
musicVideo.Album = request.Album;
}
2013-06-27 15:06:37 -04:00
var series = item as Series;
if (series != null)
{
series.Status = request.Status;
series.AirDays = request.AirDays;
series.AirTime = request.AirTime;
if (request.DisplaySpecialsWithSeasons.HasValue)
{
series.DisplaySpecialsWithSeasons = request.DisplaySpecialsWithSeasons.Value;
}
2013-06-27 15:06:37 -04:00
}
}
private void SetProductionLocations(BaseItem item, BaseItemDto request)
{
var hasProductionLocations = item as IHasProductionLocations;
if (hasProductionLocations != null)
{
hasProductionLocations.ProductionLocations = request.ProductionLocations;
}
var person = item as Person;
if (person != null)
{
person.PlaceOfBirth = request.ProductionLocations == null
? null
: request.ProductionLocations.FirstOrDefault();
}
}
2013-06-27 15:06:37 -04:00
}
}