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