IEndpointRouteBuilderExtensions.cs 2.44 KB
using NCC;
using NCC.Dependency;
using NCC.Extensions;
using NCC.InstantMessaging;
using Microsoft.AspNetCore.Http.Connections;
using Microsoft.AspNetCore.Routing;
using Microsoft.AspNetCore.SignalR;
using System;
using System.Linq;
using System.Reflection;

namespace Microsoft.AspNetCore.Builder
{
    /// <summary>
    /// 终点路由构建器拓展
    /// </summary>
    [SuppressSniffer]
    public static class IEndpointRouteBuilderExtensions
    {
        /// <summary>
        /// 扫描配置所有集线器
        /// </summary>
        /// <param name="endpoints"></param>
        public static void MapHubs(this IEndpointRouteBuilder endpoints)
        {
            // 扫描所有集线器类型并且贴有 [MapHub] 特性且继承 Hub 或 Hub<>
            var hubs = App.EffectiveTypes.Where(u => !u.IsInterface && !u.IsAbstract && u.IsClass
                && u.IsDefined(typeof(MapHubAttribute), true)
                && (typeof(Hub).IsAssignableFrom(u) || u.HasImplementedRawGeneric(typeof(Hub<>))));

            if (!hubs.Any()) return;

            // 反射获取 MapHub 拓展方法
            var mapHubMethod = typeof(HubEndpointRouteBuilderExtensions).GetMethods().Where(u => u.Name == "MapHub" && u.IsGenericMethod && u.GetParameters().Length == 3).FirstOrDefault();
            if (mapHubMethod == null) return;

            // 遍历所有集线器并注册
            foreach (var hub in hubs)
            {
                // 解析集线器特性
                var mapHubAttribute = hub.GetCustomAttribute<MapHubAttribute>(true);

                // 创建连接分发器委托
                Action<HttpConnectionDispatcherOptions> configureOptions = options =>
                {
                    // 执行连接分发器选项配置
                    hub.GetMethod("HttpConnectionDispatcherOptionsSettings", BindingFlags.Public | BindingFlags.Static)
                        ?.Invoke(null, new object[] { options });
                };

                // 注册集线器
                var hubEndpointConventionBuilder = mapHubMethod.MakeGenericMethod(hub).Invoke(null, new object[] { endpoints, mapHubAttribute.Pattern, configureOptions }) as HubEndpointConventionBuilder;

                // 执行终点转换器配置
                hub.GetMethod("HubEndpointConventionBuilderSettings", BindingFlags.Public | BindingFlags.Static)
                    ?.Invoke(null, new object[] { hubEndpointConventionBuilder });
            }
        }
    }
}