mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			116 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			3.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using MediaBrowser.Controller.Configuration;
 | 
						|
using MediaBrowser.Model.Logging;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Threading;
 | 
						|
 | 
						|
namespace MediaBrowser.Controller.Providers
 | 
						|
{
 | 
						|
    class FanArtProviderException : ApplicationException
 | 
						|
    {
 | 
						|
        public FanArtProviderException(string msg)
 | 
						|
            : base(msg)
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
    }
 | 
						|
    /// <summary>
 | 
						|
    /// Class FanartBaseProvider
 | 
						|
    /// </summary>
 | 
						|
    public abstract class FanartBaseProvider : BaseMetadataProvider
 | 
						|
    {
 | 
						|
 | 
						|
        protected static readonly SemaphoreSlim FanArtResourcePool = new SemaphoreSlim(5,5);
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The LOG o_ FILE
 | 
						|
        /// </summary>
 | 
						|
        protected const string LOGO_FILE = "logo.png";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The AR t_ FILE
 | 
						|
        /// </summary>
 | 
						|
        protected const string ART_FILE = "clearart.png";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The THUM b_ FILE
 | 
						|
        /// </summary>
 | 
						|
        protected const string THUMB_FILE = "thumb.jpg";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The DIS c_ FILE
 | 
						|
        /// </summary>
 | 
						|
        protected const string DISC_FILE = "disc.png";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The BANNE r_ FILE
 | 
						|
        /// </summary>
 | 
						|
        protected const string BANNER_FILE = "banner.png";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The Backdrop
 | 
						|
        /// </summary>
 | 
						|
        protected const string BACKDROP_FILE = "backdrop.jpg";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The Primary image
 | 
						|
        /// </summary>
 | 
						|
        protected const string PRIMARY_FILE = "folder.jpg";
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// The API key
 | 
						|
        /// </summary>
 | 
						|
        protected const string APIKey = "5c6b04c68e904cfed1e6cbc9a9e683d4";
 | 
						|
 | 
						|
        protected FanartBaseProvider(ILogManager logManager, IServerConfigurationManager configurationManager) : base(logManager, configurationManager)
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets a value indicating whether [requires internet].
 | 
						|
        /// </summary>
 | 
						|
        /// <value><c>true</c> if [requires internet]; otherwise, <c>false</c>.</value>
 | 
						|
        public override bool RequiresInternet
 | 
						|
        {
 | 
						|
            get { return true; }
 | 
						|
        }
 | 
						|
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the priority.
 | 
						|
        /// </summary>
 | 
						|
        /// <value>The priority.</value>
 | 
						|
        public override MetadataProviderPriority Priority
 | 
						|
        {
 | 
						|
            get { return MetadataProviderPriority.Third; }
 | 
						|
        }
 | 
						|
 | 
						|
        #region Result Objects
 | 
						|
 | 
						|
        protected class FanArtImageInfo
 | 
						|
        {
 | 
						|
            public string id { get; set; }
 | 
						|
            public string url { get; set; }
 | 
						|
            public string likes { get; set; }
 | 
						|
        }
 | 
						|
 | 
						|
        protected class FanArtMusicInfo
 | 
						|
        {
 | 
						|
            public string mbid_id { get; set; }
 | 
						|
            public List<FanArtImageInfo> musiclogo { get; set; }
 | 
						|
            public List<FanArtImageInfo> artistbackground { get; set; }
 | 
						|
            public List<FanArtImageInfo> artistthumb { get; set; }
 | 
						|
            public List<FanArtImageInfo> hdmusiclogo { get; set; }
 | 
						|
            public List<FanArtImageInfo> musicbanner { get; set; }
 | 
						|
        }
 | 
						|
 | 
						|
        protected class FanArtMusicResult
 | 
						|
        {
 | 
						|
            public FanArtMusicInfo result { get; set; }
 | 
						|
        }
 | 
						|
 | 
						|
        #endregion
 | 
						|
 | 
						|
    }
 | 
						|
 | 
						|
}
 |