Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.liferay.journal.web.internal.display.context.JournalEditDDMTemplateDisplayContext Maven / Gradle / Ivy
/**
* 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.journal.web.internal.display.context;
import com.liferay.dynamic.data.mapping.model.DDMStructure;
import com.liferay.dynamic.data.mapping.model.DDMTemplate;
import com.liferay.dynamic.data.mapping.service.DDMStructureLocalServiceUtil;
import com.liferay.dynamic.data.mapping.service.DDMTemplateLocalServiceUtil;
import com.liferay.dynamic.data.mapping.util.DDMTemplateHelper;
import com.liferay.journal.configuration.JournalFileUploadsConfiguration;
import com.liferay.journal.model.JournalArticle;
import com.liferay.journal.web.internal.configuration.JournalWebConfiguration;
import com.liferay.journal.web.internal.helper.JournalDDMTemplateHelper;
import com.liferay.petra.string.StringBundler;
import com.liferay.petra.string.StringPool;
import com.liferay.portal.kernel.bean.BeanParamUtil;
import com.liferay.portal.kernel.json.JSONArray;
import com.liferay.portal.kernel.json.JSONFactoryUtil;
import com.liferay.portal.kernel.json.JSONObject;
import com.liferay.portal.kernel.json.JSONUtil;
import com.liferay.portal.kernel.language.LanguageUtil;
import com.liferay.portal.kernel.portlet.LiferayWindowState;
import com.liferay.portal.kernel.portlet.url.builder.PortletURLBuilder;
import com.liferay.portal.kernel.template.TemplateConstants;
import com.liferay.portal.kernel.template.TemplateHandler;
import com.liferay.portal.kernel.template.TemplateHandlerRegistryUtil;
import com.liferay.portal.kernel.template.TemplateVariableDefinition;
import com.liferay.portal.kernel.template.TemplateVariableGroup;
import com.liferay.portal.kernel.theme.ThemeDisplay;
import com.liferay.portal.kernel.util.HashMapBuilder;
import com.liferay.portal.kernel.util.ParamUtil;
import com.liferay.portal.kernel.util.PortalUtil;
import com.liferay.portal.kernel.util.ResourceBundleUtil;
import com.liferay.portal.kernel.util.StringUtil;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.kernel.util.WebKeys;
import com.liferay.portal.template.TemplateContextHelper;
import java.util.Collection;
import java.util.HashMap;
import java.util.Map;
import java.util.ResourceBundle;
import javax.portlet.RenderResponse;
import javax.servlet.http.HttpServletRequest;
/**
* @author Eudaldo Alonso
*/
public class JournalEditDDMTemplateDisplayContext {
public JournalEditDDMTemplateDisplayContext(
HttpServletRequest httpServletRequest, RenderResponse renderResponse) {
_httpServletRequest = httpServletRequest;
_renderResponse = renderResponse;
_ddmTemplateHelper =
(DDMTemplateHelper)_httpServletRequest.getAttribute(
DDMTemplateHelper.class.getName());
_journalFileUploadsConfiguration =
(JournalFileUploadsConfiguration)_httpServletRequest.getAttribute(
JournalFileUploadsConfiguration.class.getName());
_journalWebConfiguration =
(JournalWebConfiguration)_httpServletRequest.getAttribute(
JournalWebConfiguration.class.getName());
}
public boolean autogenerateDDMTemplateKey() {
return _journalWebConfiguration.autogenerateDDMTemplateKey();
}
public JSONObject getAutocompleteJSONObject() throws Exception {
return JSONFactoryUtil.createJSONObject(
_ddmTemplateHelper.getAutocompleteJSON(
_httpServletRequest, TemplateConstants.LANG_TYPE_FTL));
}
public long getClassPK() {
if (_classPK != null) {
return _classPK;
}
_classPK = BeanParamUtil.getLong(
getDDMTemplate(), _httpServletRequest, "classPK");
return _classPK;
}
public DDMStructure getDDMStructure() {
if (_ddmStructure != null) {
return _ddmStructure;
}
_ddmStructure = DDMStructureLocalServiceUtil.fetchStructure(
getClassPK());
if (_ddmStructure != null) {
return _ddmStructure;
}
DDMTemplate ddmTemplate = getDDMTemplate();
if (ddmTemplate != null) {
_ddmStructure = DDMStructureLocalServiceUtil.fetchStructure(
ddmTemplate.getClassPK());
}
return _ddmStructure;
}
public DDMTemplate getDDMTemplate() {
if (_ddmTemplate != null) {
return _ddmTemplate;
}
_ddmTemplate = DDMTemplateLocalServiceUtil.fetchDDMTemplate(
getDDMTemplateId());
return _ddmTemplate;
}
public HashMap getDDMTemplateEditorContext()
throws Exception {
return HashMapBuilder.put(
"editorAutocompleteData", getAutocompleteJSONObject()
).put(
"propertiesViewURL",
() -> PortletURLBuilder.createRenderURL(
_renderResponse
).setMVCPath(
"/ddm_template/edit_properties.jsp"
).setParameter(
"classPK", getClassPK()
).setParameter(
"ddmTemplateId", getDDMTemplateId()
).setWindowState(
LiferayWindowState.EXCLUSIVE
).buildString()
).put(
"script", getScript()
).put(
"showCacheableWarning", isCacheable()
).put(
"showPropertiesPanel",
() -> {
DDMTemplate ddmTemplate = getDDMTemplate();
if ((ddmTemplate == null) || (ddmTemplate.getClassPK() <= 0)) {
return true;
}
return false;
}
).put(
"templateVariableGroups", getTemplateVariableGroupJSONArray()
).build();
}
public long getDDMTemplateId() {
if (_ddmTemplateId != null) {
return _ddmTemplateId;
}
_ddmTemplateId = ParamUtil.getLong(
_httpServletRequest, "ddmTemplateId");
return _ddmTemplateId;
}
public long getGroupId() {
if (_groupId != null) {
return _groupId;
}
ThemeDisplay themeDisplay =
(ThemeDisplay)_httpServletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
_groupId = BeanParamUtil.getLong(
getDDMTemplate(), _httpServletRequest, "groupId",
themeDisplay.getScopeGroupId());
return _groupId;
}
public String getRedirect() {
if (_redirect != null) {
return _redirect;
}
_redirect = ParamUtil.getString(_httpServletRequest, "redirect");
return _redirect;
}
public String getScript() {
if (_script != null) {
return _script;
}
_script = BeanParamUtil.getString(
getDDMTemplate(), _httpServletRequest, "script");
if (Validator.isNull(_script)) {
TemplateHandler templateHandler =
TemplateHandlerRegistryUtil.getTemplateHandler(
PortalUtil.getClassNameId(JournalArticle.class));
_script = templateHandler.getTemplatesHelpContent(
TemplateConstants.LANG_TYPE_FTL);
}
String scriptContent = ParamUtil.getString(
_httpServletRequest, "scriptContent");
if (Validator.isNotNull(scriptContent)) {
_script = scriptContent;
}
return _script;
}
public String getSmallImageSource() {
if (Validator.isNotNull(_smallImageSource)) {
return _smallImageSource;
}
DDMTemplate ddmTemplate = getDDMTemplate();
if (ddmTemplate == null) {
_smallImageSource = "none";
return _smallImageSource;
}
_smallImageSource = ParamUtil.getString(
_httpServletRequest, "smallImageSource");
if (Validator.isNotNull(_smallImageSource)) {
return _smallImageSource;
}
if (!ddmTemplate.isSmallImage()) {
_smallImageSource = "none";
}
else if (Validator.isNotNull(ddmTemplate.getSmallImageURL())) {
_smallImageSource = "url";
}
else if ((ddmTemplate.getSmallImageId() > 0) &&
Validator.isNull(ddmTemplate.getSmallImageURL())) {
_smallImageSource = "file";
}
return _smallImageSource;
}
public ResourceBundle getTemplateHandlerResourceBundle() {
ThemeDisplay themeDisplay =
(ThemeDisplay)_httpServletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
TemplateHandler templateHandler =
TemplateHandlerRegistryUtil.getTemplateHandler(
PortalUtil.getClassNameId(JournalArticle.class));
Class> clazz = getClass();
if (templateHandler != null) {
clazz = templateHandler.getClass();
}
return ResourceBundleUtil.getBundle(themeDisplay.getLocale(), clazz);
}
public String getTemplateLanguageTypeLabel(String templateLanguageType) {
return StringBundler.concat(
LanguageUtil.get(
_httpServletRequest, templateLanguageType + "[stands-for]"),
StringPool.SPACE, StringPool.OPEN_PARENTHESIS, StringPool.PERIOD,
templateLanguageType, StringPool.CLOSE_PARENTHESIS);
}
public JSONArray getTemplateVariableGroupJSONArray() throws Exception {
JournalDDMTemplateHelper journalDDMTemplateHelper =
(JournalDDMTemplateHelper)_httpServletRequest.getAttribute(
JournalDDMTemplateHelper.class.getName());
JSONArray templateVariableGroupJSONArray =
JSONFactoryUtil.createJSONArray();
ResourceBundle resourceBundle = getTemplateHandlerResourceBundle();
for (TemplateVariableGroup templateVariableGroup :
getTemplateVariableGroups()) {
if (templateVariableGroup.isEmpty()) {
continue;
}
JSONArray templateVariableDefinitionJSONArray =
JSONFactoryUtil.createJSONArray();
for (TemplateVariableDefinition templateVariableDefinition :
templateVariableGroup.getTemplateVariableDefinitions()) {
templateVariableDefinitionJSONArray.put(
JSONUtil.put(
"content",
journalDDMTemplateHelper.getDataContent(
templateVariableDefinition)
).put(
"label",
LanguageUtil.get(
_httpServletRequest, resourceBundle,
templateVariableDefinition.getLabel())
).put(
"repeatable",
templateVariableDefinition.isCollection() ||
templateVariableDefinition.isRepeatable()
).put(
"tooltip",
journalDDMTemplateHelper.getPaletteItemTitle(
_httpServletRequest, resourceBundle,
templateVariableDefinition)
));
}
templateVariableGroupJSONArray.put(
JSONUtil.put(
"items", templateVariableDefinitionJSONArray
).put(
"label",
LanguageUtil.get(
_httpServletRequest, resourceBundle,
templateVariableGroup.getLabel())
));
}
return templateVariableGroupJSONArray;
}
public Collection getTemplateVariableGroups()
throws Exception {
ThemeDisplay themeDisplay =
(ThemeDisplay)_httpServletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
Map templateVariableGroups =
TemplateContextHelper.getTemplateVariableGroups(
PortalUtil.getClassNameId(JournalArticle.class), getClassPK(),
TemplateConstants.LANG_TYPE_FTL, themeDisplay.getLocale());
return templateVariableGroups.values();
}
public String getTitle() {
ThemeDisplay themeDisplay =
(ThemeDisplay)_httpServletRequest.getAttribute(
WebKeys.THEME_DISPLAY);
DDMStructure ddmStructure = getDDMStructure();
DDMTemplate ddmTemplate = getDDMTemplate();
if ((ddmStructure != null) && (ddmTemplate != null)) {
return StringUtil.appendParentheticalSuffix(
ddmTemplate.getName(themeDisplay.getLocale()),
ddmStructure.getName(themeDisplay.getLocale()));
}
if (ddmStructure != null) {
return LanguageUtil.format(
_httpServletRequest, "new-template-for-structure-x",
ddmStructure.getName(themeDisplay.getLocale()), false);
}
if (ddmTemplate != null) {
return ddmTemplate.getName(themeDisplay.getLocale());
}
return LanguageUtil.get(_httpServletRequest, "new-template");
}
public String[] imageExtensions() {
return _journalFileUploadsConfiguration.imageExtensions();
}
public boolean isAutocompleteEnabled() {
return _ddmTemplateHelper.isAutocompleteEnabled(
TemplateConstants.LANG_TYPE_FTL);
}
public boolean isCacheable() {
if (_cacheable != null) {
return _cacheable;
}
_cacheable = BeanParamUtil.getBoolean(
getDDMTemplate(), _httpServletRequest, "cacheable", true);
return _cacheable;
}
public boolean isSmallImage() {
if (_smallImage != null) {
return _smallImage;
}
_smallImage = BeanParamUtil.getBoolean(
getDDMTemplate(), _httpServletRequest, "smallImage");
return _smallImage;
}
public long smallImageMaxSize() {
return _journalFileUploadsConfiguration.smallImageMaxSize();
}
private Boolean _cacheable;
private Long _classPK;
private DDMStructure _ddmStructure;
private DDMTemplate _ddmTemplate;
private final DDMTemplateHelper _ddmTemplateHelper;
private Long _ddmTemplateId;
private Long _groupId;
private final HttpServletRequest _httpServletRequest;
private final JournalFileUploadsConfiguration
_journalFileUploadsConfiguration;
private final JournalWebConfiguration _journalWebConfiguration;
private String _redirect;
private final RenderResponse _renderResponse;
private String _script;
private Boolean _smallImage;
private String _smallImageSource;
}