jellyfin/MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs

87 lines
2.2 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Model.Configuration;
2013-12-19 22:51:32 +01:00
using MediaBrowser.Model.Entities;
using System.Linq;
2013-12-19 22:51:32 +01:00
namespace MediaBrowser.Controller.LiveTv
{
public class LiveTvAudioRecording : Audio, ILiveTvRecording
2013-12-19 22:51:32 +01:00
{
/// <summary>
/// Gets the user data key.
/// </summary>
/// <returns>System.String.</returns>
public override string GetUserDataKey()
{
2014-01-06 02:59:21 +01:00
var name = GetClientTypeName();
if (!string.IsNullOrEmpty(RecordingInfo.ProgramId))
{
return name + "-" + RecordingInfo.ProgramId;
}
return name + "-" + RecordingInfo.Name + (RecordingInfo.EpisodeTitle ?? string.Empty);
2013-12-19 22:51:32 +01:00
}
public RecordingInfo RecordingInfo { get; set; }
public string ServiceName { get; set; }
/// <summary>
/// Gets a value indicating whether this instance is owned item.
/// </summary>
/// <value><c>true</c> if this instance is owned item; otherwise, <c>false</c>.</value>
public override bool IsOwnedItem
{
get
{
return false;
}
}
2013-12-19 22:51:32 +01:00
public override string MediaType
{
get
{
return Model.Entities.MediaType.Audio;
2013-12-19 22:51:32 +01:00
}
}
public override LocationType LocationType
{
get
{
if (!string.IsNullOrEmpty(Path))
{
return base.LocationType;
}
2013-12-19 22:51:32 +01:00
return LocationType.Remote;
}
}
public override string GetClientTypeName()
{
return "Recording";
}
public override bool IsSaveLocalMetadataEnabled()
{
return false;
}
2014-02-11 05:55:01 +01:00
public override bool SupportsLocalMetadata
{
get
{
return false;
}
}
protected override bool GetBlockUnratedValue(UserConfiguration config)
{
return config.BlockUnratedItems.Contains(UnratedItem.LiveTvProgram);
}
2013-12-19 22:51:32 +01:00
}
}