mirror of
https://github.com/hmaxnl/SharpRSS.git
synced 2025-01-18 12:54:20 +01:00
Preparing authentication state provider
This commit is contained in:
parent
69eeb5c44e
commit
e8572915de
32
SharpRSS.Blazor/Auth/SRSSAuthenticationStateProvider.cs
Normal file
32
SharpRSS.Blazor/Auth/SRSSAuthenticationStateProvider.cs
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
using DotBased.Logging;
|
||||||
|
using Microsoft.AspNetCore.Components.Authorization;
|
||||||
|
using SharpRSS.Business.Services;
|
||||||
|
using ILogger = DotBased.Logging.ILogger;
|
||||||
|
|
||||||
|
namespace SharpRSS.Blazor.Auth;
|
||||||
|
|
||||||
|
public class SRSSAuthenticationStateProvider : AuthenticationStateProvider
|
||||||
|
{
|
||||||
|
public SRSSAuthenticationStateProvider(IHttpContextAccessor contextAccessor, AuthService authService)
|
||||||
|
{
|
||||||
|
_logger = LogService.RegisterLogger(typeof(SRSSAuthenticationStateProvider));
|
||||||
|
if (contextAccessor.HttpContext != null)
|
||||||
|
_httpContext = contextAccessor.HttpContext;
|
||||||
|
else
|
||||||
|
{
|
||||||
|
var ex = new ApplicationException("HttpContext is null! Cannot setup authentication state provider!");
|
||||||
|
_logger.Fatal(ex, "Failed to initialize authentication state provider!");
|
||||||
|
throw ex;
|
||||||
|
}
|
||||||
|
_authService = authService;
|
||||||
|
}
|
||||||
|
|
||||||
|
private readonly ILogger _logger;
|
||||||
|
private readonly HttpContext _httpContext;
|
||||||
|
private readonly AuthService _authService;
|
||||||
|
|
||||||
|
public override Task<AuthenticationState> GetAuthenticationStateAsync()
|
||||||
|
{
|
||||||
|
throw new NotImplementedException();
|
||||||
|
}
|
||||||
|
}
|
9
SharpRSS.Blazor/Constants/Routes.cs
Normal file
9
SharpRSS.Blazor/Constants/Routes.cs
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
namespace SharpRSS.Blazor.Constants;
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The internal application routes
|
||||||
|
/// </summary>
|
||||||
|
public static class Routes
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
|
@ -12,6 +12,7 @@ builder.UseSRSS();
|
||||||
builder.Services.AddRazorComponents()
|
builder.Services.AddRazorComponents()
|
||||||
.AddInteractiveServerComponents();
|
.AddInteractiveServerComponents();
|
||||||
builder.Services.AddMudServices();
|
builder.Services.AddMudServices();
|
||||||
|
builder.Services.AddHttpContextAccessor(); // HttpContext accessor
|
||||||
|
|
||||||
var app = builder.Build();
|
var app = builder.Build();
|
||||||
|
|
||||||
|
|
48
SharpRSS.Blazor/Resources/App.Defaults.Designer.cs
generated
Normal file
48
SharpRSS.Blazor/Resources/App.Defaults.Designer.cs
generated
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace SharpRSS.Blazor.Resources {
|
||||||
|
using System;
|
||||||
|
|
||||||
|
|
||||||
|
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||||
|
[System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
internal class App_Defaults {
|
||||||
|
|
||||||
|
private static System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
|
private static System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
|
[System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
|
internal App_Defaults() {
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static System.Resources.ResourceManager ResourceManager {
|
||||||
|
get {
|
||||||
|
if (object.Equals(null, resourceMan)) {
|
||||||
|
System.Resources.ResourceManager temp = new System.Resources.ResourceManager("SharpRSS.Blazor.Resources.App_Defaults", typeof(App_Defaults).Assembly);
|
||||||
|
resourceMan = temp;
|
||||||
|
}
|
||||||
|
return resourceMan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
[System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static System.Globalization.CultureInfo Culture {
|
||||||
|
get {
|
||||||
|
return resourceCulture;
|
||||||
|
}
|
||||||
|
set {
|
||||||
|
resourceCulture = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
21
SharpRSS.Blazor/Resources/App.Defaults.resx
Normal file
21
SharpRSS.Blazor/Resources/App.Defaults.resx
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
|
||||||
|
<root>
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>1.3</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
|
@ -15,4 +15,19 @@
|
||||||
<PackageReference Include="MudBlazor" Version="6.20.0" />
|
<PackageReference Include="MudBlazor" Version="6.20.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Update="Resources\App.Defaults.resx">
|
||||||
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>App.Defaults.Designer.cs</LastGenOutput>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Update="Resources\App.Defaults.Designer.cs">
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>App.Defaults.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|
|
@ -7,6 +7,7 @@ using Microsoft.Extensions.DependencyInjection;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using Microsoft.EntityFrameworkCore.Diagnostics;
|
using Microsoft.EntityFrameworkCore.Diagnostics;
|
||||||
using Serilog;
|
using Serilog;
|
||||||
|
using SharpRSS.Business.Services;
|
||||||
using SharpRSS.Core.Configuration;
|
using SharpRSS.Core.Configuration;
|
||||||
using SharpRSS.Data;
|
using SharpRSS.Data;
|
||||||
|
|
||||||
|
@ -16,7 +17,9 @@ public static class DependencyInjection
|
||||||
{
|
{
|
||||||
public static WebApplicationBuilder UseSRSS(this WebApplicationBuilder builder)
|
public static WebApplicationBuilder UseSRSS(this WebApplicationBuilder builder)
|
||||||
{
|
{
|
||||||
// Logging (serilog)
|
/*
|
||||||
|
* Logging (serilog)
|
||||||
|
*/
|
||||||
var serilogConfig = new LoggerConfiguration().ReadFrom.Configuration(builder.Configuration).UseBasedExtension();
|
var serilogConfig = new LoggerConfiguration().ReadFrom.Configuration(builder.Configuration).UseBasedExtension();
|
||||||
Log.Logger = serilogConfig.CreateLogger();
|
Log.Logger = serilogConfig.CreateLogger();
|
||||||
|
|
||||||
|
@ -26,7 +29,9 @@ public static class DependencyInjection
|
||||||
builder.Logging.ClearProviders();
|
builder.Logging.ClearProviders();
|
||||||
builder.Logging.AddSerilog();
|
builder.Logging.AddSerilog();
|
||||||
|
|
||||||
// EF Core DbContextFactory
|
/*
|
||||||
|
* EF Core DbContextFactory
|
||||||
|
*/
|
||||||
builder.Services.AddDbContextFactory<SRSSContext>(options =>
|
builder.Services.AddDbContextFactory<SRSSContext>(options =>
|
||||||
{
|
{
|
||||||
var dbSettings = new DatabaseSettings();
|
var dbSettings = new DatabaseSettings();
|
||||||
|
@ -53,7 +58,12 @@ public static class DependencyInjection
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
//TODO: Services, Auth, Settings
|
/*
|
||||||
|
* Services
|
||||||
|
*/
|
||||||
|
builder.Services.AddScoped<AuthService>();
|
||||||
|
|
||||||
|
//TODO: Auth, Settings
|
||||||
return builder;
|
return builder;
|
||||||
}
|
}
|
||||||
}
|
}
|
25
SharpRSS.Business/Services/AuthService.cs
Normal file
25
SharpRSS.Business/Services/AuthService.cs
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
using DotBased;
|
||||||
|
using DotBased.Logging;
|
||||||
|
using SharpRSS.Data.Domains.Auth;
|
||||||
|
|
||||||
|
namespace SharpRSS.Business.Services;
|
||||||
|
|
||||||
|
public class AuthService
|
||||||
|
{
|
||||||
|
public AuthService()
|
||||||
|
{
|
||||||
|
_logger = LogService.RegisterLogger(typeof(AuthService));
|
||||||
|
}
|
||||||
|
|
||||||
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
|
public async Task<Result> LoginUserAsync(LoginModel loginModel)
|
||||||
|
{
|
||||||
|
return Result.Failed("NotImplemented");
|
||||||
|
}
|
||||||
|
|
||||||
|
public async Task<Result> LogoutUserAsync(string id)
|
||||||
|
{
|
||||||
|
return Result.Failed("NotImplemented");
|
||||||
|
}
|
||||||
|
}
|
7
SharpRSS.Data/Domains/Auth/LoginModel.cs
Normal file
7
SharpRSS.Data/Domains/Auth/LoginModel.cs
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
namespace SharpRSS.Data.Domains.Auth;
|
||||||
|
|
||||||
|
public class LoginModel
|
||||||
|
{
|
||||||
|
public string UserName { get; set; } = string.Empty;
|
||||||
|
public string Password { get; set; } = string.Empty;
|
||||||
|
}
|
|
@ -15,7 +15,6 @@
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="Domains\" />
|
|
||||||
<Folder Include="Repositories\" />
|
<Folder Include="Repositories\" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user