/* * Copyright 2015-Present Entando Inc. (http://www.entando.com) 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.agiletec.plugins.jacms.apsadmin.content.attribute.action.link; import java.util.ArrayList; import java.util.List; import javax.servlet.http.HttpSession; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import com.agiletec.aps.system.services.group.Group; import com.agiletec.plugins.jacms.aps.system.services.content.model.Content; import com.agiletec.plugins.jacms.aps.system.services.content.model.ContentRecordVO; import com.agiletec.plugins.jacms.aps.system.services.content.model.SymbolicLink; import com.agiletec.plugins.jacms.apsadmin.content.ContentActionConstants; import com.agiletec.plugins.jacms.apsadmin.content.ContentFinderAction; import com.agiletec.plugins.jacms.apsadmin.content.attribute.action.link.helper.ILinkAttributeActionHelper; /** * Classe action delegata alla gestione dei link a contenuto nelle * operazioni sugli attributi tipo Link. * @author E.Santoboni */ public class ContentLinkAction extends ContentFinderAction { private static final Logger _logger = LoggerFactory.getLogger(ContentLinkAction.class); @Override public List<String> getContents() { List<String> result = null; try { List<String> allowedGroups = this.getContentGroupCodes(); result = this.getContentManager().loadPublicContentsId(null, this.createFilters(), allowedGroups); } catch (Throwable t) { _logger.error("error loading contents", t); //ApsSystemUtils.logThrowable(t, this, "getContents"); throw new RuntimeException("error loading contents", t); } return result; } public String joinContentLink() { ContentRecordVO contentVo = this.getContentVo(this.getContentId()); if (null == contentVo || !contentVo.isOnLine()) { _logger.error("Content '{}' does not exists or is not public", this.getContentId()); return FAILURE; } if (this.isContentOnPageType()) { //Fa il forward alla scelta pagina di destinazione return "configContentOnPageLink"; } else { String[] destinations = {null, this.getContentId(), null}; this.buildEntryContentAnchorDest(); this.getLinkAttributeHelper().joinLink(destinations, SymbolicLink.CONTENT_TYPE, this.getRequest()); return SUCCESS; } } private void buildEntryContentAnchorDest() { HttpSession session = this.getRequest().getSession(); String anchorDest = this.getLinkAttributeHelper().buildEntryContentAnchorDest(session); this.setEntryContentAnchorDest(anchorDest); } /** * Sovrascrittura del metodo della {@link ContentFinderAction}. * Il metodo fà in modo di ricercare i contenuti che hanno, come gruppo proprietario o gruppo abilitato alla visualizzazione, * o il gruppo "free" o il gruppo proprietario del contenuto in redazione. */ @Override protected List<String> getContentGroupCodes() { List<String> allowedGroups = new ArrayList<String>(); allowedGroups.add(Group.FREE_GROUP_NAME); Content currentContent = this.getContent(); allowedGroups.add(currentContent.getMainGroup()); return allowedGroups; } public SymbolicLink getSymbolicLink() { return (SymbolicLink) this.getRequest().getSession().getAttribute(ILinkAttributeActionHelper.SYMBOLIC_LINK_SESSION_PARAM); } public Content getContent() { return (Content) this.getRequest().getSession() .getAttribute(ContentActionConstants.SESSION_PARAM_NAME_CURRENT_CONTENT_PREXIX + this.getContentOnSessionMarker()); } public String getContentOnSessionMarker() { return _contentOnSessionMarker; } public void setContentOnSessionMarker(String contentOnSessionMarker) { this._contentOnSessionMarker = contentOnSessionMarker; } public String getContentId() { return _contentId; } public void setContentId(String contentId) { this._contentId = contentId; } public boolean isContentOnPageType() { return _contentOnPageType; } public void setContentOnPageType(boolean contentOnPageType) { this._contentOnPageType = contentOnPageType; } public String getEntryContentAnchorDest() { if (null == this._entryContentAnchorDest) { this.buildEntryContentAnchorDest(); } return _entryContentAnchorDest; } protected void setEntryContentAnchorDest(String entryContentAnchorDest) { this._entryContentAnchorDest = entryContentAnchorDest; } /** * Restituisce la classe helper della gestione degli attributi di tipo Link. * @return La classe helper degli attributi di tipo Link. */ protected ILinkAttributeActionHelper getLinkAttributeHelper() { return _linkAttributeHelper; } /** * Setta la classe helper della gestione degli attributi di tipo Link. * @param linkAttributeHelper La classe helper degli attributi di tipo Link. */ public void setLinkAttributeHelper(ILinkAttributeActionHelper linkAttributeHelper) { this._linkAttributeHelper = linkAttributeHelper; } private String _contentOnSessionMarker; private String _contentId; private boolean _contentOnPageType; private String _entryContentAnchorDest; private ILinkAttributeActionHelper _linkAttributeHelper; }