2014-09-06 04:21:23 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using System.Collections.Generic;
|
2013-06-23 17:56:11 +00:00
|
|
|
|
using System.IO;
|
2013-10-02 14:14:10 +00:00
|
|
|
|
using System.Security;
|
2013-06-23 17:56:11 +00:00
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2013-06-23 17:56:11 +00:00
|
|
|
|
|
2014-06-30 03:04:50 +00:00
|
|
|
|
namespace MediaBrowser.LocalMetadata.Savers
|
2013-06-23 17:56:11 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class PersonXmlSaver
|
|
|
|
|
/// </summary>
|
2014-02-02 16:59:14 +00:00
|
|
|
|
public class PersonXmlSaver : IMetadataFileSaver
|
2013-06-23 17:56:11 +00:00
|
|
|
|
{
|
2014-02-02 13:36:31 +00:00
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-11-11 03:41:55 +00:00
|
|
|
|
return XmlProviderUtils.Name;
|
2014-02-02 13:36:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-06 04:21:23 +00:00
|
|
|
|
private readonly IServerConfigurationManager _config;
|
2015-06-21 03:35:22 +00:00
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-09-06 04:21:23 +00:00
|
|
|
|
|
2015-09-13 23:07:54 +00:00
|
|
|
|
public PersonXmlSaver(IServerConfigurationManager config, ILibraryManager libraryManager, IFileSystem fileSystem)
|
2014-09-06 04:21:23 +00:00
|
|
|
|
{
|
|
|
|
|
_config = config;
|
2015-06-21 03:35:22 +00:00
|
|
|
|
_libraryManager = libraryManager;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2014-09-06 04:21:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-23 17:56:11 +00:00
|
|
|
|
/// <summary>
|
2013-06-27 23:01:03 +00:00
|
|
|
|
/// Determines whether [is enabled for] [the specified item].
|
2013-06-23 17:56:11 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2013-06-27 23:01:03 +00:00
|
|
|
|
/// <param name="updateType">Type of the update.</param>
|
|
|
|
|
/// <returns><c>true</c> if [is enabled for] [the specified item]; otherwise, <c>false</c>.</returns>
|
2014-02-02 13:36:31 +00:00
|
|
|
|
public bool IsEnabledFor(IHasMetadata item, ItemUpdateType updateType)
|
2013-06-23 17:56:11 +00:00
|
|
|
|
{
|
2014-02-10 20:11:46 +00:00
|
|
|
|
if (!item.SupportsLocalMetadata)
|
2014-02-08 20:02:35 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-11 21:41:01 +00:00
|
|
|
|
return item is Person && updateType >= ItemUpdateType.MetadataDownload;
|
2013-06-23 17:56:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves the specified item.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2014-02-02 13:36:31 +00:00
|
|
|
|
public void Save(IHasMetadata item, CancellationToken cancellationToken)
|
2013-06-23 17:56:11 +00:00
|
|
|
|
{
|
2014-02-02 13:36:31 +00:00
|
|
|
|
var person = (Person)item;
|
|
|
|
|
|
2013-06-23 17:56:11 +00:00
|
|
|
|
var builder = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
builder.Append("<Item>");
|
|
|
|
|
|
2015-06-21 03:35:22 +00:00
|
|
|
|
XmlSaverHelpers.AddCommonNodes(person, _libraryManager, builder);
|
2013-12-05 16:50:21 +00:00
|
|
|
|
|
2016-10-09 07:18:43 +00:00
|
|
|
|
if (person.ProductionLocations.Count > 0)
|
2013-07-29 18:33:48 +00:00
|
|
|
|
{
|
2016-10-09 07:18:43 +00:00
|
|
|
|
builder.Append("<PlaceOfBirth>" + SecurityElement.Escape(person.ProductionLocations[0]) + "</PlaceOfBirth>");
|
2013-07-29 18:33:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-23 17:56:11 +00:00
|
|
|
|
builder.Append("</Item>");
|
|
|
|
|
|
|
|
|
|
var xmlFilePath = GetSavePath(item);
|
|
|
|
|
|
2013-09-25 15:11:23 +00:00
|
|
|
|
XmlSaverHelpers.Save(builder, xmlFilePath, new List<string>
|
2013-07-29 18:33:48 +00:00
|
|
|
|
{
|
|
|
|
|
"PlaceOfBirth"
|
2015-09-13 23:07:54 +00:00
|
|
|
|
}, _config, _fileSystem);
|
2013-06-23 17:56:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the save path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
2014-02-02 13:36:31 +00:00
|
|
|
|
public string GetSavePath(IHasMetadata item)
|
2013-06-23 17:56:11 +00:00
|
|
|
|
{
|
|
|
|
|
return Path.Combine(item.Path, "person.xml");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|