Пример #1
0
        public static MessagingOptions UseSignalRBroker(
            this MessagingOptions options,
            Action <IMessageBroker> brokerAction = null,
            string messageScope = null,
            string section      = "naos:messaging:signalr")
        {
            EnsureArg.IsNotNull(options, nameof(options));
            EnsureArg.IsNotNull(options.Context, nameof(options.Context));

            options.Context.Services.AddSingleton <IMessageBroker>(sp =>
            {
                var configuration = options.Context.Configuration.GetSection(section).Get <SignalRConfiguration>();
                var broker        = new SignalRServerlessMessageBroker(o => o
                                                                       .LoggerFactory(sp.GetRequiredService <ILoggerFactory>())
                                                                       .Mediator((IMediator)sp.CreateScope().ServiceProvider.GetService(typeof(IMediator)))
                                                                       .HandlerFactory(new ServiceProviderMessageHandlerFactory(sp))
                                                                       .ConnectionString(configuration.ConnectionString)
                                                                       .HttpClient(sp.GetRequiredService <IHttpClientFactory>())
                                                                       .Map(sp.GetRequiredService <ISubscriptionMap>())
                                                                       .FilterScope(Environment.GetEnvironmentVariable(EnvironmentKeys.IsLocal).ToBool()
                            ? Environment.MachineName.Humanize().Dehumanize().ToLower()
                            : string.Empty)
                                                                       .MessageScope(messageScope));

                brokerAction?.Invoke(broker);
                return(broker);
            });

            options.Context.Messages.Add($"{LogEventKeys.Startup} naos services builder: messaging added (broker={nameof(SignalRServerlessMessageBroker)})");

            return(options);
        }
Пример #2
0
        public static MessagingOptions UseSignalRServerlessBroker(
            this MessagingOptions options,
            Action <IMessageBroker> brokerAction = null,
            string messageScope = null,
            string section      = "naos:messaging:signalr")
        {
            EnsureArg.IsNotNull(options, nameof(options));
            EnsureArg.IsNotNull(options.Context, nameof(options.Context));

            var configuration = options.Context.Configuration.GetSection(section).Get <SignalRConfiguration>();

            if (configuration?.Enabled == true)
            {
                options.Context.Services.AddScoped <IMessageBroker>(sp =>
                {
                    var broker = new SignalRServerlessMessageBroker(o => o
                                                                    .LoggerFactory(sp.GetRequiredService <ILoggerFactory>())
                                                                    .Tracer(sp.GetService <ITracer>())
                                                                    .Mediator((IMediator)sp.CreateScope().ServiceProvider.GetService(typeof(IMediator)))
                                                                    .HandlerFactory(new ServiceProviderMessageHandlerFactory(sp))
                                                                    .ConnectionString(configuration.ConnectionString)
                                                                    .HttpClient(sp.GetRequiredService <IHttpClientFactory>())
                                                                    .Subscriptions(sp.GetRequiredService <ISubscriptionMap>())
                                                                    .FilterScope(Environment.GetEnvironmentVariable(EnvironmentKeys.IsLocal).ToBool()
                                ? Environment.MachineName.Humanize().Dehumanize().ToLower()
                                : string.Empty)
                                                                    .MessageScope(messageScope));

                    brokerAction?.Invoke(broker);
                    return(broker);
                });

                // TODO: does not work with azure hosted hub
                //options.Context.Services.AddHealthChecks()
                //    .AddSignalRHub(configuration.ConnectionString.SliceFrom("Endpoint=").SliceTill(";"), "messaging-broker-signalr", tags: new[] { "naos" });

                options.Context.Messages.Add($"naos services builder: messaging added (broker={nameof(SignalRServerlessMessageBroker)})");
            }
            else
            {
                throw new NaosException("no messaging signalr is enabled");
            }

            return(options);
        }