#nullable disable
#pragma warning disable CS1591
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Globalization;
using System.Linq;
using System.Text.Json.Serialization;
using Jellyfin.Data.Enums;
using Jellyfin.Extensions;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.LiveTv;
using MediaBrowser.Model.MediaInfo;
namespace MediaBrowser.Controller.LiveTv
{
    public class LiveTvChannel : BaseItem, IHasMediaSources, IHasProgramAttributes
    {
        [JsonIgnore]
        public override bool SupportsPositionTicksResume => false;
        [JsonIgnore]
        public override SourceType SourceType => SourceType.LiveTV;
        [JsonIgnore]
        public override bool EnableRememberingTrackSelections => false;
        /// 
        /// Gets or sets the number.
        /// 
        /// The number.
        public string Number { get; set; }
        /// 
        /// Gets or sets the type of the channel.
        /// 
        /// The type of the channel.
        public ChannelType ChannelType { get; set; }
        [JsonIgnore]
        public override LocationType LocationType => LocationType.Remote;
        [JsonIgnore]
        public override MediaType MediaType => ChannelType == ChannelType.Radio ? MediaType.Audio : MediaType.Video;
        [JsonIgnore]
        public bool IsMovie { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance is sports.
        /// 
        /// true if this instance is sports; otherwise, false.
        [JsonIgnore]
        public bool IsSports { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance is series.
        /// 
        /// true if this instance is series; otherwise, false.
        [JsonIgnore]
        public bool IsSeries { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance is news.
        /// 
        /// true if this instance is news; otherwise, false.
        [JsonIgnore]
        public bool IsNews { get; set; }
        /// 
        /// Gets a value indicating whether this instance is kids.
        /// 
        /// true if this instance is kids; otherwise, false.
        [JsonIgnore]
        public bool IsKids => Tags.Contains("Kids", StringComparison.OrdinalIgnoreCase);
        [JsonIgnore]
        public bool IsRepeat { get; set; }
        /// 
        /// Gets or sets the episode title.
        /// 
        /// The episode title.
        [JsonIgnore]
        public string EpisodeTitle { get; set; }
        public override List GetUserDataKeys()
        {
            var list = base.GetUserDataKeys();
            if (!ConfigurationManager.Configuration.DisableLiveTvChannelUserDataName)
            {
                list.Insert(0, GetClientTypeName() + "-" + Name);
            }
            return list;
        }
        public override UnratedItem GetBlockUnratedType()
        {
            return UnratedItem.LiveTvChannel;
        }
        protected override string CreateSortName()
        {
            if (double.TryParse(Number, CultureInfo.InvariantCulture, out double number))
            {
                return string.Format(CultureInfo.InvariantCulture, "{0:00000.0}", number) + "-" + (Name ?? string.Empty);
            }
            return (Number ?? string.Empty) + "-" + (Name ?? string.Empty);
        }
        public override string GetClientTypeName()
        {
            return "TvChannel";
        }
        public IEnumerable GetTaggedItems() => [];
        public override IReadOnlyList GetMediaSources(bool enablePathSubstitution)
        {
            var info = new MediaSourceInfo
            {
                Id = Id.ToString("N", CultureInfo.InvariantCulture),
                Protocol = PathProtocol ?? MediaProtocol.File,
                MediaStreams = Array.Empty(),
                Name = Name,
                Path = Path,
                RunTimeTicks = RunTimeTicks,
                Type = MediaSourceType.Placeholder,
                IsInfiniteStream = RunTimeTicks is null
            };
            return [info];
        }
        public override IReadOnlyList GetMediaStreams()
        {
            return [];
        }
        protected override string GetInternalMetadataPath(string basePath)
        {
            return System.IO.Path.Combine(basePath, "livetv", Id.ToString("N", CultureInfo.InvariantCulture), "metadata");
        }
        public override bool CanDelete()
        {
            return false;
        }
    }
}