HexaEightMiddleware 1.6.8
.NET 5.0
This package targets .NET 5.0. The package is compatible with this framework or higher.
.NET Core 3.0
This package targets .NET Core 3.0. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package HexaEightMiddleware --version 1.6.8
NuGet\Install-Package HexaEightMiddleware -Version 1.6.8
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="HexaEightMiddleware" Version="1.6.8" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HexaEightMiddleware --version 1.6.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: HexaEightMiddleware, 1.6.8"
#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 HexaEightMiddleware as a Cake Addin #addin nuget:?package=HexaEightMiddleware&version=1.6.8 // Install HexaEightMiddleware as a Cake Tool #tool nuget:?package=HexaEightMiddleware&version=1.6.8
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
HexaEight Middleware
How To Use This Library
Sample Middleware Code (Startup and Configuration Section)
public void ConfigureServices(IServiceCollection services)
{
services.Add(new ServiceDescriptor(typeof(HexaEightResource), new HexaEightResource("<client id>", "<token server url>")));
services.AddSingleton<IAuthenticationService, AuthenticationMiddleware>();
services.AddAuthentication();
services.AddAuthorization();
services.AddControllers();
}
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
if (env.IsDevelopment())
{
app.UseDeveloperExceptionPage();
}
app.UseMiddleware<HexaEightEngine.Middleware>();
app.UseRouting();
app.Use(async (context, next) =>
{
await next();
if (context.Response.StatusCode == (int)HttpStatusCode.Unauthorized)
{
context.Response.StatusCode = (int)HttpStatusCode.OK;
await context.Response.Body.WriteAsync(Encoding.UTF8.GetBytes("UnAuthorized - Access Denied"));
}
});
app.UseAuthentication();
app.UseAuthorization();
app.UseEndpoints(endpoints =>
{
endpoints.MapControllers();
});
}
Sample Weather Controller Code with Authorization for Get and Post
[HttpGet("{resource}")]
[Authorize(AuthenticationSchemes = "Bearer")]
public IEnumerable<WeatherForecast> Get(string resource)
{
var rng = new Random();
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateTime.Now.AddDays(index),
TemperatureC = rng.Next(-20, 55),
Summary = resource + " " + HttpContext.User.Identity.Name.ToString() + " : " + Summaries[rng.Next(Summaries.Length)]
})
.ToArray();
}
[HttpPost("{resource}")]
[Authorize(AuthenticationSchemes = "Bearer")]
public async Task<IEnumerable<WeatherForecast>> Post(string resource)
{
string body = "";
using (StreamReader stream = new StreamReader(HttpContext.Request.Body))
{
body = await stream.ReadToEndAsync();
}
Console.WriteLine(body);
var rng = new Random();
return Enumerable.Range(1, 5).Select(index => new WeatherForecast
{
Date = DateTime.Now.AddDays(index),
TemperatureC = rng.Next(-20, 55),
Summary = resource + " :: " + HttpContext.User.Identity.Name.ToString() + " : " + Summaries[rng.Next(Summaries.Length)]
})
.ToArray();
}
}
Sample Authentication Middleware Code For Additional Authorization
public class AuthenticationMiddleware : IAuthenticationService
{
// context.user.Identity contains all information about the authenticated user
// Resource Servers can perform additional authorization at this layer for advanced authorization scenarios
public Task<AuthenticateResult> AuthenticateAsync(HttpContext context, string scheme)
{
try
{
if (context.User.Identity.IsAuthenticated && context.User.Identity.AuthenticationType == "HexaEight Identity")
{
Console.WriteLine(context.User.Claims.FirstOrDefault(c => c.Type == "Sender").Value);
AuthenticationTicket at = new AuthenticationTicket(context.User, "HexaEight");
return Task.FromResult(AuthenticateResult.Success(at));
}
return Task.FromResult(AuthenticateResult.Fail("UnAuthorized"));
}
catch
{
return Task.FromResult(AuthenticateResult.Fail("UnAuthorized"));
}
}
public Task ChallengeAsync(HttpContext context, string scheme, AuthenticationProperties properties)
{
context.Response.StatusCode = (int)HttpStatusCode.Unauthorized;
return Task.CompletedTask;
}
public Task ForbidAsync(HttpContext context, string scheme, AuthenticationProperties properties)
{
throw new NotImplementedException();
}
public Task SignInAsync(HttpContext context, string scheme, ClaimsPrincipal principal, AuthenticationProperties properties)
{
Console.WriteLine(context.User.Identity.Name);
Console.WriteLine(principal.Identity.Name);
return Task.CompletedTask;
}
public Task SignOutAsync(HttpContext context, string scheme, AuthenticationProperties properties)
{
throw new NotImplementedException();
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 is compatible. net5.0-windows was computed. net6.0 was computed. 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 was computed. 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. |
.NET Core | netcoreapp3.0 is compatible. netcoreapp3.1 is compatible. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETCoreApp 3.0
- hexaeightjwtlibrary (>= 1.9.184)
- newtonsoft.json (>= 13.0.1)
-
.NETCoreApp 3.1
- hexaeightjwtlibrary (>= 1.9.184)
- newtonsoft.json (>= 13.0.1)
-
net5.0
- hexaeightjwtlibrary (>= 1.9.184)
- newtonsoft.json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.6.58 | 105 | 6/29/2024 |
1.6.57 | 107 | 6/29/2024 |
1.6.56 | 108 | 6/23/2024 |
1.6.55 | 117 | 5/4/2024 |
1.6.54 | 126 | 5/4/2024 |
1.6.53 | 108 | 4/18/2024 |
1.6.52 | 88 | 4/18/2024 |
1.6.51 | 98 | 4/17/2024 |
1.6.50 | 113 | 4/16/2024 |
1.6.49 | 246 | 3/1/2024 |
1.6.48 | 520 | 11/2/2023 |
1.6.47 | 413 | 11/2/2023 |
1.6.46 | 461 | 11/1/2023 |
1.6.45 | 451 | 10/29/2023 |
1.6.44 | 422 | 10/28/2023 |
1.6.43 | 477 | 10/15/2023 |
1.6.42 | 523 | 9/27/2023 |
1.6.41 | 526 | 9/18/2023 |
1.6.40 | 545 | 9/13/2023 |
1.6.39 | 578 | 8/21/2023 |
1.6.38 | 560 | 8/20/2023 |
1.6.37 | 594 | 6/12/2023 |
1.6.35 | 544 | 5/14/2023 |
1.6.34 | 666 | 5/14/2023 |
1.6.33 | 625 | 5/14/2023 |
1.6.32 | 656 | 3/29/2023 |
1.6.31 | 667 | 3/29/2023 |
1.6.30 | 696 | 3/28/2023 |
1.6.29 | 688 | 3/28/2023 |
1.6.28 | 699 | 2/18/2023 |
1.6.27 | 707 | 2/14/2023 |
1.6.26 | 749 | 2/12/2023 |
1.6.25 | 767 | 2/5/2023 |
1.6.24 | 760 | 2/3/2023 |
1.6.23 | 734 | 2/2/2023 |
1.6.22 | 743 | 2/2/2023 |
1.6.21 | 715 | 1/31/2023 |
1.6.20 | 756 | 1/29/2023 |
1.6.19 | 754 | 1/29/2023 |
1.6.18 | 735 | 1/29/2023 |
1.6.17 | 727 | 1/29/2023 |
1.6.16 | 775 | 1/26/2023 |
1.6.15 | 754 | 1/22/2023 |
1.6.14 | 691 | 1/21/2023 |
1.6.13 | 726 | 1/21/2023 |
1.6.12 | 793 | 1/21/2023 |
1.6.11 | 765 | 1/18/2023 |
1.6.10 | 794 | 1/15/2023 |
1.6.9 | 719 | 1/15/2023 |
1.6.8 | 779 | 1/15/2023 |