Backend.API is an ASP.NET Core Web API project built using .NET 8. It provides a powerful authentication and authorization system using a customized ASP.NET Core Identity, role-based and policy-based authorization, JWT token generation (both access-token and refresh-token), and support for LDAP (Active Directory) authentication. The project utilizes Entity Framework Core in a Code-First approach to handle database entities.
- Customized ASP.NET Core Identity for authentication.
- Refresh token generation for extended user sessions.
- Role-based and policy-based authorization for controlling access to API endpoints.
- LDAP (Active Directory) feature for authentication using Windows passwords.
- Swagger integration for easy testing of Web API.
- Entity Framework Core for handling database entities and migrations.
- Configuration settings for various features (LDAP, JWT, ConnectionStrings) in
appsettings.development.json
.
-
Ensure you have installed the latest .NET 8 SDK release.
-
Clone the repository and navigate to the project root.
-
Configure the launch URLs of both projects in the
launchSettings.json
files located in the "Properties" directories of the projects. -
Modify the
appsettings.development.json
file in theBackend.API
project to configure the following settings:LdapSetting:Enable
: Set totrue
to enable Active Directory (LDAP) authentication, orfalse
to use Identity User password during registration.LdapSetting:LdapAdminUser
: Set the admin user of LDAP.LdapSetting:LdapAdminPassword
: Set the admin password of LDAP.LdapSetting:LdapPath
: Set the LDAP host.LdapSetting:LdapDomain
: Set the LDAP domain.ConnectionStrings:IdentityDB
: Set the SQL Server Connection string for the database.JWTSettings:Issuer
: Set the issuer of JWT tokens.JWTSettings:Secret
: Set the Secret Key for generating JWT tokens.JWTSettings:JWTExpirationTime
: Set the expiration time (in minutes) of the Access Token.JWTSettings:RefreshExpirationTime
: Set the expiration time (in minutes) of the Refresh Token.
-
Execute the migration.sql script to generate the Users database and initialize data. Additionally, you can generate scripts from migration files using the
dotnet ef
command. -
Start both projects simultaneously. You can use the multiple startup projects feature of Visual Studio 2022.
-
Use the provided credentials to log in to the Frontend.Blazor login page:
- For "admin" role: Use email
[email protected]
with the passwordMil@d1234
. - For "user" role: Use email
[email protected]
with the passwordMil@d1234
.
- For "admin" role: Use email
Frontend.Blazor is a .NET 8 Blazor Server project that serves as the front-end for the application. It utilizes JWT tokens for authentication and authorization, obtaining a Refresh-Token automatically from the Backend.API if the Access-Token expires.
- Authentication and authorization using JWT tokens (Access-Token and Refresh-Token).
- Usage of
Authorize
attributes on pages and menus to check roles or policies for the current user. - A login page that requests Access-Token and Refresh-Token from Backend.API.
- Usage of Typed HttpClient to send requests to the Backend.API.
- Configuration settings for JWT in
appsettings.development.json
andappsettings.json
.
-
Ensure you have installed the latest .NET 8 SDK release.
-
Clone the repository and navigate to the project root.
-
Modify the
appsettings.development.json
andappsettings.json
files in theFrontend.Blazor
project to configure the following settings:JWTSettings:ValidIssuer
: Set the valid issuer of JWT tokens to validate tokens.JWTSettings:Secret
: Set the Secret Key for generating JWT tokens.Urls:BackendAPI
: Set the URL of the Backend.API.
-
Start both projects simultaneously. You can use the multiple startup projects feature of Visual Studio 2022.
-
The Frontend.Blazor login page will handle the authentication process. Users can log in with the provided credentials for the "admin" or "user" roles.
Contributions to this project are welcome! If you find any issues, have suggestions, or want to add new features, feel free to submit a pull request or open an issue on GitHub.
This project is licensed under the MIT License.
Happy coding!