Przyjęta odpowiedź ( https://stackoverflow.com/a/41348219/4974715 ) nie jest realistycznie możliwa do utrzymania ani odpowiednia, ponieważ „CanReadResource” jest używany jako roszczenie (ale zasadniczo powinien być polityką w rzeczywistości, IMO). Podejście do odpowiedzi nie jest OK w sposobie, w jaki zostało użyte, ponieważ jeśli metoda działania wymaga wielu różnych konfiguracji oświadczeń, wówczas przy tej odpowiedzi musiałbyś wielokrotnie pisać coś takiego ...
[ClaimRequirement(MyClaimTypes.Permission, "CanReadResource")]
[ClaimRequirement(MyClaimTypes.AnotherPermision, "AnotherClaimVaue")]
//and etc. on a single action.
Wyobraź sobie, ile to zajmie kodowanie. Idealnie, „CanReadResource” ma być polityką, która korzysta z wielu oświadczeń w celu ustalenia, czy użytkownik może odczytać zasób.
To, co robię, to tworzę swoje zasady jako wyliczenie, a następnie przeglądam i konfiguruję wymagania w ten sposób ...
services.AddAuthorization(authorizationOptions =>
{
foreach (var policyString in Enum.GetNames(typeof(Enumerations.Security.Policy)))
{
authorizationOptions.AddPolicy(
policyString,
authorizationPolicyBuilder => authorizationPolicyBuilder.Requirements.Add(new DefaultAuthorizationRequirement((Enumerations.Security.Policy)Enum.Parse(typeof(Enumerations.Security.Policy), policyWrtString), DateTime.UtcNow)));
/* Note that thisn does not stop you from
configuring policies directly against a username, claims, roles, etc. You can do the usual.
*/
}
});
Klasa DefaultAuthorizationRequirement wygląda jak ...
public class DefaultAuthorizationRequirement : IAuthorizationRequirement
{
public Enumerations.Security.Policy Policy {get; set;} //This is a mere enumeration whose code is not shown.
public DateTime DateTimeOfSetup {get; set;} //Just in case you have to know when the app started up. And you may want to log out a user if their profile was modified after this date-time, etc.
}
public class DefaultAuthorizationHandler : AuthorizationHandler<DefaultAuthorizationRequirement>
{
private IAServiceToUse _aServiceToUse;
public DefaultAuthorizationHandler(
IAServiceToUse aServiceToUse
)
{
_aServiceToUse = aServiceToUse;
}
protected async override Task HandleRequirementAsync(AuthorizationHandlerContext context, DefaultAuthorizationRequirement requirement)
{
/*Here, you can quickly check a data source or Web API or etc.
to know the latest date-time of the user's profile modification...
*/
if (_aServiceToUse.GetDateTimeOfLatestUserProfileModication > requirement.DateTimeOfSetup)
{
context.Fail(); /*Because any modifications to user information,
e.g. if the user used another browser or if by Admin modification,
the claims of the user in this session cannot be guaranteed to be reliable.
*/
return;
}
bool shouldSucceed = false; //This should first be false, because context.Succeed(...) has to only be called if the requirement specifically succeeds.
bool shouldFail = false; /*This should first be false, because context.Fail()
doesn't have to be called if there's no security breach.
*/
// You can do anything.
await doAnythingAsync();
/*You can get the user's claims...
ALSO, note that if you have a way to priorly map users or users with certain claims
to particular policies, add those policies as claims of the user for the sake of ease.
BUT policies that require dynamic code (e.g. checking for age range) would have to be
coded in the switch-case below to determine stuff.
*/
var claims = context.User.Claims;
// You can, of course, get the policy that was hit...
var policy = requirement.Policy
//You can use a switch case to determine what policy to deal with here...
switch (policy)
{
case Enumerations.Security.Policy.CanReadResource:
/*Do stuff with the claims and change the
value of shouldSucceed and/or shouldFail.
*/
break;
case Enumerations.Security.Policy.AnotherPolicy:
/*Do stuff with the claims and change the
value of shouldSucceed and/or shouldFail.
*/
break;
// Other policies too.
default:
throw new NotImplementedException();
}
/* Note that the following conditions are
so because failure and success in a requirement handler
are not mutually exclusive. They demand certainty.
*/
if (shouldFail)
{
context.Fail(); /*Check the docs on this method to
see its implications.
*/
}
if (shouldSucceed)
{
context.Succeed(requirement);
}
}
}
Pamiętaj, że powyższy kod może również umożliwić wstępne mapowanie użytkownika na zasady w magazynie danych. Tak więc, podczas tworzenia oświadczeń dla użytkownika, zasadniczo pobierasz zasady, które zostały wcześniej zmapowane bezpośrednio do użytkownika bezpośrednio lub pośrednio (np. Ponieważ użytkownik ma określoną wartość oświadczenia i ta wartość oświadczenia została zidentyfikowana i odwzorowana na polisę, taką jak że zapewnia automatyczne mapowanie dla użytkowników, którzy również mają tę wartość oświadczenia), i zapisuje zasady jako oświadczenia, tak że w module obsługi autoryzacji możesz po prostu sprawdzić, czy oświadczenia użytkownika zawierają wymóg. Polityka jako wartość elementu oświadczenia w ich roszczenia. Dotyczy to statycznego sposobu spełnienia wymogu polityki, np. Wymóg „Imię” ma charakter dość statyczny. Więc,
[Authorize(Policy = nameof(Enumerations.Security.Policy.ViewRecord))]
Wymaganie dynamiczne może dotyczyć sprawdzania przedziału wiekowego itp., A zasad korzystających z takich wymagań nie można wstępnie mapować na użytkowników.
Przykład dynamicznego sprawdzania roszczeń dotyczących zasad (np. W celu sprawdzenia, czy użytkownik ma więcej niż 18 lat) znajduje się już w odpowiedzi udzielonej przez @blowdart ( https://stackoverflow.com/a/31465227/4974715 ).
PS: Napisałem to na telefonie. Ułaskaw wszelkie literówki i brak formatowania.