mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Runtime.Serialization;
 | 
						|
using MediaBrowser.Model.Entities;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class Trailer
 | 
						|
    /// </summary>
 | 
						|
    public class Trailer : Video
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets a value indicating whether this instance is local trailer.
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if this instance is local trailer; otherwise, <c>false</c>.</value>
 | 
						|
        [IgnoreDataMember]
 | 
						|
        public bool IsLocalTrailer
 | 
						|
        {
 | 
						|
            get
 | 
						|
            {
 | 
						|
                // Local trailers are not part of children
 | 
						|
                return Parent == null;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Should be overridden to return the proper folder where metadata lives
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The meta location.</value>
 | 
						|
        [IgnoreDataMember]
 | 
						|
        public override string MetaLocation
 | 
						|
        {
 | 
						|
            get
 | 
						|
            {
 | 
						|
                if (!IsLocalTrailer)
 | 
						|
                {
 | 
						|
                    return System.IO.Path.GetDirectoryName(Path);
 | 
						|
                }
 | 
						|
 | 
						|
                return base.MetaLocation;
 | 
						|
            }
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Needed because the resolver stops at the trailer folder and we find the video inside.
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if [use parent path to create resolve args]; otherwise, <c>false</c>.</value>
 | 
						|
        protected override bool UseParentPathToCreateResolveArgs
 | 
						|
        {
 | 
						|
            get { return !IsLocalTrailer; }
 | 
						|
        }
 | 
						|
 | 
						|
        public override string GetUserDataKey()
 | 
						|
        {
 | 
						|
            var key = this.GetProviderId(MetadataProviders.Tmdb) ?? this.GetProviderId(MetadataProviders.Tvdb) ?? this.GetProviderId(MetadataProviders.Imdb) ?? this.GetProviderId(MetadataProviders.Tvcom);
 | 
						|
 | 
						|
            if (!string.IsNullOrWhiteSpace(key))
 | 
						|
            {
 | 
						|
                return key + "-trailer";
 | 
						|
            }
 | 
						|
 | 
						|
            return base.GetUserDataKey();
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |