jellyfin/MediaBrowser.Controller/Entities/Game.cs

136 lines
4 KiB
C#
Raw Normal View History

2014-02-07 04:10:13 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Configuration;
2013-12-26 17:53:23 +01:00
using MediaBrowser.Model.Entities;
2013-11-12 16:36:08 +01:00
using System;
using System.Collections.Generic;
using System.Linq;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.Serialization;
2013-09-19 22:36:45 +02:00
2013-06-22 20:15:31 +02:00
namespace MediaBrowser.Controller.Entities
{
2016-10-09 09:18:43 +02:00
public class Game : BaseItem, IHasTrailers, IHasScreenshots, ISupportsPlaceHolders, IHasLookupInfo<GameInfo>
2013-06-22 20:15:31 +02:00
{
2013-09-19 22:36:45 +02:00
public Game()
{
MultiPartGameFiles = new List<string>();
2013-12-02 17:46:25 +01:00
RemoteTrailers = new List<MediaUrl>();
LocalTrailerIds = new List<Guid>();
2014-12-11 07:20:28 +01:00
RemoteTrailerIds = new List<Guid>();
2013-09-19 22:36:45 +02:00
}
2013-12-02 17:46:25 +01:00
public List<Guid> LocalTrailerIds { get; set; }
2014-12-11 07:20:28 +01:00
public List<Guid> RemoteTrailerIds { get; set; }
2015-02-06 06:39:07 +01:00
public override bool CanDownload()
{
var locationType = LocationType;
return locationType != LocationType.Remote &&
locationType != LocationType.Virtual;
}
2016-07-24 18:46:17 +02:00
[IgnoreDataMember]
public override bool EnableRefreshOnDateModifiedChange
2016-07-24 18:46:17 +02:00
{
get { return true; }
}
2016-10-09 09:18:43 +02:00
[IgnoreDataMember]
public override bool SupportsThemeMedia
{
get { return true; }
}
2013-12-02 17:46:25 +01:00
/// <summary>
/// Gets or sets the remote trailers.
/// </summary>
/// <value>The remote trailers.</value>
public List<MediaUrl> RemoteTrailers { get; set; }
2013-06-22 20:15:31 +02:00
/// <summary>
/// Gets the type of the media.
/// </summary>
/// <value>The type of the media.</value>
2016-07-24 18:46:17 +02:00
[IgnoreDataMember]
2013-06-22 20:15:31 +02:00
public override string MediaType
{
get { return Model.Entities.MediaType.Game; }
}
/// <summary>
/// Gets or sets the players supported.
/// </summary>
/// <value>The players supported.</value>
public int? PlayersSupported { get; set; }
2013-09-23 00:42:21 +02:00
/// <summary>
/// Gets a value indicating whether this instance is place holder.
2013-09-23 00:42:21 +02:00
/// </summary>
/// <value><c>true</c> if this instance is place holder; otherwise, <c>false</c>.</value>
public bool IsPlaceHolder { get; set; }
2013-09-23 00:42:21 +02:00
2013-06-22 20:15:31 +02:00
/// <summary>
/// Gets or sets the game system.
/// </summary>
/// <value>The game system.</value>
public string GameSystem { get; set; }
2013-07-22 19:07:39 +02:00
2013-09-19 22:36:45 +02:00
/// <summary>
/// Gets or sets a value indicating whether this instance is multi part.
/// </summary>
/// <value><c>true</c> if this instance is multi part; otherwise, <c>false</c>.</value>
public bool IsMultiPart { get; set; }
/// <summary>
/// Holds the paths to the game files in the event this is a multipart game
/// </summary>
public List<string> MultiPartGameFiles { get; set; }
2016-05-01 01:05:21 +02:00
public override List<string> GetUserDataKeys()
{
2016-05-01 01:05:21 +02:00
var list = base.GetUserDataKeys();
var id = this.GetProviderId(MetadataProviders.Gamesdb);
if (!string.IsNullOrEmpty(id))
{
2016-05-01 01:05:21 +02:00
list.Insert(0, "Game-Gamesdb-" + id);
}
2016-05-01 01:05:21 +02:00
return list;
}
public override IEnumerable<string> GetDeletePaths()
{
2016-10-07 17:08:13 +02:00
if (!DetectIsInMixedFolder())
{
return new[] { System.IO.Path.GetDirectoryName(Path) };
}
return base.GetDeletePaths();
}
2013-12-26 17:53:23 +01:00
2015-11-06 16:02:22 +01:00
public override UnratedItem GetBlockUnratedType()
2013-12-26 17:53:23 +01:00
{
2015-11-06 16:02:22 +01:00
return UnratedItem.Game;
2013-12-26 17:53:23 +01:00
}
2014-02-07 04:10:13 +01:00
public GameInfo GetLookupInfo()
{
var id = GetItemLookupInfo<GameInfo>();
id.GameSystem = GameSystem;
return id;
}
2014-12-11 07:20:28 +01:00
/// <summary>
/// Gets the trailer ids.
/// </summary>
/// <returns>List&lt;Guid&gt;.</returns>
public List<Guid> GetTrailerIds()
{
var list = LocalTrailerIds.ToList();
list.AddRange(RemoteTrailerIds);
return list;
}
2013-06-22 20:15:31 +02:00
}
}