Unlock the Power of Direct PDF Editing with WebViewer 10.7

Redacting Sensitive Information Using JavaScript

By Josh Gozner | 2023 Jun 22

Sanity Image
Read time

4 min

Step into the captivating realm of PDF redaction! If you have concerns about protecting sensitive information in your documents or need to comply with privacy regulations, redaction is an indispensable requirement.

In this blog, we will delve into the robust Apryse WebViewer SDK, specifically emphasizing its redaction tool using JavaScript without the need for server connections or any external dependencies. Additionally, we'll provide guidance on crafting a custom regex search pattern for redaction and shed light on the powerful advantages that redaction brings. So, let's plunge right in!

Blog image

Working in Angular? Check out our other redaction guide here.

What are the Advantages of Redaction?

Copied to clipboard

At its core, redaction involves obscuring or removing sensitive information from PDF documents or other media. This process is essential for several reasons:

Protection of Sensitive Information: In the modern era of technology, companies deal with a considerable volume of confidential data daily, such as employee records, customer details, financial information, and intellectual property. Redaction empowers organizations to safeguard this data, guaranteeing that only authorized individuals can access it. This not only upholds privacy but also enables secure sharing and distribution of documents.

Regulatory Compliance: Industries like healthcare, finance, and law operate under strict regulations that demand the protection of specific data. For instance, in the US, HIPAA mandates safeguarding patient health information, while the GDPR in the EU governs the use of personal data. By implementing redaction, your business ensures compliance with these regulations, effectively avoiding substantial fines and penalties.

Mitigating the Impact of Data Breaches: In the unfortunate event of a data breach, having sensitive data already redacted can minimize potential damage. If all sensitive details have been thoroughly redacted, the exposed data will be useless to malicious entities.

Building Customer Trust: Customers are increasingly concerned about their data privacy. Businesses that utilize redaction to protect their clients' information send a strong message about their commitment to privacy. This, in turn, strengthens trust and enhances the relationship with customers.

Given the escalating concerns surrounding data privacy and increasingly stricter global regulations, redaction emerges as a vital and irreplaceable instrument in document management workflows.

Using WebViewer's Redaction Tool

Copied to clipboard

The WebViewer SDK, built on WebAssembly/Asm.js technology, is a ported version of the Apryse PDF SDK. It brings nearly all the capabilities of the original SDK, including document redaction, to web applications. Users can securely access and redact documents without needing server connections or external dependencies, ensuring that data remains solely on the client side. This level of security is critical when handling sensitive or confidential information.

The redaction tool in WebViewer is a powerful feature that effectively protects sensitive information in your documents. Here's how to use it.

1. Set up WebViewer: Follow our guide for a quick setup process.

2. Open the Document: Once your document is loaded in WebViewer, navigate to the section that contains the information you want to redact.

3. Select the Redaction Tool: On the toolbar, choose the Redaction tool to activate the redaction mode.

4. Redact: Click and drag to create a redaction rectangle over the text or image you wish to redact. Once you release the mouse, the redaction annotation will be added.

5. Apply Redactions: After placing all the redactions, permanently apply them by selecting "Redact All" from the options menu. This ensures that the redacted content cannot be recovered.

While the built-in redaction tool covers basic redaction workflows, you can extend its functionality to support more complex scenarios. Let's create a custom regex search pattern and integrate it into the default UI of WebViewer.

Adding a Custom Search Pattern

Copied to clipboard

Utilizing the powerful client-side redaction functionality provided by WebViewer, developers can streamline the entire redaction process with remarkable efficiency. In the present case, we will automate the redaction of Canadian Passport numbers using the regex pattern \b[\w]{2}[\d]{6}\b. To implement this, simply register the search pattern using the following code.

<script> 
   WebViewer(...) 
      .then((instance) => {  
        instance.UI.addRedactionSearchPattern(   
          {   
            label: 'Canadian Passport Numbers',   
            type: 'passport',   
            icon: '<svg fill="#000000" height="15px" width="15px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 430 430" xml:space="preserve"><g id="SVGRepo_bgCarrier" stroke-width="0"></g><g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"></g><g id="SVGRepo_iconCarrier"> <g> <g> <g> <polygon points="281,0 126.263,60 281,60 "></polygon> <path d="M85,76v354h260V76H85z M310.5,152c0,4.418-3.582,8-8,8h-71c-4.418,0-8-3.582-8-8c0-4.418,3.582-8,8-8h71 C306.918,144,310.5,147.582,310.5,152z M260.151,281H223v-82.495C242.647,205.947,258.321,240.126,260.151,281z M153.5,113h123 c4.418,0,8,3.582,8,8c0,4.418-3.582,8-8,8h-123c-4.419,0-8-3.582-8-8C145.5,116.582,149.081,113,153.5,113z M115.319,297h38.509 c1.536,38.644,14.136,71.068,32.413,87.796C147.483,373.178,118.618,338.693,115.319,297z M115.318,281 c1.949-24.628,12.813-46.743,29.382-63.111c11.47-11.35,25.678-19.932,41.542-24.687c-18.278,16.728-30.878,49.152-32.415,87.798 H115.318z M207,379.495c-19.647-7.442-35.32-41.621-37.151-82.495H207V379.495z M207,281h-37.151 c1.831-40.874,17.504-75.053,37.151-82.495V281z M199.5,160h-72c-4.419,0-8-3.582-8-8c0-4.418,3.581-8,8-8h72 c4.418,0,8,3.582,8,8C207.5,156.418,203.918,160,199.5,160z M223,379.495V297h37.152 C258.321,337.874,242.647,372.053,223,379.495z M243.76,384.796c18.277-16.728,30.877-49.152,32.413-87.796h38.508 C311.382,338.693,282.517,373.178,243.76,384.796z M276.173,281c-1.536-38.646-14.137-71.07-32.415-87.798 c15.864,4.755,30.072,13.337,41.542,24.687c16.569,16.368,27.433,38.484,29.382,63.111H276.173z"></path> </g> </g> </g> </g></svg>',   
            regex: /\b[\w]{2}[\d]{6}\b/   
          });   
      	})  
</script> 

Once implemented, the new search pattern will be available in the redaction dropdown list, greatly simplifying the redaction process for your users.

Blog image

Pre-Searching Text for Redaction Using JavaScript

Copied to clipboard

Performing preliminary text searches for redaction can save time and ensure that no vital information is overlooked during the process. In this scenario, you will utilize the 'documentLoaded' event and import the provided code. This script will identify all occurrences of "PDF" within your document and apply a redaction annotation to each instance.

<script> 
      WebViewer(.., document.getElementById('viewer')) 
      .then(instance => { 
        const { documentViewer, annotationManager } = instance.Core; 
        documentViewer.addEventListener("documentLoaded", () => {  
          const searchText = 'PDF';  
          const searchMode =   Search.Mode.HIGHLIGHT;  
          const searchOptions = {  
            fullSearch: true,  
            onResult: async (result) => {  
              if (result.resultCode === Search.ResultCode.FOUND) {  
                const annotation = new Annotations.RedactionAnnotation({  
                  Quads: [result.quads[0].getPoints()],  
                  PageNumber: result.page_num,  
                });  
                annotationManager.addAnnotation(annotation);  
                annotationManager.redrawAnnotation(annotation);  
              }  
            },  
          };  
          documentViewer.textSearchInit(searchText, searchMode, searchOptions);  
        });  
      }); 
   </script> 
Blog image

Demo and Documentation

You can experience redaction firsthand in the Apryse WebViewer with our interactive demo. Additionally, our comprehensive documentation provides easy-to-follow instructions to get started. If you encounter any issues, feel free to reach out to us on Discord for assistance. Plus, be sure to explore even more Apryse SDK functionality.

Sanity Image

Josh Gozner

Solutions Engineer

LinkedIn link

Share this post

email
linkedIn
twitter