/** * 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.portlet.messageboards.model.impl; import com.liferay.asset.kernel.service.AssetTagLocalServiceUtil; import com.liferay.document.library.kernel.model.DLFolderConstants; import com.liferay.message.boards.kernel.constants.MBConstants; import com.liferay.message.boards.kernel.model.MBCategory; import com.liferay.message.boards.kernel.model.MBCategoryConstants; import com.liferay.message.boards.kernel.model.MBDiscussion; import com.liferay.message.boards.kernel.model.MBMessage; import com.liferay.message.boards.kernel.model.MBMessageConstants; import com.liferay.message.boards.kernel.model.MBThread; import com.liferay.message.boards.kernel.service.MBCategoryLocalServiceUtil; import com.liferay.message.boards.kernel.service.MBThreadLocalServiceUtil; import com.liferay.portal.kernel.dao.orm.QueryUtil; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.model.Repository; import com.liferay.portal.kernel.parsers.bbcode.BBCodeTranslatorUtil; import com.liferay.portal.kernel.portletfilerepository.PortletFileRepositoryUtil; import com.liferay.portal.kernel.repository.model.FileEntry; import com.liferay.portal.kernel.repository.model.Folder; import com.liferay.portal.kernel.service.ServiceContext; import com.liferay.portal.kernel.workflow.WorkflowConstants; import java.util.ArrayList; import java.util.List; /** * @author Brian Wing Shun Chan */ public class MBMessageImpl extends MBMessageBaseImpl { @Override public Folder addAttachmentsFolder() throws PortalException { if (_attachmentsFolderId != DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) { return PortletFileRepositoryUtil.getPortletFolder( _attachmentsFolderId); } ServiceContext serviceContext = new ServiceContext(); serviceContext.setAddGroupPermissions(true); serviceContext.setAddGuestPermissions(true); Repository repository = PortletFileRepositoryUtil.addPortletRepository( getGroupId(), MBConstants.SERVICE_NAME, serviceContext); MBThread thread = getThread(); Folder threadFolder = thread.addAttachmentsFolder(); Folder folder = PortletFileRepositoryUtil.addPortletFolder( getUserId(), repository.getRepositoryId(), threadFolder.getFolderId(), String.valueOf(getMessageId()), serviceContext); _attachmentsFolderId = folder.getFolderId(); return folder; } @Override public String[] getAssetTagNames() { return AssetTagLocalServiceUtil.getTagNames( MBMessage.class.getName(), getMessageId()); } @Override public List<FileEntry> getAttachmentsFileEntries() throws PortalException { return getAttachmentsFileEntries(QueryUtil.ALL_POS, QueryUtil.ALL_POS); } @Override public List<FileEntry> getAttachmentsFileEntries(int start, int end) throws PortalException { List<FileEntry> fileEntries = new ArrayList<>(); long attachmentsFolderId = getAttachmentsFolderId(); if (attachmentsFolderId != DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) { fileEntries = PortletFileRepositoryUtil.getPortletFileEntries( getGroupId(), attachmentsFolderId, WorkflowConstants.STATUS_APPROVED, start, end, null); } return fileEntries; } @Override public int getAttachmentsFileEntriesCount() throws PortalException { int attachmentsFileEntriesCount = 0; long attachmentsFolderId = getAttachmentsFolderId(); if (attachmentsFolderId != DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) { attachmentsFileEntriesCount = PortletFileRepositoryUtil.getPortletFileEntriesCount( getGroupId(), attachmentsFolderId, WorkflowConstants.STATUS_APPROVED); } return attachmentsFileEntriesCount; } @Override public long getAttachmentsFolderId() throws PortalException { if (_attachmentsFolderId != DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) { return _attachmentsFolderId; } ServiceContext serviceContext = new ServiceContext(); serviceContext.setAddGroupPermissions(true); serviceContext.setAddGuestPermissions(true); Repository repository = PortletFileRepositoryUtil.fetchPortletRepository( getGroupId(), MBConstants.SERVICE_NAME); long threadAttachmetsFolderId = getThreadAttachmentsFolderId(); if ((repository == null) || (threadAttachmetsFolderId == DLFolderConstants.DEFAULT_PARENT_FOLDER_ID)) { return DLFolderConstants.DEFAULT_PARENT_FOLDER_ID; } try { Folder folder = PortletFileRepositoryUtil.getPortletFolder( repository.getRepositoryId(), threadAttachmetsFolderId, String.valueOf(getMessageId())); _attachmentsFolderId = folder.getFolderId(); } catch (Exception e) { } return _attachmentsFolderId; } @Override public String getBody(boolean translate) { String body = null; if (translate) { body = BBCodeTranslatorUtil.getHTML(getBody()); } else { body = getBody(); } return body; } @Override public MBCategory getCategory() throws PortalException { return MBCategoryLocalServiceUtil.getCategory(getCategoryId()); } @Override public List<FileEntry> getDeletedAttachmentsFileEntries() throws PortalException { return getDeletedAttachmentsFileEntries( QueryUtil.ALL_POS, QueryUtil.ALL_POS); } @Override public List<FileEntry> getDeletedAttachmentsFileEntries(int start, int end) throws PortalException { List<FileEntry> fileEntries = new ArrayList<>(); long attachmentsFolderId = getAttachmentsFolderId(); if (attachmentsFolderId != DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) { fileEntries = PortletFileRepositoryUtil.getPortletFileEntries( getGroupId(), attachmentsFolderId, WorkflowConstants.STATUS_IN_TRASH, start, end, null); } return fileEntries; } @Override public int getDeletedAttachmentsFileEntriesCount() throws PortalException { int deletedAttachmentsFileEntriesCount = 0; long attachmentsFolderId = getAttachmentsFolderId(); if (attachmentsFolderId != DLFolderConstants.DEFAULT_PARENT_FOLDER_ID) { deletedAttachmentsFileEntriesCount = PortletFileRepositoryUtil.getPortletFileEntriesCount( getGroupId(), attachmentsFolderId, WorkflowConstants.STATUS_IN_TRASH); } return deletedAttachmentsFileEntriesCount; } @Override public MBThread getThread() throws PortalException { return MBThreadLocalServiceUtil.getThread(getThreadId()); } @Override public long getThreadAttachmentsFolderId() throws PortalException { return getThread().getAttachmentsFolderId(); } @Override public String getWorkflowClassName() { if (isDiscussion()) { return MBDiscussion.class.getName(); } else { return MBMessage.class.getName(); } } @Override public boolean isDiscussion() { if (getCategoryId() == MBCategoryConstants.DISCUSSION_CATEGORY_ID) { return true; } else { return false; } } @Override public boolean isFormatBBCode() { String format = getFormat(); if (format.equals("bbcode")) { return true; } else { return false; } } @Override public boolean isReply() { return !isRoot(); } @Override public boolean isRoot() { if (getParentMessageId() == MBMessageConstants.DEFAULT_PARENT_MESSAGE_ID) { return true; } else { return false; } } @Override public void setAttachmentsFolderId(long attachmentsFolderId) { _attachmentsFolderId = attachmentsFolderId; } private long _attachmentsFolderId; }