Global data processing
You can use the global data processing framework to process all data that is sent to the database. You can use it to define data processors, which are then used to track or modify the database entities upon their creation or modification.
The following sample creates simple text sanitizer that removes obscene words from a news content:
- Create a new type that inherits
ProcessorBaseand implementIDataProcessor,using the following code sample:C#using System; using System.Collections.Specialized; using System.ComponentModel; using Telerik.Sitefinity.Data.DataProcessing.Processors; using Telerik.Sitefinity.News.Model; using Telerik.Sitefinity.Processors; namespace WebApp { public class ObsceneWordsSanitizerProcessor : ProcessorBase, IDataProcessor { public virtual void Process(ref object value) { if (value != null && value is string) { value = ((string)value).Replace("obscene_word", "CENSORED"); } } public virtual bool ShouldProcess(PropertyDescriptor prop, Type type) { if (type == typeof(NewsItem) && prop.Name == "Content") { return true; } return false; } protected override void Initialize(NameValueCollection config) { } } } - In Sitefinity CMS backend, navigate to Administration» Settings» Advanced.
- In the left pane, expand Data» Data Processors and click Create new.
- In the Typefield enter the FullClrName of the processor implementation.
In this example, enterWebApp.ObsceneWordsSanitizerProcessor - Save your changes.
RESULT: All the obscene words that you have defined in the processor will be censored. You can also implement more complex logic. Have in mind that this would slow down your save operation for the relevant content item.
Want to learn more?
Enhance your Sitefinity skills by enrolling in free training sessions. Become Sitefinity certified through Progress Education Community to strengthen your professional credentials.
Get started with Integration Hub | Sitefinity Cloud
This free lesson teaches administrators, marketers, and other business professionals how to use Sitefinity Integration Hub to create automated workflows between Sitefinity and other business systems.
Web Security for Sitefinity Administrators
This free lesson teaches administrators the basics about protecting your Sitefinity instance and your sites from external threats. Configure HTTPS, SSL, allow lists for trusted sites, and cookie security, among others.
Foundations of Sitefinity ASP.NET Core Development
The free on-demand video course teaches developers how to use Sitefinity ASP.NET Core and take advantage of its decoupled architecture and modern development model.