8#if NETSTANDARD2_0 || NET5_0_OR_GREATER || NETCOREAPP3_1
13using Microsoft.AspNetCore.Mvc.ViewFeatures;
21 public static class HtmlExtensions
31 public static HtmlString InformationFor<T>(
32 this IHtmlHelper<T> htmlHelper,
33 System.Linq.Expressions.Expression<Func<T, object>> expression)
35 var result =
string.Empty;
36 var model = htmlHelper.ViewData.Model;
37 System.Reflection.PropertyInfo reflectedPropertyInfo =
Csla.
Reflection.
Reflect<T>.GetProperty(expression);
38 var propertyName = reflectedPropertyInfo.Name;
40 result = bb.BrokenRulesCollection.ToString(
",", Rules.RuleSeverity.Information, propertyName);
41 return new HtmlString(result);
52 public static HtmlString WarningFor<T>(
53 this IHtmlHelper<T> htmlHelper,
54 System.Linq.Expressions.Expression<Func<T, object>> expression)
56 var result =
string.Empty;
57 var model = htmlHelper.ViewData.Model;
58 System.Reflection.PropertyInfo reflectedPropertyInfo =
Csla.
Reflection.
Reflect<T>.GetProperty(expression);
59 var propertyName = reflectedPropertyInfo.Name;
61 result = bb.BrokenRulesCollection.ToString(
",", Rules.RuleSeverity.Warning, propertyName);
62 return new HtmlString(result);
73 public static HtmlString ErrorFor<T>(
74 this IHtmlHelper<T> htmlHelper,
75 System.Linq.Expressions.Expression<Func<T, object>> expression)
77 var result =
string.Empty;
78 var model = htmlHelper.ViewData.Model;
79 System.Reflection.PropertyInfo reflectedPropertyInfo =
Csla.
Reflection.
Reflect<T>.GetProperty(expression);
80 var propertyName = reflectedPropertyInfo.Name;
82 result = bb.BrokenRulesCollection.ToString(
",", Rules.RuleSeverity.Error, propertyName);
83 return new HtmlString(result);
86 private static ApplicationContext GetApplication(IHtmlHelper htmlHelper)
88 return (ApplicationContext)htmlHelper.ViewContext.HttpContext.Items[
"Csla.ApplicationContext"];
100 public static HtmlString HasPermission(
101 this IHtmlHelper htmlHelper,
107 var applicationContext = GetApplication(htmlHelper);
123 public static HtmlString HasPermission(
124 this IHtmlHelper htmlHelper,
130 var applicationContext = GetApplication(htmlHelper);
134 return new HtmlString(denied);
146 public static HtmlString HasPermission(
147 this IHtmlHelper htmlHelper,
153 var applicationContext = GetApplication(htmlHelper);
155 return new HtmlString(granted);
157 return new HtmlString(denied);
170 public static HtmlString HasPermission(
171 this IHtmlHelper htmlHelper,
180 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
181 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
182 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
198 public static HtmlString HasPermission(
199 this IHtmlHelper htmlHelper,
208 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
209 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
210 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
213 return new HtmlString(denied);
226 public static HtmlString HasPermission(
227 this IHtmlHelper htmlHelper,
235 if (instance ==
null)
return new HtmlString(denied);
237 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
238 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
239 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
240 return new HtmlString(granted);
242 return new HtmlString(denied);
253 public static HtmlString HasPermission(
254 this IHtmlHelper htmlHelper,
257 Func<IHtmlHelper, HtmlString> grantedAction)
259 var applicationContext = GetApplication(htmlHelper);
261 return grantedAction.Invoke(htmlHelper);
263 return HtmlString.Empty;
276 public static HtmlString HasPermission(
277 this IHtmlHelper htmlHelper,
281 Func<IHtmlHelper, HtmlString> grantedAction,
282 Func<IHtmlHelper, HtmlString> denieddAction)
286 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
287 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
288 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
289 return grantedAction.Invoke(htmlHelper);
291 return denieddAction.Invoke(htmlHelper);
297using System.Collections.Generic;
301using System.Web.Mvc.Html;
302using System.Web.Routing;
309 public static class HtmlExtensions
311 private static ApplicationContext GetApplication(HtmlHelper htmlHelper)
313 return (ApplicationContext)htmlHelper.ViewContext.HttpContext.Items[
"Csla.ApplicationContext"];
325 public static MvcHtmlString HasPermission(
326 this HtmlHelper htmlHelper,
329 MvcHtmlString granted,
330 MvcHtmlString denied)
332 var applicationContext = GetApplication(htmlHelper);
348 public static MvcHtmlString HasPermission(
349 this HtmlHelper htmlHelper,
352 MvcHtmlString granted,
355 var applicationContext = GetApplication(htmlHelper);
359 return MvcHtmlString.Create(denied);
371 public static MvcHtmlString HasPermission(
372 this HtmlHelper htmlHelper,
378 var applicationContext = GetApplication(htmlHelper);
380 return MvcHtmlString.Create(granted);
382 return MvcHtmlString.Create(denied);
395 public static MvcHtmlString HasPermission(
396 this HtmlHelper htmlHelper,
400 MvcHtmlString granted,
401 MvcHtmlString denied)
404 if (instance ==
null)
return denied;
406 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
407 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
408 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
424 public static MvcHtmlString HasPermission(
425 this HtmlHelper htmlHelper,
429 MvcHtmlString granted,
433 if (instance ==
null)
return MvcHtmlString.Create(denied);
435 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
436 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
437 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
440 return MvcHtmlString.Create(denied);
453 public static MvcHtmlString HasPermission(
454 this HtmlHelper htmlHelper,
462 if (instance ==
null)
return MvcHtmlString.Create(denied);
464 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
465 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
466 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
467 return MvcHtmlString.Create(granted);
469 return MvcHtmlString.Create(denied);
480 public static MvcHtmlString HasPermission(
481 this HtmlHelper htmlHelper,
484 Func<HtmlHelper, MvcHtmlString> grantedAction)
486 var applicationContext = GetApplication(htmlHelper);
488 return grantedAction.Invoke(htmlHelper);
490 return MvcHtmlString.Empty;
503 public static MvcHtmlString HasPermission(
504 this HtmlHelper htmlHelper,
508 Func<HtmlHelper, MvcHtmlString> grantedAction,
509 Func<HtmlHelper, MvcHtmlString> denieddAction)
512 if (instance ==
null)
return denieddAction.Invoke(htmlHelper);
514 if ((action == Rules.AuthorizationActions.ReadProperty && instance.CanReadProperty(member.Name)) ||
515 (action == Rules.AuthorizationActions.WriteProperty && instance.CanWriteProperty(member.Name)) ||
516 (action == Rules.AuthorizationActions.ExecuteMethod && instance.CanExecuteMethod(member.Name)))
517 return grantedAction.Invoke(htmlHelper);
519 return denieddAction.Invoke(htmlHelper);
This is the non-generic base class from which most business objects will be derived.
Tracks the business rules for a business object.
static bool HasPermission(ApplicationContext applicationContext, AuthorizationActions action, Type objectType)
Checks per-type authorization rules.
Maintains metadata about a method or property.
Defines the authorization interface through which an object can indicate which properties the current...