2020-08-22 21:29:54 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-06-01 20:40:01 +00:00
|
|
|
using System;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
|
|
|
|
namespace Jellyfin.Data.Entities
|
|
|
|
{
|
2020-05-02 21:56:05 +00:00
|
|
|
public partial class LibraryRoot
|
|
|
|
{
|
|
|
|
partial void Init();
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Default constructor. Protected due to required properties, but present because EF needs it.
|
|
|
|
/// </summary>
|
|
|
|
protected LibraryRoot()
|
|
|
|
{
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Replaces default constructor, since it's protected. Caller assumes responsibility for setting all required values before saving.
|
|
|
|
/// </summary>
|
|
|
|
public static LibraryRoot CreateLibraryRootUnsafe()
|
|
|
|
{
|
|
|
|
return new LibraryRoot();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Public constructor with required data.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
2020-06-19 10:21:49 +00:00
|
|
|
/// <param name="path">Absolute Path.</param>
|
2020-05-02 21:56:05 +00:00
|
|
|
public LibraryRoot(string path)
|
|
|
|
{
|
2020-06-20 08:35:29 +00:00
|
|
|
if (string.IsNullOrEmpty(path))
|
|
|
|
{
|
|
|
|
throw new ArgumentNullException(nameof(path));
|
|
|
|
}
|
2020-05-02 21:56:05 +00:00
|
|
|
|
2020-06-20 08:35:29 +00:00
|
|
|
this.Path = path;
|
2020-05-02 21:56:05 +00:00
|
|
|
|
|
|
|
Init();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Static create function (for use in LINQ queries, etc.)
|
|
|
|
/// </summary>
|
2020-06-19 10:21:49 +00:00
|
|
|
/// <param name="path">Absolute Path.</param>
|
2020-05-02 21:56:05 +00:00
|
|
|
public static LibraryRoot Create(string path)
|
|
|
|
{
|
|
|
|
return new LibraryRoot(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Properties
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Backing field for Id.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
internal int _Id;
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of Id to be changed before setting.
|
|
|
|
/// </summary>
|
|
|
|
partial void SetId(int oldValue, ref int newValue);
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of Id to be changed before returning.
|
|
|
|
/// </summary>
|
|
|
|
partial void GetId(ref int result);
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Identity, Indexed, Required.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
[Key]
|
|
|
|
[Required]
|
|
|
|
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
|
|
|
|
public int Id
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
int value = _Id;
|
|
|
|
GetId(ref value);
|
2020-06-19 09:57:37 +00:00
|
|
|
return _Id = value;
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
protected set
|
|
|
|
{
|
|
|
|
int oldValue = _Id;
|
|
|
|
SetId(oldValue, ref value);
|
|
|
|
if (oldValue != value)
|
|
|
|
{
|
|
|
|
_Id = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Backing field for Path.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
protected string _Path;
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of Path to be changed before setting.
|
|
|
|
/// </summary>
|
|
|
|
partial void SetPath(string oldValue, ref string newValue);
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of Path to be changed before returning.
|
|
|
|
/// </summary>
|
|
|
|
partial void GetPath(ref string result);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Required, Max length = 65535
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Absolute Path.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
[Required]
|
|
|
|
[MaxLength(65535)]
|
|
|
|
[StringLength(65535)]
|
|
|
|
public string Path
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
string value = _Path;
|
|
|
|
GetPath(ref value);
|
2020-06-19 09:57:37 +00:00
|
|
|
return _Path = value;
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
set
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-05-02 21:56:05 +00:00
|
|
|
string oldValue = _Path;
|
|
|
|
SetPath(oldValue, ref value);
|
|
|
|
if (oldValue != value)
|
|
|
|
{
|
|
|
|
_Path = value;
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Backing field for NetworkPath.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
protected string _NetworkPath;
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of NetworkPath to be changed before setting.
|
|
|
|
/// </summary>
|
|
|
|
partial void SetNetworkPath(string oldValue, ref string newValue);
|
|
|
|
/// <summary>
|
|
|
|
/// When provided in a partial class, allows value of NetworkPath to be changed before returning.
|
|
|
|
/// </summary>
|
|
|
|
partial void GetNetworkPath(ref string result);
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Max length = 65535
|
|
|
|
/// Absolute network path, for example for transcoding sattelites.
|
|
|
|
/// </summary>
|
|
|
|
[MaxLength(65535)]
|
|
|
|
[StringLength(65535)]
|
|
|
|
public string NetworkPath
|
|
|
|
{
|
|
|
|
get
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-05-02 21:56:05 +00:00
|
|
|
string value = _NetworkPath;
|
|
|
|
GetNetworkPath(ref value);
|
2020-06-19 09:57:37 +00:00
|
|
|
return _NetworkPath = value;
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2020-05-02 21:56:05 +00:00
|
|
|
set
|
2019-06-01 20:40:01 +00:00
|
|
|
{
|
2020-05-02 21:56:05 +00:00
|
|
|
string oldValue = _NetworkPath;
|
|
|
|
SetNetworkPath(oldValue, ref value);
|
|
|
|
if (oldValue != value)
|
|
|
|
{
|
|
|
|
_NetworkPath = value;
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|
2020-05-02 21:56:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Required, ConcurrenyToken.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
[ConcurrencyCheck]
|
|
|
|
[Required]
|
|
|
|
public uint RowVersion { get; set; }
|
|
|
|
|
|
|
|
public void OnSavingChanges()
|
|
|
|
{
|
|
|
|
RowVersion++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*************************************************************************
|
|
|
|
* Navigation properties
|
|
|
|
*************************************************************************/
|
|
|
|
|
|
|
|
/// <summary>
|
2020-06-15 22:37:52 +00:00
|
|
|
/// Required.
|
2020-05-02 21:56:05 +00:00
|
|
|
/// </summary>
|
|
|
|
[ForeignKey("Library_Id")]
|
|
|
|
public virtual Library Library { get; set; }
|
|
|
|
}
|
2019-06-01 20:40:01 +00:00
|
|
|
}
|
|
|
|
|