jellyfin/MediaBrowser.Controller/Entities/LinkedChild.cs

49 lines
1.1 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System;
using System.Globalization;
2019-10-15 11:49:49 -04:00
using System.Text.Json.Serialization;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Entities
{
public class LinkedChild
{
public LinkedChild()
{
Id = Guid.NewGuid().ToString("N", CultureInfo.InvariantCulture);
}
2018-12-27 18:27:57 -05:00
public string Path { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public LinkedChildType Type { get; set; }
2020-06-15 17:43:52 -04:00
2018-12-27 18:27:57 -05:00
public string LibraryItemId { get; set; }
2019-10-15 11:49:49 -04:00
[JsonIgnore]
2018-12-27 18:27:57 -05:00
public string Id { get; set; }
/// <summary>
/// Gets or sets the linked item id.
2018-12-27 18:27:57 -05:00
/// </summary>
public Guid? ItemId { get; set; }
public static LinkedChild Create(BaseItem item)
{
var child = new LinkedChild
{
Path = item.Path,
Type = LinkedChildType.Manual
};
if (string.IsNullOrEmpty(child.Path))
{
child.LibraryItemId = item.Id.ToString("N", CultureInfo.InvariantCulture);
2018-12-27 18:27:57 -05:00
}
return child;
}
}
}