-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
62acb4e
commit b92f319
Showing
2 changed files
with
36 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
using Microsoft.AspNetCore.Authentication; | ||
using System.Threading.Tasks; | ||
|
||
namespace Omnikeeper.Service | ||
{ | ||
public class DynamicAuthSchemeService | ||
{ | ||
private readonly IAuthenticationSchemeProvider schemeProvider; | ||
//private readonly IOptionsMonitorCache<O> optionsCache; | ||
|
||
public DynamicAuthSchemeService(IAuthenticationSchemeProvider schemeProvider)//, IOptionsMonitorCache<SimpleOptions> optionsCache) | ||
{ | ||
this.schemeProvider = schemeProvider; | ||
//this.optionsCache = optionsCache; | ||
} | ||
|
||
public async Task<bool> TryAdd(string scheme, System.Type handlerType) | ||
{ | ||
if (await schemeProvider.GetSchemeAsync(scheme) == null) | ||
{ | ||
schemeProvider.AddScheme(new AuthenticationScheme(scheme, scheme, handlerType)); | ||
return true; | ||
} | ||
else | ||
{ | ||
return false; | ||
} | ||
//else | ||
//{ | ||
// _optionsCache.TryRemove(scheme); | ||
//} | ||
//_optionsCache.TryAdd(scheme, new SimpleOptions { DisplayMessage = optionsMessage }); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters