CSLA.NET 6.0.0
CSLA .NET is a software development framework that helps you build a reusable, maintainable object-oriented business layer for your app.
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Events Macros Pages
HtmlExtensions.cs
Go to the documentation of this file.
1//-----------------------------------------------------------------------
2// <copyright file="HtmlExtensions.cs" company="Marimer LLC">
3// Copyright (c) Marimer LLC. All rights reserved.
4// Website: https://cslanet.com
5// </copyright>
6// <summary>Html extension methods providing support for HTML rendering based on security permissions in an application.</summary>
7//-----------------------------------------------------------------------
8#if NETSTANDARD2_0 || NET5_0_OR_GREATER || NETCOREAPP3_1
9using System;
10using System.Linq;
11using Microsoft.AspNetCore.Html;
12using Microsoft.AspNetCore.Mvc.Rendering;
13using Microsoft.AspNetCore.Mvc.ViewFeatures;
14using Csla.AspNetCore;
15
16namespace Csla.Web.Mvc
17{
21 public static class HtmlExtensions
22 {
31 public static HtmlString InformationFor<T>(
32 this IHtmlHelper<T> htmlHelper,
33 System.Linq.Expressions.Expression<Func<T, object>> expression)
34 {
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;
39 if (model is Csla.Core.BusinessBase bb)
40 result = bb.BrokenRulesCollection.ToString(",", Rules.RuleSeverity.Information, propertyName);
41 return new HtmlString(result);
42 }
43
52 public static HtmlString WarningFor<T>(
53 this IHtmlHelper<T> htmlHelper,
54 System.Linq.Expressions.Expression<Func<T, object>> expression)
55 {
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;
60 if (model is Csla.Core.BusinessBase bb)
61 result = bb.BrokenRulesCollection.ToString(",", Rules.RuleSeverity.Warning, propertyName);
62 return new HtmlString(result);
63 }
64
73 public static HtmlString ErrorFor<T>(
74 this IHtmlHelper<T> htmlHelper,
75 System.Linq.Expressions.Expression<Func<T, object>> expression)
76 {
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;
81 if (model is Csla.Core.BusinessBase bb)
82 result = bb.BrokenRulesCollection.ToString(",", Rules.RuleSeverity.Error, propertyName);
83 return new HtmlString(result);
84 }
85
86 private static ApplicationContext GetApplication(IHtmlHelper htmlHelper)
87 {
88 return (ApplicationContext)htmlHelper.ViewContext.HttpContext.Items["Csla.ApplicationContext"];
89 }
90
100 public static HtmlString HasPermission(
101 this IHtmlHelper htmlHelper,
102 Csla.Rules.AuthorizationActions action,
103 Type objectType,
104 HtmlString granted,
105 HtmlString denied)
106 {
107 var applicationContext = GetApplication(htmlHelper);
108 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
109 return granted;
110 else
111 return denied;
112 }
113
123 public static HtmlString HasPermission(
124 this IHtmlHelper htmlHelper,
125 Csla.Rules.AuthorizationActions action,
126 Type objectType,
127 HtmlString granted,
128 string denied)
129 {
130 var applicationContext = GetApplication(htmlHelper);
131 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
132 return granted;
133 else
134 return new HtmlString(denied);
135 }
136
146 public static HtmlString HasPermission(
147 this IHtmlHelper htmlHelper,
148 Csla.Rules.AuthorizationActions action,
149 Type objectType,
150 string granted,
151 string denied)
152 {
153 var applicationContext = GetApplication(htmlHelper);
154 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
155 return new HtmlString(granted);
156 else
157 return new HtmlString(denied);
158 }
159
170 public static HtmlString HasPermission(
171 this IHtmlHelper htmlHelper,
172 Csla.Rules.AuthorizationActions action,
173 object target,
174 Csla.Core.IMemberInfo member,
175 HtmlString granted,
176 HtmlString denied)
177 {
178 if (target is not Csla.Security.IAuthorizeReadWrite instance) return denied;
179
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)))
183 return granted;
184 else
185 return denied;
186 }
187
198 public static HtmlString HasPermission(
199 this IHtmlHelper htmlHelper,
200 Csla.Rules.AuthorizationActions action,
201 object target,
202 Csla.Core.IMemberInfo member,
203 HtmlString granted,
204 string denied)
205 {
206 if (target is not Csla.Security.IAuthorizeReadWrite instance) return new HtmlString(denied);
207
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)))
211 return granted;
212 else
213 return new HtmlString(denied);
214 }
215
226 public static HtmlString HasPermission(
227 this IHtmlHelper htmlHelper,
228 Csla.Rules.AuthorizationActions action,
229 object target,
230 Csla.Core.IMemberInfo member,
231 string granted,
232 string denied)
233 {
234 var instance = target as Csla.Security.IAuthorizeReadWrite;
235 if (instance == null) return new HtmlString(denied);
236
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);
241 else
242 return new HtmlString(denied);
243 }
244
253 public static HtmlString HasPermission(
254 this IHtmlHelper htmlHelper,
255 Csla.Rules.AuthorizationActions action,
256 Type objectType,
257 Func<IHtmlHelper, HtmlString> grantedAction)
258 {
259 var applicationContext = GetApplication(htmlHelper);
260 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
261 return grantedAction.Invoke(htmlHelper);
262 else
263 return HtmlString.Empty;
264 }
265
276 public static HtmlString HasPermission(
277 this IHtmlHelper htmlHelper,
278 Csla.Rules.AuthorizationActions action,
279 object target,
280 Csla.Core.IMemberInfo member,
281 Func<IHtmlHelper, HtmlString> grantedAction,
282 Func<IHtmlHelper, HtmlString> denieddAction)
283 {
284 if (target is not Csla.Security.IAuthorizeReadWrite instance) return denieddAction.Invoke(htmlHelper);
285
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);
290 else
291 return denieddAction.Invoke(htmlHelper);
292 }
293 }
294}
295#else
296using System;
297using System.Collections.Generic;
298using System.Linq;
299using System.Text;
300using System.Web.Mvc;
301using System.Web.Mvc.Html;
302using System.Web.Routing;
303
304namespace Csla.Web.Mvc
305{
309 public static class HtmlExtensions
310 {
311 private static ApplicationContext GetApplication(HtmlHelper htmlHelper)
312 {
313 return (ApplicationContext)htmlHelper.ViewContext.HttpContext.Items["Csla.ApplicationContext"];
314 }
315
325 public static MvcHtmlString HasPermission(
326 this HtmlHelper htmlHelper,
327 Csla.Rules.AuthorizationActions action,
328 Type objectType,
329 MvcHtmlString granted,
330 MvcHtmlString denied)
331 {
332 var applicationContext = GetApplication(htmlHelper);
333 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
334 return granted;
335 else
336 return denied;
337 }
338
348 public static MvcHtmlString HasPermission(
349 this HtmlHelper htmlHelper,
350 Csla.Rules.AuthorizationActions action,
351 Type objectType,
352 MvcHtmlString granted,
353 string denied)
354 {
355 var applicationContext = GetApplication(htmlHelper);
356 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
357 return granted;
358 else
359 return MvcHtmlString.Create(denied);
360 }
361
371 public static MvcHtmlString HasPermission(
372 this HtmlHelper htmlHelper,
373 Csla.Rules.AuthorizationActions action,
374 Type objectType,
375 string granted,
376 string denied)
377 {
378 var applicationContext = GetApplication(htmlHelper);
379 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
380 return MvcHtmlString.Create(granted);
381 else
382 return MvcHtmlString.Create(denied);
383 }
384
395 public static MvcHtmlString HasPermission(
396 this HtmlHelper htmlHelper,
397 Csla.Rules.AuthorizationActions action,
398 object target,
399 Csla.Core.IMemberInfo member,
400 MvcHtmlString granted,
401 MvcHtmlString denied)
402 {
403 var instance = target as Csla.Security.IAuthorizeReadWrite;
404 if (instance == null) return denied;
405
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)))
409 return granted;
410 else
411 return denied;
412 }
413
424 public static MvcHtmlString HasPermission(
425 this HtmlHelper htmlHelper,
426 Csla.Rules.AuthorizationActions action,
427 object target,
428 Csla.Core.IMemberInfo member,
429 MvcHtmlString granted,
430 string denied)
431 {
432 var instance = target as Csla.Security.IAuthorizeReadWrite;
433 if (instance == null) return MvcHtmlString.Create(denied);
434
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)))
438 return granted;
439 else
440 return MvcHtmlString.Create(denied);
441 }
442
453 public static MvcHtmlString HasPermission(
454 this HtmlHelper htmlHelper,
455 Csla.Rules.AuthorizationActions action,
456 object target,
457 Csla.Core.IMemberInfo member,
458 string granted,
459 string denied)
460 {
461 var instance = target as Csla.Security.IAuthorizeReadWrite;
462 if (instance == null) return MvcHtmlString.Create(denied);
463
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);
468 else
469 return MvcHtmlString.Create(denied);
470 }
471
480 public static MvcHtmlString HasPermission(
481 this HtmlHelper htmlHelper,
482 Csla.Rules.AuthorizationActions action,
483 Type objectType,
484 Func<HtmlHelper, MvcHtmlString> grantedAction)
485 {
486 var applicationContext = GetApplication(htmlHelper);
487 if (Csla.Rules.BusinessRules.HasPermission(applicationContext, action, objectType))
488 return grantedAction.Invoke(htmlHelper);
489 else
490 return MvcHtmlString.Empty;
491 }
492
503 public static MvcHtmlString HasPermission(
504 this HtmlHelper htmlHelper,
505 Csla.Rules.AuthorizationActions action,
506 object target,
507 Csla.Core.IMemberInfo member,
508 Func<HtmlHelper, MvcHtmlString> grantedAction,
509 Func<HtmlHelper, MvcHtmlString> denieddAction)
510 {
511 var instance = target as Csla.Security.IAuthorizeReadWrite;
512 if (instance == null) return denieddAction.Invoke(htmlHelper);
513
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);
518 else
519 return denieddAction.Invoke(htmlHelper);
520 }
521 }
522}
523#endif
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.
Definition: IMemberInfo.cs:19
Defines the authorization interface through which an object can indicate which properties the current...