ConnorDKeehan.AuthService
8.2.2
dotnet add package ConnorDKeehan.AuthService --version 8.2.2
NuGet\Install-Package ConnorDKeehan.AuthService -Version 8.2.2
<PackageReference Include="ConnorDKeehan.AuthService" Version="8.2.2" />
<PackageVersion Include="ConnorDKeehan.AuthService" Version="8.2.2" />
<PackageReference Include="ConnorDKeehan.AuthService" />
paket add ConnorDKeehan.AuthService --version 8.2.2
#r "nuget: ConnorDKeehan.AuthService, 8.2.2"
#:package ConnorDKeehan.AuthService@8.2.2
#addin nuget:?package=ConnorDKeehan.AuthService&version=8.2.2
#tool nuget:?package=ConnorDKeehan.AuthService&version=8.2.2
Currently this package requires a few things:
Create the necessary tables in the database you plan to use. This script is in the SqlScripts folder of the Nuget package and also below:
CREATE TABLE Logins (
Id INT PRIMARY KEY IDENTITY(1,1) NOT NULL,
Username NVARCHAR(100) NOT NULL,
Email NVARCHAR(100) NULL,
EmailVerified BIT NOT NULL,
Password NVARCHAR(200) NOT NULL,
AccessTokenVersion INT NOT NULL,
Deleted BIT NOT NULL,
PushNotificationToken NVARCHAR(200) NULL,
SocialLoginIdentifier NVARCHAR(100) NULL,
DateCreatedUtc DATETIME2,
Metadata NVARCHAR(MAX) NULL
)
CREATE TABLE RefreshTokens (
Id INT PRIMARY KEY IDENTITY(1,1) NOT NULL,
LoginId INT NOT NULL REFERENCES Logins(Id),
Token NVARCHAR(200) NOT NULL UNIQUE,
DeviceId UNIQUEIDENTIFIER NOT NULL,
DateCreatedUtc DATETIME2 NOT NULL,
DateExpiryUtc DATETIME2 NOT NULL,
Revoked BIT NOT NULL
)
CREATE TABLE TwoFactorAuthCodes (
Id INT PRIMARY KEY IDENTITY(1,1) NOT NULL,
LoginId INT NOT NULL REFERENCES Logins(Id),
Code NVARCHAR(50) NOT NULL,
Purpose NVARCHAR(50) NOT NULL,
DateCreatedUtc DATETIME2 NOT NULL,
DateExpiryUtc DATETIME2 NOT NULL,
DateUsedUtc DATETIME2 NULL,
Revoked BIT NOT NULL
)
You will also need to add the DI to your startup:
builder.Services.AddAuthService(builder.Configuration);
Some appsettings to be set, particularly:
- "Auth:Jwt:Issuer"
- "Auth:Jwt:Key"
- "Auth:Jwt:Audience"
- "Auth:ExpiryTimeMinutes"
- "Auth:ConnectionString" //For most people this will be the same as their default connection string, just duplicate it to there in that case.
- "Auth:RefreshTokenHmacKey"
- "Auth:RefreshTokenExpiryTimeDays"
And if you'd like to allow login with google account:
- "Auth:GoogleClientId"
- "Auth:GoogleClientSecret"
Similarly for Apple login you will need:
- "Auth:AppleClientId"
If you wish to use the default EmailService in the package you will need to include the below:
- "Auth:EnableDefaultEmailService": true
- "Auth:Smtp:Host"
- "Auth:Smtp:Port"
- "Auth:Smtp:Username"
- "Auth:Smtp:Password"
- "Auth:Smtp:From"
- "Auth:Smtp:EnableSsl"
If you don't choose to use the default email service you will need to register your own if you want to use the 2FA features:
builder.Services.AddScoped<IEmailService,MyCustomEmailService>();
And it must implement:
Task SendAsync(string to, string subject, string body);
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. 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. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
-
net8.0
- BCrypt.Net-Next (>= 4.0.3)
- Google.Apis.Auth (>= 1.69.0)
- Microsoft.AspNetCore.Authentication.JwtBearer (>= 8.0.14)
- Microsoft.EntityFrameworkCore (>= 9.0.3)
- Microsoft.EntityFrameworkCore.SqlServer (>= 9.0.3)
- Swashbuckle.AspNetCore (>= 6.4.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.