2013-10-02 14:14:10 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-06-23 17:56:11 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Providers.Movies;
|
|
|
|
|
using System;
|
2013-10-02 14:14:10 +00:00
|
|
|
|
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;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Savers
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class PersonXmlSaver
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class PersonXmlSaver : IMetadataSaver
|
|
|
|
|
{
|
|
|
|
|
/// <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>
|
|
|
|
|
public bool IsEnabledFor(BaseItem item, ItemUpdateType updateType)
|
2013-06-23 17:56:11 +00:00
|
|
|
|
{
|
2013-06-28 14:11:09 +00:00
|
|
|
|
var wasMetadataEdited = (updateType & ItemUpdateType.MetadataEdit) == ItemUpdateType.MetadataEdit;
|
|
|
|
|
var wasMetadataDownloaded = (updateType & ItemUpdateType.MetadataDownload) == ItemUpdateType.MetadataDownload;
|
2013-07-29 18:33:48 +00:00
|
|
|
|
|
2013-06-27 23:01:03 +00:00
|
|
|
|
// If new metadata has been downloaded or metadata was manually edited, proceed
|
2013-06-28 14:11:09 +00:00
|
|
|
|
if ((wasMetadataEdited || wasMetadataDownloaded))
|
2013-06-23 17:56:11 +00:00
|
|
|
|
{
|
2013-06-27 23:01:03 +00:00
|
|
|
|
return item is Person;
|
2013-06-23 17:56:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-06-27 23:01:03 +00:00
|
|
|
|
return false;
|
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>
|
|
|
|
|
public void Save(BaseItem item, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var builder = new StringBuilder();
|
|
|
|
|
|
|
|
|
|
builder.Append("<Item>");
|
|
|
|
|
|
2013-06-23 18:55:30 +00:00
|
|
|
|
XmlSaverHelpers.AddCommonNodes(item, builder);
|
2013-06-23 17:56:11 +00:00
|
|
|
|
|
2013-12-05 16:50:21 +00:00
|
|
|
|
var person = (Person)item;
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(person.PlaceOfBirth))
|
2013-07-29 18:33:48 +00:00
|
|
|
|
{
|
2013-12-05 16:50:21 +00:00
|
|
|
|
builder.Append("<PlaceOfBirth>" + SecurityElement.Escape(person.PlaceOfBirth) + "</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"
|
|
|
|
|
});
|
2013-06-23 17:56:11 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the save path.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public string GetSavePath(BaseItem item)
|
|
|
|
|
{
|
|
|
|
|
return Path.Combine(item.Path, "person.xml");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|