jellyfin/MediaBrowser.Controller/LiveTv/LiveTvAudioRecording.cs

104 lines
2.7 KiB
C#
Raw Normal View History

2015-01-26 23:47:16 +01:00
using System.Runtime.Serialization;
2015-02-06 06:39:07 +01:00
using MediaBrowser.Controller.Entities;
2015-01-26 23:47:16 +01:00
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Model.Configuration;
2013-12-19 22:51:32 +01:00
using MediaBrowser.Model.Entities;
2014-12-20 07:06:27 +01:00
using MediaBrowser.Model.Users;
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>
2015-01-24 23:33:26 +01:00
protected override string CreateUserDataKey()
2013-12-19 22:51:32 +01:00
{
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>
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
public override bool IsOwnedItem
{
get
{
return false;
}
}
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
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
}
}
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
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
2015-01-26 23:47:16 +01:00
[IgnoreDataMember]
2014-02-11 05:55:01 +01:00
public override bool SupportsLocalMetadata
{
get
{
return false;
}
}
2014-12-20 07:06:27 +01:00
protected override bool GetBlockUnratedValue(UserPolicy config)
{
return config.BlockUnratedItems.Contains(UnratedItem.LiveTvProgram);
}
protected override string GetInternalMetadataPath(string basePath)
{
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N"));
}
2015-02-06 06:39:07 +01:00
public override bool IsAuthorizedToDelete(User user)
{
return user.Policy.EnableLiveTvManagement;
}
2013-12-19 22:51:32 +01:00
}
}