Udap.Server 0.1.9

There is a newer version of this package available.
See the version list below for details.
dotnet add package Udap.Server --version 0.1.9                
NuGet\Install-Package Udap.Server -Version 0.1.9                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Udap.Server" Version="0.1.9" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Udap.Server --version 0.1.9                
#r "nuget: Udap.Server, 0.1.9"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Udap.Server as a Cake Addin
#addin nuget:?package=Udap.Server&version=0.1.9

// Install Udap.Server as a Cake Tool
#tool nuget:?package=Udap.Server&version=0.1.9                

Udap.Server

UDAP logo

📦 This package

This package is intended to be used with Duende's Identity Server. Duende must be licensed if you are using it for anything more than testing and you make more than 1 million dollars a year. I am willing to build samples using other identity providers. Keep in mind Udap.Server is meant to add auto registration only. Then it relies on Identity Server for identity rather than build a complete identity provider server. There is great value Duende provides that would take a very long time to get correct.

This package contains a few extension methods and two endpoints. The first endpoint is an UDAP metadata endpoint, implementing Duende's IEndpointHandler interface allowing /.well-known/udap to render metadata. The only thing of interest in this endpoint is the registration_endpoint which points to the next endpoint, UdapDynamicClientRegistrationEndpoint. This code is a simple endpoint called as a delegate using the dotnet minimal api technique.

Program.cs could look like this.

TODO Work to do here to demonstrate how to use.

  • Update readme
  • Instructions on creating database. dotnet run /seed from Udap.Idp.Admin
  • Need to finish loading root CAs into database
  • Add and test other DBs like SQL, PostgreSql and CockroachDB. Maybe Windows Store? 😏

using Microsoft.AspNetCore.Mvc;
using Microsoft.EntityFrameworkCore;
using Serilog;
using Udap.Server;
using Udap.Server.Extensions;
using Udap.Server.Registration;

namespace Udap.Idp;

internal static class HostingExtensions
{
    public static WebApplication ConfigureServices(this WebApplicationBuilder builder)
    {
        if (! int.TryParse(Environment.GetEnvironmentVariable("ASPNETCORE_HTTPS_PORT"), out int sslPort))
        {
            sslPort = 5002;
        }

        var connectionString = builder.Configuration.GetConnectionString("DefaultConnection");

        // uncomment if you want to add a UI
        builder.Services.AddRazorPages();

        var migrationsAssembly = typeof(Program).Assembly.GetName().Name;
        builder.Services.AddIdentityServer(options =>
            {
                // https://docs.duendesoftware.com/identityserver/v6/fundamentals/resources/api_scopes#authorization-based-on-scopes
                options.EmitStaticAudienceClaim = true;
            })
            .AddConfigurationStore(options =>
            {
                options.ConfigureDbContext = b => b.UseSqlite(connectionString,
                    sql => sql.MigrationsAssembly(migrationsAssembly));
            })
            .AddOperationalStore(options =>
            {
                options.ConfigureDbContext = b => b.UseSqlite(connectionString,
                    sql => sql.MigrationsAssembly(migrationsAssembly));
            })
            .AddInMemoryIdentityResources(Config.IdentityResources)
            .AddInMemoryApiScopes(Config.ApiScopes)
            .AddInMemoryClients(Config.Clients)
            //TODO remove
            .AddTestUsers(TestUsers.Users)
            .AddUdapDiscovery()
            .AddUdapServerConfiguration()
            .AddUdapConfigurationStore(options =>
            {
                options.UdapDbContext = b => b.UseSqlite(connectionString,
                    sql => sql.MigrationsAssembly(typeof(UdapDiscoveryEndpoint).Assembly.FullName));
            });

        return builder.Build();
    }
    
    public static WebApplication ConfigurePipeline(this WebApplication app)
    { 
        app.UseSerilogRequestLogging();
    
        if (app.Environment.IsDevelopment())
        {
            app.UseDeveloperExceptionPage();
        }

        // uncomment if you want to add a UI
        app.UseStaticFiles();
        app.UseRouting();
            
        app.UseIdentityServer();

        app.MapPost("/connect/register",
        async (
            HttpContext httpContext,
            [FromServices] UdapDynamicClientRegistrationEndpoint endpoint,
            CancellationToken token) =>
        {
            await endpoint.Process(httpContext, token);
        })
        .AllowAnonymous()
        .Produces(StatusCodes.Status200OK)
        .Produces(StatusCodes.Status204NoContent)
        .Produces(StatusCodes.Status400BadRequest);

 

        // uncomment if you want to add a UI
        app.UseAuthorization();
        app.MapRazorPages().RequireAuthorization();

        return app;
    }
}


Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 is compatible.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Udap.Server:

Package Downloads
Udap.UI

Package is a part of the UDAP reference implementation for .NET.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.4.5 299 3/4/2025
0.4.4 168 1/15/2025
0.4.3 116 1/14/2025
0.4.2 115 1/14/2025
0.4.1 256 1/13/2025
0.4.0 146 12/14/2024
0.3.96 157 11/6/2024
0.3.95 116 11/2/2024
0.3.94 112 10/31/2024
0.3.93 272 10/13/2024
0.3.92 100 10/13/2024
0.3.91 100 10/10/2024
0.3.89 99 10/10/2024
0.3.87 102 10/5/2024
0.3.86 101 10/5/2024
0.3.85 94 10/4/2024
0.3.84 107 10/3/2024
0.3.83 102 10/3/2024
0.3.82 120 9/20/2024
0.3.81 112 9/19/2024
0.3.80 97 9/19/2024
0.3.79 102 9/19/2024
0.3.78 86 9/19/2024
0.3.77 100 9/17/2024
0.3.76 102 9/17/2024
0.3.75 106 9/12/2024
0.3.74 123 9/12/2024
0.3.73 112 9/10/2024
0.3.72 135 9/7/2024
0.3.71 132 9/5/2024
0.3.70 117 9/5/2024
0.3.69 135 9/5/2024
0.3.68 119 9/4/2024
0.3.67 108 9/4/2024
0.3.66 100 9/4/2024
0.3.65 103 9/4/2024
0.3.64 105 9/2/2024
0.3.63 114 8/31/2024
0.3.62 109 8/29/2024
0.3.61 117 8/28/2024
0.3.60 100 8/2/2024
0.3.59 99 8/1/2024
0.3.58 102 8/1/2024
0.3.57 135 7/19/2024
0.3.56 105 7/19/2024
0.3.54 108 7/18/2024
0.3.53 107 7/15/2024
0.3.52 95 7/15/2024
0.3.51 109 7/12/2024
0.3.50 117 7/1/2024
0.3.49 115 7/1/2024
0.3.48 150 5/22/2024
0.3.47 144 5/15/2024
0.3.46 116 5/14/2024
0.3.45 128 5/12/2024
0.3.44 124 5/12/2024
0.3.43 133 5/12/2024
0.3.42 112 5/12/2024
0.3.41 132 5/6/2024
0.3.40 149 5/4/2024
0.3.39 82 5/1/2024
0.3.38 121 4/30/2024
0.3.37 133 4/11/2024
0.3.36 127 4/10/2024
0.3.35 128 4/9/2024
0.3.34 127 4/8/2024
0.3.33 121 4/7/2024
0.3.32 143 4/5/2024
0.3.31 121 4/4/2024
0.3.30 133 4/4/2024
0.3.29 133 4/3/2024
0.3.28 103 4/3/2024
0.3.27 130 4/2/2024
0.3.26 107 4/2/2024
0.3.25 129 4/2/2024
0.3.24 137 3/24/2024
0.3.22 149 3/6/2024
0.3.21 137 3/6/2024
0.3.20 110 3/5/2024
0.3.19 137 3/2/2024
0.3.18 157 3/2/2024
0.3.13 132 3/1/2024
0.3.12 135 2/24/2024
0.3.10 125 2/14/2024
0.3.8 136 2/11/2024
0.3.7 135 2/11/2024
0.3.6 138 2/10/2024
0.3.5 136 2/10/2024
0.3.4 139 2/10/2024
0.3.2 123 2/10/2024
0.3.0 136 1/31/2024
0.2.21 256 10/24/2023
0.2.20 120 10/23/2023
0.2.19 130 10/20/2023
0.2.18 137 10/11/2023
0.2.17 140 10/5/2023
0.2.16 148 9/21/2023
0.2.15 147 9/21/2023
0.2.14 143 9/20/2023
0.2.13 141 9/20/2023
0.2.12 123 9/20/2023
0.2.11 137 9/19/2023
0.2.10 169 9/13/2023
0.2.9 234 8/26/2023
0.2.8 153 8/18/2023
0.2.7 157 8/15/2023
0.2.6 159 8/12/2023
0.2.5 176 8/11/2023
0.2.4 158 8/10/2023
0.2.3 168 8/2/2023
0.2.2 147 8/1/2023
0.2.1 164 7/25/2023
0.2.0 168 7/16/2023
0.1.24 159 5/26/2023
0.1.23 175 5/22/2023
0.1.22 154 5/22/2023
0.1.21 145 5/21/2023
0.1.20 160 5/20/2023
0.1.17 145 5/9/2023
0.1.16 139 5/6/2023
0.1.15 155 5/4/2023
0.1.14 155 5/2/2023
0.1.12 154 5/1/2023
0.1.11 173 4/29/2023
0.1.9 182 4/29/2023
0.1.8 166 4/29/2023
0.1.7 170 4/28/2023
0.1.6 159 4/27/2023
0.1.5 155 4/27/2023
0.1.4 164 4/25/2023
0.1.3 182 4/23/2023
0.1.2 185 4/22/2023
0.1.1 174 4/22/2023
0.0.4-preview040 135 4/21/2023
0.0.4-preview039 148 4/13/2023
0.0.4-preview038 146 4/11/2023
0.0.4-preview037 143 4/7/2023
0.0.4-preview036 130 3/31/2023
0.0.4-preview035 124 3/31/2023
0.0.4-preview034 134 3/31/2023
0.0.4-preview033 136 3/30/2023
0.0.4-preview032 151 3/19/2023
0.0.4-preview029 142 3/18/2023
0.0.4-preview028 124 3/15/2023
0.0.4-preview027 145 3/13/2023
0.0.4-preview026 109 3/12/2023
0.0.4-preview025 120 3/10/2023
0.0.4-preview024 151 3/9/2023
0.0.4-preview022 139 3/9/2023
0.0.4-preview021 147 3/7/2023
0.0.4-preview020 148 3/7/2023
0.0.4-preview019 139 3/4/2023
0.0.4-preview018 147 3/4/2023
0.0.4-preview017 140 3/4/2023
0.0.4-preview016 145 3/1/2023
0.0.4-preview015 140 2/28/2023
0.0.4-preview014 147 2/23/2023
0.0.4-preview013 153 2/23/2023
0.0.4-preview012 149 2/21/2023
0.0.4-preview011 149 2/20/2023
0.0.4-preview010 144 2/20/2023
0.0.4-preview009 148 2/19/2023
0.0.4-preview008 131 2/14/2023
0.0.4-preview007 146 2/10/2023
0.0.4-preview006 147 2/8/2023
0.0.4-preview005 150 2/8/2023
0.0.4-preview004 130 2/7/2023
0.0.4-preview003 135 2/7/2023
0.0.4-preview002 157 2/7/2023
0.0.4-preview001 150 2/3/2023
0.0.4-preview000 158 2/2/2023
0.0.3-preview032 147 2/1/2023
0.0.3-preview031 144 2/1/2023
0.0.3-preview030 169 1/30/2023
0.0.3-preview029 151 1/21/2023
0.0.3-preview028 149 1/19/2023
0.0.3-preview027 143 1/18/2023
0.0.3-preview026 152 1/16/2023
0.0.3-preview025 159 1/15/2023
0.0.3-preview024 160 1/15/2023
0.0.3-preview020 146 1/15/2023
0.0.3-preview019 159 1/11/2023
0.0.3-preview018 164 1/11/2023
0.0.3-preview017 153 1/7/2023
0.0.3-preview016 148 1/7/2023
0.0.3-preview015 151 1/6/2023
0.0.3-preview014 144 1/6/2023
0.0.3-preview013 160 1/6/2023
0.0.3-preview012 159 1/6/2023
0.0.3-preview011 138 1/6/2023
0.0.3-preview010 159 1/3/2023
0.0.3-preview009 154 1/3/2023
0.0.3-preview008 154 1/2/2023
0.0.3-preview007 153 1/2/2023
0.0.3-preview006 149 1/2/2023
0.0.3-preview005 150 1/2/2023
0.0.3-preview004 146 1/1/2023
0.0.3-preview003 152 12/31/2022
0.0.3-preview002 183 12/28/2022
0.0.3-preview001 198 12/21/2022
0.0.3-preview000 150 11/29/2022
0.0.2-preview003 116 11/4/2022
0.0.2-preview002 121 11/4/2022
0.0.2-preview000 144 11/4/2022
0.0.1-preview3373625764 177 11/1/2022
0.0.1-preview002 150 11/4/2022
0.0.1-preview001 142 11/4/2022