mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			92 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			92 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Configuration;
 | 
						|
using MediaBrowser.Controller.Entities;
 | 
						|
using MediaBrowser.Controller.Library;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.IO;
 | 
						|
using System.Security;
 | 
						|
using System.Text;
 | 
						|
using System.Threading;
 | 
						|
 | 
						|
namespace MediaBrowser.LocalMetadata.Savers
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class PersonXmlSaver
 | 
						|
    /// </summary>
 | 
						|
    public class PersonXmlSaver : IMetadataFileSaver
 | 
						|
    {
 | 
						|
        public string Name
 | 
						|
        {
 | 
						|
            get
 | 
						|
            {
 | 
						|
                return XmlProviderUtils.Name;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        private readonly IServerConfigurationManager _config;
 | 
						|
        private readonly ILibraryManager _libraryManager;
 | 
						|
 | 
						|
        public PersonXmlSaver(IServerConfigurationManager config, ILibraryManager libraryManager)
 | 
						|
        {
 | 
						|
            _config = config;
 | 
						|
            _libraryManager = libraryManager;
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Determines whether [is enabled for] [the specified item].
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="item">The item.</param>
 | 
						|
        /// <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(IHasMetadata item, ItemUpdateType updateType)
 | 
						|
        {
 | 
						|
            if (!item.SupportsLocalMetadata)
 | 
						|
            {
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
 | 
						|
            return item is Person && updateType >= ItemUpdateType.MetadataDownload;
 | 
						|
        }
 | 
						|
 | 
						|
        /// <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(IHasMetadata item, CancellationToken cancellationToken)
 | 
						|
        {
 | 
						|
            var person = (Person)item;
 | 
						|
 | 
						|
            var builder = new StringBuilder();
 | 
						|
 | 
						|
            builder.Append("<Item>");
 | 
						|
 | 
						|
            XmlSaverHelpers.AddCommonNodes(person, _libraryManager, builder);
 | 
						|
 | 
						|
            if (!string.IsNullOrEmpty(person.PlaceOfBirth))
 | 
						|
            {
 | 
						|
                builder.Append("<PlaceOfBirth>" + SecurityElement.Escape(person.PlaceOfBirth) + "</PlaceOfBirth>");
 | 
						|
            }
 | 
						|
 | 
						|
            builder.Append("</Item>");
 | 
						|
 | 
						|
            var xmlFilePath = GetSavePath(item);
 | 
						|
 | 
						|
            XmlSaverHelpers.Save(builder, xmlFilePath, new List<string>
 | 
						|
                {
 | 
						|
                    "PlaceOfBirth"
 | 
						|
                }, _config);
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the save path.
 | 
						|
        /// </summary>
 | 
						|
        /// <param name="item">The item.</param>
 | 
						|
        /// <returns>System.String.</returns>
 | 
						|
        public string GetSavePath(IHasMetadata item)
 | 
						|
        {
 | 
						|
            return Path.Combine(item.Path, "person.xml");
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |