2015-03-28 20:22:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-21 15:24:29 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2015-03-28 20:22:27 +00:00
|
|
|
|
using MediaBrowser.Model.Dto;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2015-06-01 17:07:55 +00:00
|
|
|
|
using MediaBrowser.Model.LiveTv;
|
|
|
|
|
using System;
|
2015-03-28 20:22:27 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.Serialization;
|
2016-02-12 04:54:00 +00:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.LiveTv
|
|
|
|
|
{
|
2014-01-01 18:26:31 +00:00
|
|
|
|
public class LiveTvVideoRecording : Video, ILiveTvRecording
|
2013-12-19 21:51:32 +00:00
|
|
|
|
{
|
2015-09-29 16:29:06 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public string EpisodeTitle { get; set; }
|
2015-09-20 02:06:56 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsSeries { get; set; }
|
|
|
|
|
public string SeriesTimerId { get; set; }
|
2016-10-09 07:18:43 +00:00
|
|
|
|
public string TimerId { get; set; }
|
2015-09-10 18:28:22 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
|
public RecordingStatus Status { get; set; }
|
2015-09-10 03:22:52 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsSports { get; set; }
|
2015-09-20 02:06:56 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsNews { get; set; }
|
2015-09-10 03:22:52 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsKids { get; set; }
|
2015-09-29 16:29:06 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsRepeat { get; set; }
|
2015-09-10 03:22:52 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsMovie { get; set; }
|
2015-09-20 02:06:56 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsLive { get; set; }
|
2015-09-20 02:06:56 +00:00
|
|
|
|
[IgnoreDataMember]
|
2015-06-01 17:07:55 +00:00
|
|
|
|
public bool IsPremiere { get; set; }
|
|
|
|
|
|
2016-03-19 05:04:38 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override SourceType SourceType
|
|
|
|
|
{
|
|
|
|
|
get { return SourceType.LiveTV; }
|
|
|
|
|
set { }
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-19 21:51:32 +00:00
|
|
|
|
public override string MediaType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-01-01 18:26:31 +00:00
|
|
|
|
return Model.Entities.MediaType.Video;
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 21:33:38 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
protected override bool SupportsIsInMixedFolderDetection
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 06:46:59 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPlayedStatus
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Status == RecordingStatus.Completed && base.SupportsPlayedStatus;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-26 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-12-19 21:51:32 +00:00
|
|
|
|
public override LocationType LocationType
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
2014-01-01 18:26:31 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(Path))
|
|
|
|
|
{
|
|
|
|
|
return base.LocationType;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 21:51:32 +00:00
|
|
|
|
return LocationType.Remote;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 22:40:03 +00:00
|
|
|
|
/// <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 22:47:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-07 22:40:03 +00:00
|
|
|
|
public override bool IsOwnedItem
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 21:51:32 +00:00
|
|
|
|
public override string GetClientTypeName()
|
|
|
|
|
{
|
|
|
|
|
return "Recording";
|
|
|
|
|
}
|
2014-01-01 18:26:31 +00:00
|
|
|
|
|
|
|
|
|
public override bool IsSaveLocalMetadataEnabled()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-02-11 04:55:01 +00:00
|
|
|
|
|
2015-10-04 18:10:50 +00:00
|
|
|
|
[IgnoreDataMember]
|
2014-02-11 04:55:01 +00:00
|
|
|
|
public override bool SupportsLocalMetadata
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-21 15:24:29 +00:00
|
|
|
|
|
2015-11-06 15:02:22 +00:00
|
|
|
|
public override UnratedItem GetBlockUnratedType()
|
2014-02-21 15:24:29 +00:00
|
|
|
|
{
|
2015-11-06 15:02:22 +00:00
|
|
|
|
return UnratedItem.LiveTvProgram;
|
2014-02-21 15:24:29 +00:00
|
|
|
|
}
|
2015-01-13 03:46:44 +00:00
|
|
|
|
|
|
|
|
|
protected override string GetInternalMetadataPath(string basePath)
|
|
|
|
|
{
|
|
|
|
|
return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N"));
|
|
|
|
|
}
|
2015-02-06 05:39:07 +00:00
|
|
|
|
|
2015-06-23 22:13:06 +00:00
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
{
|
2016-10-09 07:18:43 +00:00
|
|
|
|
return Status == RecordingStatus.Completed;
|
2015-06-23 22:13:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-02-06 05:39:07 +00:00
|
|
|
|
public override bool IsAuthorizedToDelete(User user)
|
|
|
|
|
{
|
|
|
|
|
return user.Policy.EnableLiveTvManagement;
|
|
|
|
|
}
|
2015-03-28 20:22:27 +00: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;
|
|
|
|
|
}
|
2015-10-29 19:01:04 +00:00
|
|
|
|
|
|
|
|
|
public override bool IsVisibleStandalone(User user)
|
|
|
|
|
{
|
|
|
|
|
return IsVisible(user);
|
|
|
|
|
}
|
2016-02-12 04:54:00 +00:00
|
|
|
|
|
|
|
|
|
public override Task Delete(DeleteOptions options)
|
|
|
|
|
{
|
|
|
|
|
return LiveTvManager.DeleteRecording(this);
|
|
|
|
|
}
|
2016-03-08 02:59:21 +00:00
|
|
|
|
|
|
|
|
|
public override Task OnFileDeleted()
|
|
|
|
|
{
|
|
|
|
|
return LiveTvManager.OnRecordingFileDeleted(this);
|
|
|
|
|
}
|
2013-12-19 21:51:32 +00:00
|
|
|
|
}
|
|
|
|
|
}
|