using System;
using System.Net;
using System.Net.Sockets;
using System.Text;
using System.Text.Json;
using System.Threading;
using System.Threading.Tasks;
using MediaBrowser.Controller;
using MediaBrowser.Model.ApiClient;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.Logging;
using static MediaBrowser.Controller.Extensions.ConfigurationExtensions;
namespace Emby.Server.Implementations.Udp
{
    /// 
    /// Provides a Udp Server.
    /// 
    public sealed class UdpServer : IDisposable
    {
        /// 
        /// The _logger.
        /// 
        private readonly ILogger _logger;
        private readonly IServerApplicationHost _appHost;
        private readonly IConfiguration _config;
        private readonly byte[] _receiveBuffer = new byte[8192];
        private Socket _udpSocket;
        private IPEndPoint _endpoint;
        private bool _disposed = false;
        /// 
        /// Initializes a new instance of the  class.
        /// 
        /// The logger.
        /// The application host.
        /// The configuration manager.
        /// The port.
        public UdpServer(
            ILogger logger,
            IServerApplicationHost appHost,
            IConfiguration configuration,
            int port)
        {
            _logger = logger;
            _appHost = appHost;
            _config = configuration;
            _endpoint = new IPEndPoint(IPAddress.Any, port);
            _udpSocket = new Socket(AddressFamily.InterNetwork, SocketType.Dgram, ProtocolType.Udp);
            _udpSocket.SetSocketOption(SocketOptionLevel.Socket, SocketOptionName.ReuseAddress, true);
        }
        private async Task RespondToV2Message(EndPoint endpoint, CancellationToken cancellationToken)
        {
            string? localUrl = _config[AddressOverrideKey];
            if (string.IsNullOrEmpty(localUrl))
            {
                localUrl = _appHost.GetSmartApiUrl(((IPEndPoint)endpoint).Address);
            }
            if (string.IsNullOrEmpty(localUrl))
            {
                _logger.LogWarning("Unable to respond to server discovery request because the local ip address could not be determined.");
                return;
            }
            var response = new ServerDiscoveryInfo(localUrl, _appHost.SystemId, _appHost.FriendlyName);
            try
            {
                await _udpSocket.SendToAsync(JsonSerializer.SerializeToUtf8Bytes(response), SocketFlags.None, endpoint, cancellationToken).ConfigureAwait(false);
            }
            catch (SocketException ex)
            {
                _logger.LogError(ex, "Error sending response message");
            }
        }
        /// 
        /// Starts the specified port.
        /// 
        /// The cancellation token to cancel operation.
        public void Start(CancellationToken cancellationToken)
        {
            _udpSocket.Bind(_endpoint);
            _ = Task.Run(async () => await BeginReceiveAsync(cancellationToken).ConfigureAwait(false), cancellationToken).ConfigureAwait(false);
        }
        private async Task BeginReceiveAsync(CancellationToken cancellationToken)
        {
            while (!cancellationToken.IsCancellationRequested)
            {
                try
                {
                    var result = await _udpSocket.ReceiveFromAsync(_receiveBuffer, SocketFlags.None, _endpoint, cancellationToken).ConfigureAwait(false);
                    var text = Encoding.UTF8.GetString(_receiveBuffer, 0, result.ReceivedBytes);
                    if (text.Contains("who is JellyfinServer?", StringComparison.OrdinalIgnoreCase))
                    {
                        await RespondToV2Message(result.RemoteEndPoint, cancellationToken).ConfigureAwait(false);
                    }
                }
                catch (SocketException ex)
                {
                    _logger.LogError(ex, "Failed to receive data from socket");
                }
                catch (OperationCanceledException)
                {
                    // Don't throw
                }
            }
        }
        /// 
        public void Dispose()
        {
            if (_disposed)
            {
                return;
            }
            _udpSocket?.Dispose();
            GC.SuppressFinalize(this);
        }
    }
}