using DNS.Client;
using Microsoft.Extensions.Caching.Memory;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System;
using System.Linq;
using System.Net;
using System.Threading;
using System.Threading.Tasks;
namespace FastGithub.ReverseProxy
{
    /// 
    /// 受信任的域名解析器
    ///  
    sealed class TrustedResolver
    {
        private readonly IMemoryCache memoryCache;
        private readonly TimeSpan cacheTimeSpan = TimeSpan.FromSeconds(10d);
        private readonly IOptionsMonitor options;
        private readonly ILogger logger;
        /// 
        /// 受信任的域名解析器
        ///  
        /// 
        public TrustedResolver(
            IMemoryCache memoryCache,
            IOptionsMonitor options,
            ILogger logger)
        {
            this.memoryCache = memoryCache;
            this.options = options;
            this.logger = logger;
        }
        /// 
        /// 解析指定的域名
        /// 
        /// 
        /// 
        public async Task ResolveAsync(string domain, CancellationToken cancellationToken)
        {
            // 缓存以避免做不必要的并发查询
            var key = $"domain:{domain}";
            var address = await this.memoryCache.GetOrCreateAsync(key, e =>
            {
                e.SetAbsoluteExpiration(this.cacheTimeSpan);
                return this.LookupAsync(domain, cancellationToken);
            });
            this.logger.LogInformation($"[{address}->{domain}]");
            return address;
        }
        /// 
        /// 查找ip
        /// 
        /// 
        /// 
        /// 
        private async Task LookupAsync(string domain, CancellationToken cancellationToken)
        {
            var endpoint = this.options.CurrentValue.TrustedDns.ToIPEndPoint();
            try
            {
                var dnsClient = new DnsClient(endpoint);
                var addresses = await dnsClient.Lookup(domain, DNS.Protocol.RecordType.A, cancellationToken);
                var address = addresses?.FirstOrDefault();
                if (address == null)
                {
                    throw new Exception($"解析不到{domain}的ip");
                }
                if (address.Equals(IPAddress.Loopback))
                {
                    throw new Exception($"dns受干扰,解析{domain}的ip为{IPAddress.Loopback}");
                }
                return address;
            }
            catch (Exception ex)
            {
                throw new ReverseProxyException($"dns({endpoint}):{ex.Message}", ex);
            }
        }
    }
}