File: Startup.cs
Web Access
Project: src\src\SignalR\server\StackExchangeRedis\test\Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests.csproj (Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Routing;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Primitives;
 
namespace Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests;
 
public class Startup
{
    public void ConfigureServices(IServiceCollection services)
    {
        services.AddSignalR(options =>
        {
            options.EnableDetailedErrors = true;
        })
            .AddMessagePackProtocol()
            .AddStackExchangeRedis(options =>
            {
                options.Configuration.EndPoints.Add(Environment.GetEnvironmentVariable("REDIS_CONNECTION"));
            });
 
        services.AddSingleton<IUserIdProvider, UserNameIdProvider>();
    }
 
    public void Configure(IApplicationBuilder app)
    {
        app.UseRouting();
        app.UseEndpoints(endpoints =>
        {
            endpoints.MapHub<EchoHub>("/echo");
        });
    }
 
    private class UserNameIdProvider : IUserIdProvider
    {
        public string GetUserId(HubConnectionContext connection)
        {
            // This is an AWFUL way to authenticate users! We're just using it for test purposes.
            var userNameHeader = connection.GetHttpContext().Request.Headers["UserName"];
            if (!StringValues.IsNullOrEmpty(userNameHeader))
            {
                return userNameHeader;
            }
 
            return null;
        }
    }
}