You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
2.2 KiB
75 lines
2.2 KiB
using System.Collections.Generic;
|
|
using System.Globalization;
|
|
using System.IO;
|
|
using System.Xml;
|
|
using MediaBrowser.Controller.Configuration;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
using MediaBrowser.Controller.Library;
|
|
using MediaBrowser.Model.IO;
|
|
using Microsoft.Extensions.Logging;
|
|
|
|
namespace MediaBrowser.XbmcMetadata.Savers
|
|
{
|
|
public class SeasonNfoSaver : BaseNfoSaver
|
|
{
|
|
public SeasonNfoSaver(
|
|
IFileSystem fileSystem,
|
|
IServerConfigurationManager configurationManager,
|
|
ILibraryManager libraryManager,
|
|
IUserManager userManager,
|
|
IUserDataManager userDataManager,
|
|
ILogger logger)
|
|
: base(fileSystem, configurationManager, libraryManager, userManager, userDataManager, logger)
|
|
{
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override string GetLocalSavePath(BaseItem item)
|
|
=> Path.Combine(item.Path, "season.nfo");
|
|
|
|
/// <inheritdoc />
|
|
protected override string GetRootElementName(BaseItem item)
|
|
=> "season";
|
|
|
|
/// <inheritdoc />
|
|
public override bool IsEnabledFor(BaseItem item, ItemUpdateType updateType)
|
|
{
|
|
if (!item.SupportsLocalMetadata)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!(item is Season))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return updateType >= MinimumUpdateType || (updateType >= ItemUpdateType.MetadataImport && File.Exists(GetSavePath(item)));
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void WriteCustomElements(BaseItem item, XmlWriter writer)
|
|
{
|
|
var season = (Season)item;
|
|
|
|
if (season.IndexNumber.HasValue)
|
|
{
|
|
writer.WriteElementString("seasonnumber", season.IndexNumber.Value.ToString(CultureInfo.InvariantCulture));
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override List<string> GetTagsUsed(BaseItem item)
|
|
{
|
|
var list = base.GetTagsUsed(item);
|
|
list.AddRange(new string[]
|
|
{
|
|
"seasonnumber"
|
|
});
|
|
|
|
return list;
|
|
}
|
|
}
|
|
}
|