2013-05-15 13:57:13 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Localization;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-05-15 13:57:13 +00:00
|
|
|
|
using System.IO;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Entities.TV
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class Series
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class Series : Folder
|
|
|
|
|
{
|
2013-05-15 13:57:13 +00:00
|
|
|
|
public Series()
|
|
|
|
|
{
|
|
|
|
|
AirDays = new List<DayOfWeek>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the status.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The status.</value>
|
|
|
|
|
public SeriesStatus? Status { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the air days.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The air days.</value>
|
|
|
|
|
public List<DayOfWeek> AirDays { get; set; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the air time.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The air time.</value>
|
|
|
|
|
public string AirTime { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Series aren't included directly in indices - Their Episodes will roll up to them
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if [include in index]; otherwise, <c>false</c>.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool IncludeInIndex
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-04-13 18:02:30 +00:00
|
|
|
|
/// Gets the user data key.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
2013-04-13 18:02:30 +00:00
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
public override string GetUserDataKey()
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-04-13 18:02:30 +00:00
|
|
|
|
return this.GetProviderId(MetadataProviders.Tvdb) ?? this.GetProviderId(MetadataProviders.Tvcom) ?? base.GetUserDataKey();
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Studio, Genre and Rating will all be the same so makes no sense to index by these
|
|
|
|
|
protected override Dictionary<string, Func<User, IEnumerable<BaseItem>>> GetIndexByOptions()
|
|
|
|
|
{
|
|
|
|
|
return new Dictionary<string, Func<User, IEnumerable<BaseItem>>> {
|
|
|
|
|
{LocalizedStrings.Instance.GetString("NoneDispPref"), null},
|
|
|
|
|
{LocalizedStrings.Instance.GetString("PerformerDispPref"), GetIndexByPerformer},
|
|
|
|
|
{LocalizedStrings.Instance.GetString("DirectorDispPref"), GetIndexByDirector},
|
|
|
|
|
{LocalizedStrings.Instance.GetString("YearDispPref"), GetIndexByYear},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates ResolveArgs on demand
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="pathInfo">The path info.</param>
|
|
|
|
|
/// <returns>ItemResolveArgs.</returns>
|
2013-04-28 05:29:27 +00:00
|
|
|
|
protected internal override ItemResolveArgs CreateResolveArgs(FileSystemInfo pathInfo = null)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
var args = base.CreateResolveArgs(pathInfo);
|
|
|
|
|
|
|
|
|
|
Season.AddMetadataFiles(args);
|
|
|
|
|
|
|
|
|
|
return args;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|