- Notifications
You must be signed in to change notification settings - Fork50
.NET DevPack Identity is a set of common implementations to help you implementing Identity, Jwt, claims validation and another facilities
License
NetDevPack/Security.Identity
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
.NET DevPack Identity is a set of common implementations to help you implementing ASP.NET Identity, JWT, claims validation and another facilities
If you liked the project or if NetDevPack helped you, please give a star ;)
| Package | Version | Popularity |
|---|---|---|
NetDevPack.Identity |
.NET DevPack.Identity can be installed in your ASP.NET Core application using the Nuget package manager or thedotnet CLI.
dotnet add package NetDevPack.IdentityIf you want to use our IdentityDbContext (ASP.NET Identity standard) you will need to create the Identity tables. Set your connection string in theappsettings.json and follow the next steps:
Add the IdentityDbContext configuration in yourstartup.cs:
services.AddIdentityEntityFrameworkContextConfiguration(options=>options.UseSqlServer(configuration.GetConnectionString("DefaultConnection"), b=>b.MigrationsAssembly("AspNetCore.Jwt.Sample")));
Note: You must inform the namespace to avoid migration errors
Note: You must install the
Microsoft.EntityFrameworkCore.SqlServeror another provider likeNpgsql.EntityFrameworkCore.PostgreSQLpackage to have support from your database. Find the package for your databasehere
Add the Identity configuration inConfigureServices method of yourstartup.cs:
services.AddIdentityConfiguration();
Note: This extension returns an IdentityBuilder to allow you extending the configuration
Add the Identity configuration inConfigure method of yourstartup.cs:
app.UseAuthConfiguration();
Note: This method need to be set between
app.UseRouting()andapp.UseEndpoints()
Run the command to generate the migration files:
dotnet ef migrations add Initial --context NetDevPackAppDbContext --project <Your patch>/<Your Project>.csprojRun the command to generate the database:
dotnet ef database update --context NetDevPackAppDbContext --project <Your patch>/<Your Project>.csprojNote: If are you using your own
IdentityDbContextyou must change theNetDevPackAppDbContextvalue to your context class name in the commands above.
After execute this steps you will be all set to use the Identity in your Application.
If you want to generate JSON Web Tokens in your application you need to add the JWT configuration inConfigureServices method of yourstartup.cs
services.AddJwtConfiguration(Configuration).AddNetDevPackIdentity<IdentityUser>();
Set yourappsettings.json file with this values:
"AppJwtSettings": {"Audience":"MyApplication.Name"}
It's possible to configure some aspects of token
| Key | Meaning | Default |
|---|---|---|
| Expiration | Expiration time (in hours) | 1 |
| Issuer | The party that "created" the token and signed it with its private key. Usually the application Url | Get current root Url fromHttpContext |
| Audience | API's that should accept the token. E.g your application Main name. | NetDevPack |
| RefreshTokenExpiration | Refresh token expiration (In Days) | 30 |
| RefreshTokenType | OneTime orReUse | 30 |
SecretKeyDeprecated | Is your key to build JWT.Read notes | Do not use it |
Note: Now we are usingNetDevPack.Security.Jwt to generate and Store your keys. It generate a RSA 2048 by default. You can check the project for more info.
You will need to set a single dependency in your Authentication Controller:
publicAuthController(IJwtBuilder jwtBuilder){_jwtBuilder=jwtBuilder;}
After user register or login process you can generate a JWT to respond the request. Use our implementation, you just need inform the user email and the dependencies injected in your controller:
return_jwtBuilder.WithEmail(email).WithRefreshToken().BuildToken();
Note: This builder can return a single string with JWT or a complex object
UserResponseif you want return more data than a single JWT string.
You can call more methods inJwtBuilder to provide more information about the user:
return_jwtBuilder.WithEmail(email).WithJwtClaims().WithUserClaims().WithUserRoles().WithRefreshToken().BuildToken();
| Method | Meaning |
|---|---|
| WithJwtClaims() | Claims of JWT likesub,jti,nbf and others |
| WithUserClaims() | The user claims registered inAspNetUserClaims table |
| WithUserRoles() | The user roles (as claims) registered inAspNetUserRoles table |
| BuildToken() | Build and return the JWT as single string |
If you want return your complex objectUserResponse you need to change the last method to:
return_jwtBuilder.WithEmail(email).WithJwtClaims().WithUserClaims().WithUserRoles().WithRefreshToken().BuildUserResponse();
Use thesample application to understand how NetDevPack.Identity can be implemented and help you to decrease the complexity of your application and development time.
TheNetDevPack.Identity was developed to be implemented inASP.NET Core. It support all .NET versions since 3.1.
.NET DevPack.Identity was developed byEduardo Pires under theMIT license.
About
.NET DevPack Identity is a set of common implementations to help you implementing Identity, Jwt, claims validation and another facilities
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.
Contributors5
Uh oh!
There was an error while loading.Please reload this page.