গৃহীত উত্তর ( https://stackoverflow.com/a/41348219/4974715 ) বাস্তবসম্মতভাবে রক্ষণাবেক্ষণযোগ্য বা উপযুক্ত নয় কারণ "CanReadResource" দাবী হিসাবে ব্যবহৃত হচ্ছে (তবে মূলত বাস্তবে নীতি হওয়া উচিত, আইএমও)। উত্তরের ব্যবহারটি যেভাবে ব্যবহৃত হয়েছিল ঠিক তেমন নয়, কারণ যদি কোনও ক্রিয়া পদ্ধতিতে বিভিন্ন দাবি দাবি করা হয়, তবে সেই উত্তর দিয়ে আপনাকে বারবার এমন কিছু লিখতে হবে ...
[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.
*/
}
});
ডিফল্ট অনুমোদনের প্রয়োজনীয়তা বর্গটি দেখে মনে হচ্ছে ...
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);
}
}
}
নোট করুন যে উপরের কোডটি আপনার ডেটা স্টোরের কোনও নীতিতে কোনও ব্যবহারকারীর প্রাক-ম্যাপিং সক্ষম করতে পারে। সুতরাং, ব্যবহারকারীর জন্য দাবি রচনা করার সময় আপনি মূলত নীতিগুলি প্রত্যক্ষ করেন যা ব্যবহারকারীর কাছে প্রত্যক্ষ বা অপ্রত্যক্ষভাবে প্রাক ম্যাপ করা হয়েছিল (উদাহরণস্বরূপ যে ব্যবহারকারীর একটি নির্দিষ্ট দাবি মান রয়েছে এবং সেই দাবির মানটি চিহ্নিত করা হয়েছিল এবং কোনও নীতিমালাতে ম্যাপ করা হয়েছিল, যেমন যে এটির সেই দাবির মূল্য রয়েছে এমন ব্যবহারকারীদের জন্য স্বয়ংক্রিয় ম্যাপিং সরবরাহ করে) এবং নীতিগুলি দাবি হিসাবে তালিকাভুক্ত করে, যেমন অনুমোদনের হাতলকারীর মধ্যে, আপনি কেবল ব্যবহারকারীদের দাবির মধ্যে প্রয়োজনীয়তা রয়েছে কিনা তা খতিয়ে দেখতে পারেন their দাবির কোনও আইটেমের মূল্য হিসাবে নীতি দাবি। এটি কোনও পলিসি প্রয়োজনীয়তা সন্তুষ্ট করার স্থিতিশীল উপায়ের জন্য, যেমন "প্রথম নাম" প্রয়োজনীয়তা প্রকৃতির বেশ স্থিতিশীল। সুতরাং,
[Authorize(Policy = nameof(Enumerations.Security.Policy.ViewRecord))]
একটি গতিশীল প্রয়োজনীয়তা বয়সসীমা ইত্যাদি যাচাই করা সম্পর্কে হতে পারে এবং যে নীতিগুলি এই জাতীয় প্রয়োজনীয়তা ব্যবহার করে তা ব্যবহারকারীদের কাছে প্রি ম্যাপ করা যায় না।
গতিশীল নীতি দাবী পরীক্ষার উদাহরণ (যেমন কোনও ব্যবহারকারী 18 বছরের বেশি বয়সী কিনা তা যাচাই করা) ইতিমধ্যে @ ব্লোয়ার্ডের দেওয়া উত্তরটিতে রয়েছে ( https://stackoverflow.com/a/31465227/4974715 ) এর ।
PS: আমি আমার ফোনে এটি টাইপ করেছি। কোনও টাইপস এবং বিন্যাসের অভাবকে ক্ষমা করুন।