jellyfin/Emby.Naming/Video/VideoFileInfo.cs

92 lines
2.8 KiB
C#
Raw Normal View History

2019-12-06 20:40:06 +01:00
using MediaBrowser.Model.Entities;
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Video
{
/// <summary>
2020-03-25 17:53:03 +01:00
/// Represents a single video file.
2018-09-12 19:26:21 +02:00
/// </summary>
public class VideoFileInfo
{
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the path.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The path.</value>
public string Path { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the container.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The container.</value>
public string Container { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the name.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The name.</value>
public string Name { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the year.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The year.</value>
public int? Year { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the type of the extra, e.g. trailer, theme song, behind the scenes, etc.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The type of the extra.</value>
2019-12-06 20:40:06 +01:00
public ExtraType? ExtraType { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the extra rule.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The extra rule.</value>
public ExtraRule ExtraRule { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the format3 d.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The format3 d.</value>
public string Format3D { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets a value indicating whether [is3 d].
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value><c>true</c> if [is3 d]; otherwise, <c>false</c>.</value>
public bool Is3D { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets a value indicating whether this instance is stub.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
public bool IsStub { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets the type of the stub.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The type of the stub.</value>
2019-01-08 00:27:46 +01:00
public string StubType { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets or sets a value indicating whether this instance is a directory.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The type.</value>
public bool IsDirectory { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
/// <summary>
2020-03-25 17:53:03 +01:00
/// Gets the file name without extension.
2018-09-12 19:26:21 +02:00
/// </summary>
/// <value>The file name without extension.</value>
2020-03-25 17:53:03 +01:00
public string FileNameWithoutExtension => !IsDirectory
? System.IO.Path.GetFileNameWithoutExtension(Path)
: System.IO.Path.GetFileName(Path);
2018-09-12 19:26:21 +02:00
/// <inheritdoc />
2018-09-12 19:26:21 +02:00
public override string ToString()
{
// Makes debugging easier
return Name ?? base.ToString();
}
}
}