using FastGithub.Configuration; using FastGithub.ReverseProxy; using Microsoft.AspNetCore.Connections; using Microsoft.AspNetCore.Hosting; using Microsoft.AspNetCore.Server.Kestrel.Core; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using System; using System.Net; namespace FastGithub { /// /// Kestrel扩展 /// public static class KestrelServerOptionsExtensions { /// /// 监听http的反向代理 /// /// public static void ListenHttpReverseProxy(this KestrelServerOptions kestrel) { const int HTTP_PORT = 80; var logger = kestrel.GetLogger(); if (LocalMachine.CanListenTcp(HTTP_PORT) == false) { logger.LogWarning($"由于tcp端口{HTTP_PORT}已经被其它进程占用,http反向代理功能将受限"); } else { kestrel.Listen(IPAddress.Any, HTTP_PORT); logger.LogInformation($"已监听tcp端口{HTTP_PORT},http反向代理启动完成"); } } /// /// 监听https的反向代理 /// /// public static void ListenHttpsReverseProxy(this KestrelServerOptions kestrel) { const int HTTPS_PORT = 443; if (OperatingSystem.IsWindows()) { TcpTable.KillPortOwner(HTTPS_PORT); } if (LocalMachine.CanListenTcp(HTTPS_PORT) == false) { throw new FastGithubException($"由于tcp端口{HTTPS_PORT}已经被其它进程占用,{nameof(FastGithub)}无法进行必须的https反向代理"); } var certService = kestrel.ApplicationServices.GetRequiredService(); certService.CreateCaCertIfNotExists(); certService.InstallAndTrustCaCert(); kestrel.Listen(IPAddress.Any, HTTPS_PORT, listen => listen.UseHttps(https => https.ServerCertificateSelector = (ctx, domain) => certService.GetOrCreateServerCert(domain))); var logger = kestrel.GetLogger(); logger.LogInformation($"已监听tcp端口{HTTPS_PORT},https反向代理启动完成"); } /// /// 监听github的ssh的代理 /// /// public static void ListenGithubSshProxy(this KestrelServerOptions kestrel) { const int SSH_PORT = 22; var logger = kestrel.GetLogger(); if (LocalMachine.CanListenTcp(SSH_PORT) == false) { logger.LogWarning($"由于tcp端口{SSH_PORT}已经被其它进程占用,github的ssh代理功能将受限"); } else { kestrel.Listen(IPAddress.Any, SSH_PORT, listen => listen.UseConnectionHandler()); logger.LogInformation($"已监听tcp端口{SSH_PORT},github的ssh代理启动完成"); } } /// /// 获取日志 /// /// /// private static ILogger GetLogger(this KestrelServerOptions kestrel) { var loggerFactory = kestrel.ApplicationServices.GetRequiredService(); return loggerFactory.CreateLogger($"{nameof(FastGithub)}.{nameof(ReverseProxy)}"); } } }