jellyfin/MediaBrowser.Controller/LiveTv/LiveTvVideoRecording.cs

145 lines
4 KiB
C#
Raw Normal View History

2015-03-28 21:22:27 +01:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Configuration;
2015-03-28 21:22:27 +01:00
using MediaBrowser.Model.Dto;
2013-12-19 22:51:32 +01:00
using MediaBrowser.Model.Entities;
2015-06-01 19:07:55 +02:00
using MediaBrowser.Model.LiveTv;
2014-12-20 07:06:27 +01:00
using MediaBrowser.Model.Users;
2015-06-01 19:07:55 +02:00
using System;
2015-03-28 21:22:27 +01:00
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
2013-12-19 22:51:32 +01:00
namespace MediaBrowser.Controller.LiveTv
{
public class LiveTvVideoRecording : Video, ILiveTvRecording
2013-12-19 22:51:32 +01:00
{
2015-06-01 19:07:55 +02:00
public string ExternalId { get; set; }
public string ProviderImagePath { get; set; }
public string ProviderImageUrl { get; set; }
public string EpisodeTitle { get; set; }
public bool IsSeries { get; set; }
public string SeriesTimerId { get; set; }
public DateTime StartDate { get; set; }
public RecordingStatus Status { get; set; }
public bool IsSports { get; set; }
public bool IsNews { get; set; }
public bool IsKids { get; set; }
public bool IsRepeat { get; set; }
public bool IsMovie { get; set; }
public bool? IsHD { get; set; }
public bool IsLive { get; set; }
public bool IsPremiere { get; set; }
public ChannelType ChannelType { get; set; }
public string ProgramId { get; set; }
public ProgramAudio? Audio { get; set; }
public DateTime? OriginalAirDate { get; set; }
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();
2015-06-03 05:16:15 +02:00
if (!string.IsNullOrEmpty(ProgramId))
2014-01-06 02:59:21 +01:00
{
2015-06-03 05:16:15 +02:00
return name + "-" + ProgramId;
2014-01-06 02:59:21 +01:00
}
2015-06-03 05:16:15 +02:00
return name + "-" + Name + (EpisodeTitle ?? string.Empty);
2013-12-19 22:51:32 +01:00
}
public string ServiceName { get; set; }
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.Video;
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;
}
}
/// <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;
}
}
2013-12-19 22:51:32 +01:00
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;
}
}
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
2015-06-24 00:13:06 +02:00
public override bool CanDelete()
{
return true;
}
2015-02-06 06:39:07 +01:00
public override bool IsAuthorizedToDelete(User user)
{
return user.Policy.EnableLiveTvManagement;
}
2015-03-28 21:22:27 +01:00
public override IEnumerable<MediaSourceInfo> GetMediaSources(bool enablePathSubstitution)
{
var list = base.GetMediaSources(enablePathSubstitution).ToList();
foreach (var mediaSource in list)
{
if (string.IsNullOrWhiteSpace(mediaSource.Path))
{
mediaSource.Type = MediaSourceType.Placeholder;
}
}
return list;
}
2013-12-19 22:51:32 +01:00
}
}