
com.liferay.dynamic.data.mapping.template.BaseDDMTemplateHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.liferay.dynamic.data.mapping.service Show documentation
Show all versions of com.liferay.dynamic.data.mapping.service Show documentation
Liferay Dynamic Data Mapping Service
/**
* Copyright (c) 2000-present Liferay, Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or modify it under
* the terms of the GNU Lesser General Public License as published by the Free
* Software Foundation; either version 2.1 of the License, or (at your option)
* any later version.
*
* This library is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
* details.
*/
package com.liferay.dynamic.data.mapping.template;
import com.liferay.dynamic.data.mapping.model.DDMStructure;
import com.liferay.dynamic.data.mapping.service.DDMStructureLocalServiceUtil;
import com.liferay.portal.kernel.exception.PortalException;
import com.liferay.portal.kernel.mobile.device.Device;
import com.liferay.portal.kernel.model.Company;
import com.liferay.portal.kernel.security.permission.PermissionChecker;
import com.liferay.portal.kernel.template.BaseTemplateHandler;
import com.liferay.portal.kernel.template.TemplateVariableCodeHandler;
import com.liferay.portal.kernel.template.TemplateVariableGroup;
import com.liferay.portal.kernel.templateparser.TemplateNode;
import com.liferay.portal.kernel.util.Validator;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Locale;
import java.util.Map;
/**
* @author Jorge Ferrer
* @author Marcellus Tavares
*/
public abstract class BaseDDMTemplateHandler extends BaseTemplateHandler {
@Override
public Map getTemplateVariableGroups(
long classPK, String language, Locale locale)
throws Exception {
Map templateVariableGroups =
new LinkedHashMap<>();
addTemplateVariableGroup(
templateVariableGroups, getGeneralVariablesTemplateVariableGroup());
addTemplateVariableGroup(
templateVariableGroups,
getStructureFieldsTemplateVariableGroup(classPK, locale));
addTemplateVariableGroup(
templateVariableGroups, getUtilTemplateVariableGroup());
return templateVariableGroups;
}
@Override
public boolean isDisplayTemplateHandler() {
return false;
}
protected void addTemplateVariableGroup(
Map templateVariableGroups,
TemplateVariableGroup templateVariableGroup) {
if (templateVariableGroup == null) {
return;
}
templateVariableGroups.put(
templateVariableGroup.getLabel(), templateVariableGroup);
}
protected Class> getFieldVariableClass() {
return TemplateNode.class;
}
protected TemplateVariableGroup getGeneralVariablesTemplateVariableGroup() {
TemplateVariableGroup templateVariableGroup = new TemplateVariableGroup(
"general-variables");
templateVariableGroup.addVariable("device", Device.class, "device");
templateVariableGroup.addVariable(
"portal-instance", Company.class, "company");
templateVariableGroup.addVariable(
"portal-instance-id", null, "companyId");
templateVariableGroup.addVariable("site-id", null, "groupId");
templateVariableGroup.addVariable(
"view-mode", String.class, "viewMode");
return templateVariableGroup;
}
protected TemplateVariableGroup getStructureFieldsTemplateVariableGroup(
long ddmStructureId, Locale locale)
throws PortalException {
if (ddmStructureId <= 0) {
return null;
}
TemplateVariableGroup templateVariableGroup = new TemplateVariableGroup(
"fields");
DDMStructure ddmStructure = DDMStructureLocalServiceUtil.getStructure(
ddmStructureId);
List fieldNames = ddmStructure.getRootFieldNames();
for (String fieldName : fieldNames) {
String label = ddmStructure.getFieldLabel(fieldName, locale);
String tip = ddmStructure.getFieldTip(fieldName, locale);
String dataType = ddmStructure.getFieldDataType(fieldName);
boolean repeatable = ddmStructure.getFieldRepeatable(fieldName);
if (Validator.isNull(dataType)) {
continue;
}
templateVariableGroup.addFieldVariable(
label, getFieldVariableClass(), fieldName, tip, dataType,
repeatable, getTemplateVariableCodeHandler());
}
return templateVariableGroup;
}
protected abstract TemplateVariableCodeHandler
getTemplateVariableCodeHandler();
protected TemplateVariableGroup getUtilTemplateVariableGroup() {
TemplateVariableGroup templateVariableGroup = new TemplateVariableGroup(
"util");
templateVariableGroup.addVariable(
"permission-checker", PermissionChecker.class, "permissionChecker");
templateVariableGroup.addVariable(
"random-namespace", String.class, "randomNamespace");
templateVariableGroup.addVariable(
"templates-path", String.class, "templatesPath");
return templateVariableGroup;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy