mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-04 03:27:21 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			112 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			112 lines
		
	
	
		
			2.9 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Providers;
 | 
						|
using MediaBrowser.Model.Configuration;
 | 
						|
using MediaBrowser.Model.Entities;
 | 
						|
using System.Collections.Generic;
 | 
						|
using MediaBrowser.Model.Providers;
 | 
						|
using MediaBrowser.Model.Serialization;
 | 
						|
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Entities
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Class Trailer
 | 
						|
    /// </summary>
 | 
						|
    public class Trailer : Video, IHasLookupInfo<TrailerInfo>
 | 
						|
    {
 | 
						|
        public Trailer()
 | 
						|
        {
 | 
						|
            TrailerTypes = new TrailerType[] { };
 | 
						|
        }
 | 
						|
 | 
						|
        public TrailerType[] TrailerTypes { get; set; }
 | 
						|
 | 
						|
        public override double GetDefaultPrimaryImageAspectRatio()
 | 
						|
        {
 | 
						|
            double value = 2;
 | 
						|
            value /= 3;
 | 
						|
 | 
						|
            return value;
 | 
						|
        }
 | 
						|
 | 
						|
        public override UnratedItem GetBlockUnratedType()
 | 
						|
        {
 | 
						|
            return UnratedItem.Trailer;
 | 
						|
        }
 | 
						|
 | 
						|
        public TrailerInfo GetLookupInfo()
 | 
						|
        {
 | 
						|
            var info = GetItemLookupInfo<TrailerInfo>();
 | 
						|
 | 
						|
            if (!IsInMixedFolder && IsFileProtocol)
 | 
						|
            {
 | 
						|
                info.Name = System.IO.Path.GetFileName(ContainingFolderPath);
 | 
						|
            }
 | 
						|
 | 
						|
            return info;
 | 
						|
        }
 | 
						|
 | 
						|
        public override bool BeforeMetadataRefresh(bool replaceAllMetdata)
 | 
						|
        {
 | 
						|
            var hasChanges = base.BeforeMetadataRefresh(replaceAllMetdata);
 | 
						|
 | 
						|
            if (!ProductionYear.HasValue)
 | 
						|
            {
 | 
						|
                var info = LibraryManager.ParseName(Name);
 | 
						|
 | 
						|
                var yearInName = info.Year;
 | 
						|
 | 
						|
                if (yearInName.HasValue)
 | 
						|
                {
 | 
						|
                    ProductionYear = yearInName;
 | 
						|
                    hasChanges = true;
 | 
						|
                }
 | 
						|
                else
 | 
						|
                {
 | 
						|
                    // Try to get the year from the folder name
 | 
						|
                    if (!IsInMixedFolder)
 | 
						|
                    {
 | 
						|
                        info = LibraryManager.ParseName(System.IO.Path.GetFileName(ContainingFolderPath));
 | 
						|
 | 
						|
                        yearInName = info.Year;
 | 
						|
 | 
						|
                        if (yearInName.HasValue)
 | 
						|
                        {
 | 
						|
                            ProductionYear = yearInName;
 | 
						|
                            hasChanges = true;
 | 
						|
                        }
 | 
						|
                    }
 | 
						|
                }
 | 
						|
            }
 | 
						|
 | 
						|
            return hasChanges;
 | 
						|
        }
 | 
						|
 | 
						|
        public override List<ExternalUrl> GetRelatedUrls()
 | 
						|
        {
 | 
						|
            var list = base.GetRelatedUrls();
 | 
						|
 | 
						|
            var imdbId = this.GetProviderId(MetadataProviders.Imdb);
 | 
						|
            if (!string.IsNullOrEmpty(imdbId))
 | 
						|
            {
 | 
						|
                list.Add(new ExternalUrl
 | 
						|
                {
 | 
						|
                    Name = "Trakt",
 | 
						|
                    Url = string.Format("https://trakt.tv/movies/{0}", imdbId)
 | 
						|
                });
 | 
						|
            }
 | 
						|
 | 
						|
            return list;
 | 
						|
        }
 | 
						|
 | 
						|
        [IgnoreDataMember]
 | 
						|
        public override bool StopRefreshIfLocalMetadataFound
 | 
						|
        {
 | 
						|
            get
 | 
						|
            {
 | 
						|
                // Need people id's from internet metadata
 | 
						|
                return false;
 | 
						|
            }
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |