Прийнята відповідь ( https://stackoverflow.com/a/41348219/4974715 ) не є реально можливою або підходящою, оскільки "CanReadResource" використовується як претензія (але по суті повинна бути політикою в реальності, IMO). Підхід у відповіді не в порядку в тому, як він використовувався, тому що якщо метод дії вимагає безлічі різних налаштувань претензій, то з цією відповіддю вам доведеться повторно написати щось на кшталт ...
[ClaimRequirement(MyClaimTypes.Permission, "CanReadResource")]
[ClaimRequirement(MyClaimTypes.AnotherPermision, "AnotherClaimVaue")]
//and etc. on a single action.
Отже, уявіть, скільки кодування знадобиться. В ідеалі "CanReadResource" повинен бути політикою, яка використовує багато претензій, щоб визначити, чи може користувач читати ресурс.
Що я роблю, це я створювати свою політику як перерахування, а потім перебирати та встановлювати такі вимоги, як, таким чином ...
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.
*/
}
});
Клас DefaultAuthorizationRequirement виглядає як ...
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);
}
}
}
Зауважте, що наведений вище код також може включати попереднє відображення користувача до політики у вашому сховищі даних. Таким чином, складаючи претензії для користувача, ви в основному отримуєте політику, попередньо відображену на карті безпосередньо користувачеві (наприклад, тому, що користувач має певне значення претензії, і це значення претензії було визначено та відображено до політики, наприклад, що воно забезпечує автоматичне відображення для користувачів, які мають і це значення претензії), і зараховує політику як претензії, так що в обробнику авторизації ви можете просто перевірити, чи містяться вимоги користувача. претензії. Це стосується статичного способу задоволення вимог політики, наприклад, вимога "Ім'я" має досить статичний характер. Тому,
[Authorize(Policy = nameof(Enumerations.Security.Policy.ViewRecord))]
Динамічна вимога може стосуватися перевірки вікового діапазону тощо. Політики, які використовують такі вимоги, не можуть бути попередньо відображені для користувачів.
Приклад динамічної перевірки претензій на політику (наприклад, щоб перевірити, чи користувачеві старше 18 років), вже є відповідь, надана @blowdart ( https://stackoverflow.com/a/31465227/4974715 ).
PS: Я набрав це на своєму телефоні. Пробачте про помилки друку і відсутність форматування.