You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
1.0 KiB
42 lines
1.0 KiB
using MediaBrowser.Controller.Providers;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
|
{
|
|
[Obsolete]
|
|
public class AdultVideo : Video, IHasProductionLocations, IHasTaglines
|
|
{
|
|
public List<string> ProductionLocations { get; set; }
|
|
|
|
public List<string> Taglines { get; set; }
|
|
|
|
public AdultVideo()
|
|
{
|
|
Taglines = new List<string>();
|
|
ProductionLocations = new List<string>();
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|