com.adobe.acs.commons.rewriter.impl.ContentVariableTransformer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of acs-aem-commons-bundle Show documentation
Show all versions of acs-aem-commons-bundle Show documentation
Main ACS AEM Commons OSGi Bundle. Includes commons utilities.
/*
* ACS AEM Commons
*
* Copyright (C) 2013 - 2023 Adobe
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.adobe.acs.commons.rewriter.impl;
import com.adobe.acs.commons.ccvar.PropertyAggregatorService;
import com.adobe.acs.commons.ccvar.PropertyConfigService;
import com.adobe.acs.commons.ccvar.util.ContentVariableReplacementUtil;
import com.adobe.acs.commons.rewriter.ContentHandlerBasedTransformer;
import org.apache.commons.lang3.StringUtils;
import org.apache.sling.api.SlingHttpServletRequest;
import org.apache.sling.rewriter.ProcessingComponentConfiguration;
import org.apache.sling.rewriter.ProcessingContext;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.AttributesImpl;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* {@link org.apache.sling.rewriter.Transformer} used to process HTML requests and replace content tokens found in the
* rendered HTML.
*/
public class ContentVariableTransformer extends ContentHandlerBasedTransformer {
private Map contentVariableReplacements;
private PropertyAggregatorService aggregatorService;
private PropertyConfigService propertyConfigService;
public ContentVariableTransformer() {
}
public ContentVariableTransformer(PropertyAggregatorService propertyAggregatorService,
PropertyConfigService propertyConfigService) {
this.aggregatorService = propertyAggregatorService;
this.propertyConfigService = propertyConfigService;
}
@Override
public void init(ProcessingContext processingContext, ProcessingComponentConfiguration processingComponentConfiguration) throws IOException {
SlingHttpServletRequest request = processingContext.getRequest();
contentVariableReplacements = aggregatorService.getProperties(request);
}
public void startElement(String uri, String localName, String quaName, Attributes atts) throws SAXException {
if (shouldRun()) {
AttributesImpl newAttrs = new AttributesImpl(atts);
for (int i = 0; i < newAttrs.getLength(); i++) {
String currentAttribute = newAttrs.getValue(i);
if (StringUtils.isBlank(currentAttribute)) {
continue;
}
final List keys = ContentVariableReplacementUtil.getKeys(currentAttribute);
for (String key : keys) {
// If the placeholder key is in the map then replace it
if (ContentVariableReplacementUtil.hasKey(contentVariableReplacements, key)) {
String replaceValue =
(String) ContentVariableReplacementUtil.getValue(contentVariableReplacements, key);
String newAttrValue = ContentVariableReplacementUtil.doReplacement(currentAttribute, key,
replaceValue, propertyConfigService.getAction(key));
newAttrs.setValue(i, newAttrValue);
}
}
}
getContentHandler().startElement(uri, localName, quaName, newAttrs);
} else {
getContentHandler().startElement(uri, localName, quaName, atts);
}
}
public void characters(char[] ch, int start, int length) throws SAXException {
String currentString = new String(ch, start, length);
if (shouldRun()) {
// Get the current placeholders in the string
final List keys = ContentVariableReplacementUtil.getKeys(currentString);
for (String key : keys) {
// If the placeholder key is in the map then replace it
if (ContentVariableReplacementUtil.hasKey(contentVariableReplacements, key)) {
final String placeholderReplacement =
String.valueOf(ContentVariableReplacementUtil.getValue(contentVariableReplacements, key));
currentString = ContentVariableReplacementUtil.doReplacement(currentString, key,
placeholderReplacement, propertyConfigService.getAction(key));
}
}
}
getContentHandler().characters(currentString.toCharArray(), 0, currentString.length());
}
private boolean shouldRun() {
return aggregatorService != null && contentVariableReplacements != null && contentVariableReplacements.size() > 0;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy