mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-10-31 16:21:08 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			106 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			106 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using MediaBrowser.Controller.Entities.Audio;
 | |
| using MediaBrowser.Controller.Providers;
 | |
| using MediaBrowser.Model.Configuration;
 | |
| using MediaBrowser.Model.Entities;
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Linq;
 | |
| using System.Runtime.Serialization;
 | |
| using MediaBrowser.Model.Users;
 | |
| 
 | |
| namespace MediaBrowser.Controller.Entities
 | |
| {
 | |
|     public class MusicVideo : Video, IHasArtist, IHasMusicGenres, IHasProductionLocations, IHasBudget, IHasLookupInfo<MusicVideoInfo>
 | |
|     {
 | |
|         /// <summary>
 | |
|         /// Gets or sets the album.
 | |
|         /// </summary>
 | |
|         /// <value>The album.</value>
 | |
|         public string Album { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the budget.
 | |
|         /// </summary>
 | |
|         /// <value>The budget.</value>
 | |
|         public double? Budget { get; set; }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets or sets the revenue.
 | |
|         /// </summary>
 | |
|         /// <value>The revenue.</value>
 | |
|         public double? Revenue { get; set; }
 | |
|         public List<string> ProductionLocations { get; set; }
 | |
|         public List<string> Artists { get; set; }
 | |
| 
 | |
|         public MusicVideo()
 | |
|         {
 | |
|             ProductionLocations = new List<string>();
 | |
|             Artists = new List<string>();
 | |
|         }
 | |
| 
 | |
|         [IgnoreDataMember]
 | |
|         public List<string> AllArtists
 | |
|         {
 | |
|             get
 | |
|             {
 | |
|                 return Artists;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         /// <summary>
 | |
|         /// Gets the user data key.
 | |
|         /// </summary>
 | |
|         /// <returns>System.String.</returns>
 | |
|         protected override string CreateUserDataKey()
 | |
|         {
 | |
|             return this.GetProviderId(MetadataProviders.Tmdb) ?? this.GetProviderId(MetadataProviders.Imdb) ?? base.CreateUserDataKey();
 | |
|         }
 | |
| 
 | |
|         protected override bool GetBlockUnratedValue(UserPolicy config)
 | |
|         {
 | |
|             return config.BlockUnratedItems.Contains(UnratedItem.Music);
 | |
|         }
 | |
| 
 | |
|         public MusicVideoInfo GetLookupInfo()
 | |
|         {
 | |
|             return GetItemLookupInfo<MusicVideoInfo>();
 | |
|         }
 | |
| 
 | |
|         public override bool BeforeMetadataRefresh()
 | |
|         {
 | |
|             var hasChanges = base.BeforeMetadataRefresh();
 | |
| 
 | |
|             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;
 | |
|         }
 | |
|     }
 | |
| }
 |