jellyfin/MediaBrowser.Controller/Entities/AdultVideo.cs

51 lines
1.5 KiB
C#
Raw Normal View History

2014-02-11 22:41:01 +01:00
using System.Collections.Generic;
2014-02-13 06:11:54 +01:00
using MediaBrowser.Controller.Providers;
2014-02-11 22:41:01 +01:00
2013-07-16 20:47:05 +02:00
namespace MediaBrowser.Controller.Entities
{
2014-05-16 21:16:29 +02:00
public class AdultVideo : Video, IHasProductionLocations, IHasPreferredMetadataLanguage, IHasTaglines
2013-07-16 20:47:05 +02:00
{
/// <summary>
/// Gets or sets the preferred metadata language.
/// </summary>
/// <value>The preferred metadata language.</value>
public string PreferredMetadataLanguage { get; set; }
2013-12-28 17:58:13 +01:00
/// <summary>
/// Gets or sets the preferred metadata country code.
/// </summary>
/// <value>The preferred metadata country code.</value>
public string PreferredMetadataCountryCode { get; set; }
2014-05-16 21:16:29 +02:00
public List<string> ProductionLocations { get; set; }
2014-02-11 22:41:01 +01:00
public List<string> Taglines { get; set; }
public AdultVideo()
{
Taglines = new List<string>();
2014-05-16 21:16:29 +02:00
ProductionLocations = new List<string>();
2014-02-11 22:41:01 +01:00
}
2014-02-13 06:11:54 +01:00
public override bool BeforeMetadataRefresh()
{
var hasChanges = base.BeforeMetadataRefresh();
if (!ProductionYear.HasValue)
{
int? yearInName = null;
string name;
NameParser.ParseName(Name, out name, out yearInName);
if (yearInName.HasValue)
{
ProductionYear = yearInName;
hasChanges = true;
}
}
return hasChanges;
}
2013-07-16 20:47:05 +02:00
}
}