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.
org.bonitasoft.engine.page.impl.PageServiceImpl Maven / Gradle / Ivy
/**
* Copyright (C) 2019 Bonitasoft S.A.
* Bonitasoft, 32 rue Gustave Eiffel - 38000 Grenoble
* 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
* version 2.1 of the License.
* 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.
* You should have received a copy of the GNU Lesser General Public License along with this
* program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
* Floor, Boston, MA 02110-1301, USA.
**/
package org.bonitasoft.engine.page.impl;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Properties;
import java.util.Set;
import org.bonitasoft.engine.builder.BuilderFactory;
import org.bonitasoft.engine.commons.exceptions.SBonitaException;
import org.bonitasoft.engine.commons.exceptions.SDeletionException;
import org.bonitasoft.engine.commons.exceptions.SObjectAlreadyExistsException;
import org.bonitasoft.engine.commons.exceptions.SObjectCreationException;
import org.bonitasoft.engine.commons.exceptions.SObjectModificationException;
import org.bonitasoft.engine.commons.exceptions.SObjectNotFoundException;
import org.bonitasoft.engine.commons.io.IOUtil;
import org.bonitasoft.engine.log.technical.TechnicalLogSeverity;
import org.bonitasoft.engine.log.technical.TechnicalLoggerService;
import org.bonitasoft.engine.page.PageService;
import org.bonitasoft.engine.page.PageServiceListener;
import org.bonitasoft.engine.page.SContentType;
import org.bonitasoft.engine.page.SInvalidPageTokenException;
import org.bonitasoft.engine.page.SInvalidPageZipException;
import org.bonitasoft.engine.page.SInvalidPageZipInconsistentException;
import org.bonitasoft.engine.page.SInvalidPageZipMissingAPropertyException;
import org.bonitasoft.engine.page.SInvalidPageZipMissingIndexException;
import org.bonitasoft.engine.page.SInvalidPageZipMissingPropertiesException;
import org.bonitasoft.engine.page.SPage;
import org.bonitasoft.engine.page.SPageBuilderFactory;
import org.bonitasoft.engine.page.SPageLogBuilder;
import org.bonitasoft.engine.page.SPageUpdateBuilder;
import org.bonitasoft.engine.page.SPageUpdateBuilderFactory;
import org.bonitasoft.engine.page.SPageWithContent;
import org.bonitasoft.engine.persistence.FilterOption;
import org.bonitasoft.engine.persistence.OrderByOption;
import org.bonitasoft.engine.persistence.OrderByType;
import org.bonitasoft.engine.persistence.QueryOptions;
import org.bonitasoft.engine.persistence.ReadOnlySelectByIdDescriptor;
import org.bonitasoft.engine.persistence.ReadPersistenceService;
import org.bonitasoft.engine.persistence.SBonitaReadException;
import org.bonitasoft.engine.persistence.SelectByIdDescriptor;
import org.bonitasoft.engine.persistence.SelectListDescriptor;
import org.bonitasoft.engine.persistence.SelectOneDescriptor;
import org.bonitasoft.engine.profile.ProfileService;
import org.bonitasoft.engine.profile.exception.profileentry.SProfileEntryDeletionException;
import org.bonitasoft.engine.profile.exception.profileentry.SProfileEntryNotFoundException;
import org.bonitasoft.engine.profile.exception.profileentry.SProfileEntryUpdateException;
import org.bonitasoft.engine.profile.model.SProfileEntry;
import org.bonitasoft.engine.queriablelogger.model.SQueriableLog;
import org.bonitasoft.engine.queriablelogger.model.SQueriableLogSeverity;
import org.bonitasoft.engine.queriablelogger.model.builder.ActionType;
import org.bonitasoft.engine.queriablelogger.model.builder.HasCRUDEAction;
import org.bonitasoft.engine.queriablelogger.model.builder.SLogBuilder;
import org.bonitasoft.engine.queriablelogger.model.builder.SPersistenceLogBuilder;
import org.bonitasoft.engine.recorder.Recorder;
import org.bonitasoft.engine.recorder.SRecorderException;
import org.bonitasoft.engine.recorder.model.DeleteRecord;
import org.bonitasoft.engine.recorder.model.EntityUpdateDescriptor;
import org.bonitasoft.engine.recorder.model.InsertRecord;
import org.bonitasoft.engine.recorder.model.UpdateRecord;
import org.bonitasoft.engine.services.QueriableLoggerService;
/**
* @author Baptiste Mesta
* @author Matthieu Chaffotte
*/
public class PageServiceImpl implements PageService {
private static final String QUERY_GET_PAGE_BY_NAME = "getPageByName";
private static final String QUERY_GET_PAGE_BY_NAME_AND_PROCESS_DEFINITION_ID = "getPageByNameAndProcessDefinitionId";
private static final String QUERY_GET_PAGE_BY_PROCESS_DEFINITION_ID = "getPageByProcessDefinitionId";
private static final String METHOD_DELETE_PAGE = "deletePage";
private static final String METHOD_NAME_ADD_PAGE = "addPage";
private static final String METHOD_UPDATE_PAGE = "updatePage";
public static final String PAGE_TOKEN_PREFIX = "custompage_";
public static final String INDEX_GROOVY = "Index.groovy";
public static final String INDEX_HTML = "index.html";
public static final String RESOURCES_INDEX_HTML = "resources/index.html";
private static final String API_EXTENSIONS = "apiExtensions";
private static final String CLASS_FILENAME = "classFileName";
private static final String THEME_CSS = "resources/theme.css";
private final ReadPersistenceService persistenceService;
private final Recorder recorder;
private final TechnicalLoggerService logger;
private final QueriableLoggerService queriableLoggerService;
private final ProfileService profileService;
private List pageServiceListeners;
private final SPageContentHelper helper;
private List providedPages;
public PageServiceImpl(final ReadPersistenceService persistenceService, final Recorder recorder,
final TechnicalLoggerService logger, final QueriableLoggerService queriableLoggerService,
final ProfileService profileService) {
this.persistenceService = persistenceService;
this.recorder = recorder;
this.logger = logger;
this.queriableLoggerService = queriableLoggerService;
this.profileService = profileService;
helper = new SPageContentHelper();
this.providedPages = Collections.EMPTY_LIST;
}
@Override
public SPage addPage(final SPage page, final byte[] content)
throws SObjectCreationException, SObjectAlreadyExistsException,
SInvalidPageZipException, SInvalidPageTokenException {
try {
checkZipContainsRequiredEntries(unzip(content));
checkPageNameIsValid(page.getName(), page.isProvided());
checkPageDisplayNameIsValid(page.getDisplayName());
return insertPage(page, content);
} catch (final IOException e) {
throw new SInvalidPageZipInconsistentException("Error while reading zip file", e);
}
}
// @VisibleForTesting
Map unzip(byte[] content) throws IOException {
return IOUtil.unzip(content);
}
@Override
public SPage addPage(final byte[] content, final String contentName, final long userId)
throws SObjectCreationException, SObjectAlreadyExistsException, SInvalidPageZipException,
SInvalidPageTokenException {
return addPage(content, contentName, userId, false, false);
}
@Override
public SPage getPageByNameAndProcessDefinitionId(final String name, final long processDefinitionId)
throws SBonitaReadException {
final Map inputParameters = new HashMap<>();
inputParameters.put("pageName", name);
inputParameters.put("processDefinitionId", processDefinitionId);
return persistenceService.selectOne(new SelectOneDescriptor<>(QUERY_GET_PAGE_BY_NAME_AND_PROCESS_DEFINITION_ID,
inputParameters, SPage.class));
}
@Override
public List getPageByProcessDefinitionId(final long processDefinitionId, final int fromIndex,
final int numberOfResults)
throws SBonitaReadException {
final Map inputParameters = new HashMap<>();
inputParameters.put("processDefinitionId", processDefinitionId);
final OrderByOption orderByOption = new OrderByOption(SPage.class, SPageFields.PAGE_NAME, OrderByType.ASC);
final QueryOptions queryOptions = new QueryOptions(fromIndex, numberOfResults,
Collections.singletonList(orderByOption));
return persistenceService.selectList(
new SelectListDescriptor<>(QUERY_GET_PAGE_BY_PROCESS_DEFINITION_ID, inputParameters, SPage.class,
queryOptions));
}
private SPage addPage(final byte[] content, final String contentName, final long userId, final boolean provided,
boolean hidden) throws SInvalidPageZipException,
SInvalidPageTokenException, SObjectAlreadyExistsException, SObjectCreationException {
final Properties pageProperties = readPageZip(content, provided);
final SPage page = buildPage(pageProperties.getProperty(PageService.PROPERTIES_NAME),
pageProperties.getProperty(PageService.PROPERTIES_DISPLAY_NAME),
pageProperties.getProperty(PageService.PROPERTIES_DESCRIPTION), contentName, userId, provided, hidden,
pageProperties.getProperty(PROPERTIES_CONTENT_TYPE, SContentType.PAGE));
return insertPage(page, content);
}
@Override
public Properties readPageZip(final byte[] content)
throws SInvalidPageZipMissingIndexException, SInvalidPageZipMissingAPropertyException,
SInvalidPageZipInconsistentException, SInvalidPageZipMissingPropertiesException,
SInvalidPageTokenException {
return readPageZip(content, false);
}
Properties readPageZip(final byte[] content, final boolean provided)
throws SInvalidPageZipMissingIndexException, SInvalidPageZipMissingAPropertyException,
SInvalidPageZipInconsistentException, SInvalidPageZipMissingPropertiesException,
SInvalidPageTokenException {
final Properties pageProperties;
if (content == null) {
throw new SInvalidPageZipInconsistentException("Content can't be null");
}
try {
final Map zipContent = unzip(content);
pageProperties = helper.loadPageProperties(zipContent);
if (isAnAPIExtension(pageProperties)) {
checkApiControllerExists(zipContent, pageProperties);
} else {
checkZipContainsRequiredEntries(zipContent);
}
checkPageNameIsValid(pageProperties.getProperty(PageService.PROPERTIES_NAME), provided);
checkPageDisplayNameIsValid(pageProperties.getProperty(PageService.PROPERTIES_DISPLAY_NAME));
} catch (final IOException e) {
throw new SInvalidPageZipInconsistentException("Error while reading zip file", e);
}
return pageProperties;
}
private void checkApiControllerExists(Map zipContent, Properties pageProperties)
throws SInvalidPageZipInconsistentException, SInvalidPageZipMissingAPropertyException {
final Set entrySet = zipContent.keySet();
final String declaredApis = pageProperties.getProperty(API_EXTENSIONS);
if (declaredApis == null || declaredApis.isEmpty()) {
throw new SInvalidPageZipMissingAPropertyException(API_EXTENSIONS);
}
final String[] apis = declaredApis.split(",");
for (final String api : apis) {
final String classFileName = pageProperties.getProperty(api.trim() + "." + CLASS_FILENAME);
if (classFileName == null || classFileName.isEmpty()) {
throw new SInvalidPageZipMissingAPropertyException(api.trim() + "." + CLASS_FILENAME);
}
if (!entrySet.contains(classFileName.trim())) {
throw new SInvalidPageZipInconsistentException(
String.format("RestAPIController %s has not been found in archive.", classFileName.trim()));
}
}
}
private boolean isAnAPIExtension(Properties pageProperties) {
return Objects.equals(SContentType.API_EXTENSION, pageProperties.get(PageService.PROPERTIES_CONTENT_TYPE));
}
SPage insertPage(final SPage page, final byte[] content)
throws SObjectAlreadyExistsException, SObjectCreationException {
final SPageLogBuilder logBuilder = getPageLog(ActionType.CREATED,
"Adding a new page with name " + page.getName());
try {
final SPageWithContent pageContent = new SPageWithContent(page, content);
final SPage pageByName = checkIfPageAlreadyExists(page);
if (null != pageByName) {
initiateLogBuilder(page.getId(), SQueriableLog.STATUS_FAIL, logBuilder, METHOD_NAME_ADD_PAGE);
throwAlreadyExistsException(pageByName.getName());
}
recorder.recordInsert(new InsertRecord(pageContent), PAGE);
page.setId(pageContent.getId());
notifyPageInsert(page, content);
return page;
} catch (final SObjectCreationException ce) {
throw ce;
} catch (SRecorderException | SBonitaReadException re) {
throw new SObjectCreationException(re);
}
}
private void notifyPageInsert(final SPage page, final byte[] content) throws SObjectCreationException {
for (final PageServiceListener pageServiceListener : pageServiceListeners) {
pageServiceListener.pageInserted(page, content);
}
}
private SPage checkIfPageAlreadyExists(final SPage page) throws SBonitaReadException {
SPage existingPage;
if (page.getProcessDefinitionId() > 0) {
existingPage = getPageByNameAndProcessDefinitionId(page.getName(), page.getProcessDefinitionId());
} else {
existingPage = getPageByName(page.getName());
}
return existingPage;
}
private void checkPageDisplayNameIsValid(final String displayName) throws SInvalidPageZipMissingPropertiesException,
SInvalidPageZipMissingAPropertyException {
if (displayName == null || displayName.length() == 0) {
throw new SInvalidPageZipMissingAPropertyException(PageService.PROPERTIES_DISPLAY_NAME);
}
}
private void checkPageNameIsValid(final String name, final boolean provided) throws SInvalidPageTokenException {
if (name == null || name.isEmpty() || !provided && !name.matches(PAGE_TOKEN_PREFIX + "\\p{Alnum}+")) {
throw new SInvalidPageTokenException(
"Page name is not valid, it must contains only alpha numeric characters and start with "
+ PAGE_TOKEN_PREFIX);
}
}
void checkZipContainsRequiredEntries(final Map zipContent)
throws SInvalidPageZipMissingIndexException {
final Set entrySet = zipContent.keySet();
for (final String entry : entrySet) {
if (INDEX_GROOVY.equals(entry)
|| INDEX_HTML.equalsIgnoreCase(entry)
|| RESOURCES_INDEX_HTML.equalsIgnoreCase(entry)
|| THEME_CSS.equalsIgnoreCase(entry)) {
return;
}
}
throw new SInvalidPageZipMissingIndexException();
}
private SPage buildPage(final String name, final String displayName, final String description,
final String contentName, final long creatorUserId,
final boolean provided, boolean hidden, final String contentType) {
return BuilderFactory.get(SPageBuilderFactory.class).createNewInstance(name, description, displayName,
System.currentTimeMillis(), creatorUserId, provided, hidden, contentName).setContentType(contentType)
.done();
}
SPageLogBuilder getPageLog(final ActionType actionType, final String message) {
final SPageLogBuilder logBuilder = new SPageLogBuilderImpl();
this.initializeLogBuilder(logBuilder, message);
this.updateLog(actionType, logBuilder);
return logBuilder;
}
@Override
public SPage getPage(final long pageId) throws SBonitaReadException, SObjectNotFoundException {
final SPage page = persistenceService.selectById(new SelectByIdDescriptor<>(SPage.class, pageId));
if (page == null) {
throw new SObjectNotFoundException("Page with id " + pageId + " not found");
}
return page;
}
@Override
public SPage getPageByName(final String pageName) throws SBonitaReadException {
return persistenceService
.selectOne(new SelectOneDescriptor(QUERY_GET_PAGE_BY_NAME, Collections.singletonMap("pageName",
pageName), SPage.class));
}
@Override
public long getNumberOfPages(final QueryOptions options) throws SBonitaReadException {
return persistenceService.getNumberOfEntities(SPage.class, options, null);
}
@Override
public List searchPages(final QueryOptions options) throws SBonitaReadException {
return persistenceService.searchEntity(SPage.class, options, null);
}
@Override
public void deletePage(final long pageId) throws SObjectModificationException, SObjectNotFoundException {
try {
final SPage page = getPage(pageId);
deletePage(page);
} catch (final SBonitaReadException sbe) {
throw new SObjectModificationException(sbe);
}
}
private void deletePage(final SPage sPage) throws SObjectModificationException {
final SPageLogBuilder logBuilder = getPageLog(ActionType.DELETED, "Deleting page named: " + sPage.getName());
try {
deleteProfileEntry(sPage);
for (final PageServiceListener pageServiceListener : pageServiceListeners) {
pageServiceListener.pageDeleted(sPage);
}
recorder.recordDelete(new DeleteRecord(sPage), PAGE);
initiateLogBuilder(sPage.getId(), SQueriableLog.STATUS_OK, logBuilder, METHOD_DELETE_PAGE);
} catch (SRecorderException | SBonitaReadException | SProfileEntryNotFoundException
| SProfileEntryDeletionException | SDeletionException re) {
initiateLogBuilder(sPage.getId(), SQueriableLog.STATUS_FAIL, logBuilder, METHOD_DELETE_PAGE);
throw new SObjectModificationException(re);
}
}
private void deleteProfileEntry(final SPage sPage)
throws SBonitaReadException, SProfileEntryNotFoundException, SProfileEntryDeletionException {
final List orderByOptions = Collections
.singletonList(new OrderByOption(SProfileEntry.class, SProfileEntry.INDEX, OrderByType.ASC));
final List filters = new ArrayList<>();
filters.add(new FilterOption(SProfileEntry.class, SProfileEntry.PAGE, sPage.getName()));
filters.add(new FilterOption(SProfileEntry.class, SProfileEntry.CUSTOM, new Boolean(true)));
final QueryOptions queryOptions = new QueryOptions(0, QueryOptions.UNLIMITED_NUMBER_OF_RESULTS, orderByOptions,
filters, null);
final List searchProfileEntries = profileService.searchProfileEntries(queryOptions);
for (final SProfileEntry sProfileEntry : searchProfileEntries) {
profileService.deleteProfileEntry(sProfileEntry.getId());
if (sProfileEntry.getParentId() > 0) {
deleteParentIfNoMoreChildren(sProfileEntry);
}
}
}
private void deleteParentIfNoMoreChildren(final SProfileEntry sProfileEntry)
throws SBonitaReadException, SProfileEntryNotFoundException,
SProfileEntryDeletionException {
final List orderByOptions = Collections
.singletonList(new OrderByOption(SProfileEntry.class, SProfileEntry.INDEX, OrderByType.ASC));
final List filters = new ArrayList<>();
filters.add(new FilterOption(SProfileEntry.class, SProfileEntry.PROFILE_ID, sProfileEntry.getProfileId()));
filters.add(new FilterOption(SProfileEntry.class, SProfileEntry.PARENT_ID, sProfileEntry.getParentId()));
final QueryOptions queryOptions = new QueryOptions(0, QueryOptions.UNLIMITED_NUMBER_OF_RESULTS, orderByOptions,
filters, null);
final List searchProfileEntries = profileService.searchProfileEntries(queryOptions);
if (null == searchProfileEntries || searchProfileEntries.isEmpty()) {
// no more children
profileService.deleteProfileEntry(sProfileEntry.getParentId());
}
}
private void initializeLogBuilder(final T logBuilder, final String message) {
logBuilder.actionStatus(SQueriableLog.STATUS_FAIL).severity(SQueriableLogSeverity.INTERNAL).rawMessage(message);
}
private void updateLog(final ActionType actionType, final T logBuilder) {
logBuilder.setActionType(actionType);
}
void initiateLogBuilder(final long objectId, final int sQueriableLogStatus, final SPersistenceLogBuilder logBuilder,
final String methodName) {
logBuilder.actionScope(String.valueOf(objectId));
logBuilder.actionStatus(sQueriableLogStatus);
logBuilder.objectId(objectId);
final SQueriableLog log = logBuilder.build();
if (queriableLoggerService.isLoggable(log.getActionType(), log.getSeverity())) {
queriableLoggerService.log(this.getClass().getName(), methodName, log);
}
}
@Override
public byte[] getPageContent(final long pageId) throws SBonitaReadException, SObjectNotFoundException {
final SPageWithContent page = persistenceService
.selectById(new ReadOnlySelectByIdDescriptor<>(SPageWithContent.class, pageId));
if (page == null) {
throw new SObjectNotFoundException("Page with id " + pageId + " not found");
}
final byte[] content = page.getContent();
try {
final Map contentAsMap = unzip(content);
final byte[] bytes = contentAsMap.get("page.properties");
final Properties pageProperties = new Properties();
if (bytes != null) {
pageProperties.load(new ByteArrayInputStream(bytes));
}
pageProperties.put(PROPERTIES_NAME, page.getName());
pageProperties.put(PROPERTIES_DISPLAY_NAME, page.getDisplayName());
if (page.getDescription() != null) {
pageProperties.put(PROPERTIES_DESCRIPTION, page.getDescription());
}
contentAsMap.put("page.properties",
IOUtil.getPropertyAsString(pageProperties, "The name must start with 'custompage_'"));
return IOUtil.zip(contentAsMap);
} catch (final IOException e) {
throw new SBonitaReadException("the page is not a valid zip file", e);
}
}
@Override
public SPage updatePage(final long pageId, final EntityUpdateDescriptor entityUpdateDescriptor)
throws SObjectModificationException,
SObjectAlreadyExistsException, SInvalidPageTokenException {
final SPageLogBuilder logBuilder = getPageLog(ActionType.UPDATED, "Update a page with id " + pageId);
final String logMethodName = METHOD_UPDATE_PAGE;
try {
final SPage sPage = persistenceService.selectById(new SelectByIdDescriptor<>(SPage.class, pageId));
checkPageDuplicate(sPage, entityUpdateDescriptor, logBuilder, logMethodName);
final String oldPageName = sPage.getName();
recorder.recordUpdate(UpdateRecord.buildSetFields(sPage, entityUpdateDescriptor), PAGE);
updatePageNameInProfileEntry(entityUpdateDescriptor, oldPageName);
initiateLogBuilder(pageId, SQueriableLog.STATUS_OK, logBuilder, logMethodName);
return sPage;
} catch (SRecorderException | SBonitaReadException | SProfileEntryUpdateException e) {
initiateLogBuilder(pageId, SQueriableLog.STATUS_FAIL, logBuilder, logMethodName);
throw new SObjectModificationException(e);
}
}
protected void updatePageNameInProfileEntry(final EntityUpdateDescriptor entityUpdateDescriptor,
final String oldPageName)
throws SInvalidPageTokenException,
SBonitaReadException, SProfileEntryUpdateException {
if (entityUpdateDescriptor.getFields().containsKey(SPageFields.PAGE_NAME)) {
// page name has changed
final String newPageName = entityUpdateDescriptor.getFields().get(SPageFields.PAGE_NAME).toString();
checkPageNameIsValid(newPageName, false);
updateProfileEntry(oldPageName, newPageName);
}
}
protected void checkPageDuplicate(final SPage sPage, final EntityUpdateDescriptor entityUpdateDescriptor,
final SPageLogBuilder logBuilder,
final String logMethodName)
throws SBonitaReadException, SObjectAlreadyExistsException {
if (entityUpdateDescriptor.getFields().containsKey(SPageFields.PAGE_NAME)
|| entityUpdateDescriptor.getFields().containsKey(SPageFields.PAGE_PROCESS_DEFINITION_ID)) {
String sPageName = sPage.getName();
long sPageProcessDefinitionId = sPage.getProcessDefinitionId();
if (entityUpdateDescriptor.getFields().containsKey(SPageFields.PAGE_NAME)) {
sPageName = entityUpdateDescriptor.getFields().get(SPageFields.PAGE_NAME).toString();
}
if (entityUpdateDescriptor.getFields().containsKey(SPageFields.PAGE_PROCESS_DEFINITION_ID)) {
sPageProcessDefinitionId = Long.parseLong(
entityUpdateDescriptor.getFields().get(SPageFields.PAGE_PROCESS_DEFINITION_ID).toString());
}
final SPage page;
if (sPageProcessDefinitionId > 0) {
page = getPageByNameAndProcessDefinitionId(sPageName, sPageProcessDefinitionId);
} else {
page = getPageByName(sPageName);
}
if (null != page && page.getId() != sPage.getId()) {
initiateLogBuilder(sPage.getId(), SQueriableLog.STATUS_FAIL, logBuilder, logMethodName);
throwAlreadyExistsException(page.getName());
}
}
}
private void updateProfileEntry(final String oldPageName, final String newPageName)
throws SBonitaReadException, SProfileEntryUpdateException {
if (newPageName.equals(oldPageName)) {
return;
}
final List filters = new ArrayList<>();
filters.add(new FilterOption(SProfileEntry.class, SProfileEntry.PAGE, oldPageName));
final QueryOptions queryOptions = new QueryOptions(0, QueryOptions.UNLIMITED_NUMBER_OF_RESULTS, Collections
.singletonList(new OrderByOption(SProfileEntry.class, SProfileEntry.INDEX, OrderByType.ASC)), filters,
null);
final List searchProfileEntries = profileService.searchProfileEntries(queryOptions);
for (final SProfileEntry sProfileEntry : searchProfileEntries) {
final EntityUpdateDescriptor entityUpdateDescriptor = new EntityUpdateDescriptor();
entityUpdateDescriptor.addField(SProfileEntry.NAME, sProfileEntry.getName());
entityUpdateDescriptor.addField(SProfileEntry.PAGE, newPageName);
profileService.updateProfileEntry(sProfileEntry, entityUpdateDescriptor);
}
}
private void throwAlreadyExistsException(final String pageName) throws SObjectAlreadyExistsException {
final StringBuilder stringBuilderException = new StringBuilder();
stringBuilderException.append("page with name ");
stringBuilderException.append(pageName);
throw new SObjectAlreadyExistsException(stringBuilderException.toString());
}
@Override
public void updatePageContent(final long pageId, final byte[] content, final String contentName)
throws SObjectModificationException,
SInvalidPageZipException, SInvalidPageTokenException, SObjectAlreadyExistsException {
final SPageLogBuilder logBuilder = getPageLog(ActionType.UPDATED, "Update a page with name " + pageId);
final Properties pageProperties = readPageZip(content, false);
try {
final SPageWithContent sPageContent = persistenceService.selectById(new SelectByIdDescriptor<>(
SPageWithContent.class, pageId));
EntityUpdateDescriptor entityUpdateDescriptor = new EntityUpdateDescriptor();
entityUpdateDescriptor.addField("content", content);
recorder.recordUpdate(UpdateRecord.buildSetFields(sPageContent,
entityUpdateDescriptor), PAGE);
initiateLogBuilder(pageId, SQueriableLog.STATUS_OK, logBuilder, METHOD_UPDATE_PAGE);
} catch (SRecorderException | SBonitaReadException re) {
initiateLogBuilder(pageId, SQueriableLog.STATUS_FAIL, logBuilder, METHOD_UPDATE_PAGE);
throw new SObjectModificationException(re);
}
final SPageUpdateBuilder pageBuilder = BuilderFactory.get(SPageUpdateBuilderFactory.class)
.createNewInstance(new EntityUpdateDescriptor());
pageBuilder.updateContentName(contentName);
pageBuilder.updateDescription(pageProperties.getProperty(PROPERTIES_DESCRIPTION));
pageBuilder.updateDisplayName(pageProperties.getProperty(PROPERTIES_DISPLAY_NAME));
pageBuilder.updateName(pageProperties.getProperty(PROPERTIES_NAME));
pageBuilder.updateContentType(pageProperties.getProperty(PROPERTIES_CONTENT_TYPE, SContentType.PAGE));
final SPage sPage = updatePage(pageId, pageBuilder.done());
for (final PageServiceListener pageServiceListener : pageServiceListeners) {
pageServiceListener.pageUpdated(sPage, content);
}
}
@Override
public void start() throws SBonitaException {
for (final ImportPageDescriptor page : getProvidedPages()) {
importProvidedPage(page);
}
}
private void importProvidedPage(final ImportPageDescriptor pageDesc) throws SBonitaException {
try {
// check if the s are here or not up to date and import them from class path if needed
final byte[] providedPageContent = getZipContent(pageDesc.getZipName());
if (providedPageContent.length > 0) {
final Properties pageProperties = readPageZip(providedPageContent, true);
importProvidedPage(pageDesc, providedPageContent, pageProperties);
}
} catch (final IOException e) {
logger.log(getClass(), TechnicalLogSeverity.WARNING,
"Provided page " + pageDesc.getZipName() + "can't be imported");
}
}
private void importProvidedPage(final ImportPageDescriptor pageDescriptor, final byte[] providedPageContent,
final Properties pageProperties) throws SBonitaException {
final SPage pageByName = getPageByName(pageProperties.getProperty(PROPERTIES_NAME));
final String pageZipName = pageDescriptor.getZipName();
if (pageByName == null) {
logger.log(getClass(), TechnicalLogSeverity.DEBUG,
String.format("Provided page %s (hidden: %s) does not exist yet, importing it.", pageZipName,
pageDescriptor.isHidden()));
createPage(pageDescriptor, providedPageContent, pageProperties);
} else {
final byte[] pageContent = getPageContent(pageByName.getId());
// think of a better way to check the content are the same or not, it will almost always be the same so....
if (pageContent.length != providedPageContent.length) {
logger.log(getClass(), TechnicalLogSeverity.DEBUG, String.format(
"Provided page %s exists but the content is not up to date, updating it.", pageZipName));
updatePageContent(pageByName.getId(), providedPageContent, pageZipName);
} else {
logger.log(getClass(), TechnicalLogSeverity.DEBUG,
"Provided page exists and is up to date, nothing to do");
}
}
}
protected void createPage(final ImportPageDescriptor pageDescriptor, final byte[] providedPageContent,
final Properties pageProperties) throws SObjectAlreadyExistsException,
SObjectCreationException {
final SPage page = buildPage(pageProperties.getProperty(PageService.PROPERTIES_NAME),
pageProperties.getProperty(PageService.PROPERTIES_DISPLAY_NAME),
pageProperties.getProperty(PageService.PROPERTIES_DESCRIPTION), pageDescriptor.getZipName(), -1, true,
pageDescriptor.isHidden(),
pageProperties.getProperty(PageService.PROPERTIES_CONTENT_TYPE, SContentType.PAGE));
insertPage(page, providedPageContent);
}
private byte[] getZipContent(final String zipName) throws IOException {
try (final InputStream inputStream = Thread.currentThread().getContextClassLoader()
.getResourceAsStream(zipName)) {
if (inputStream == null) {
// no provided page
logger.log(getClass(), TechnicalLogSeverity.DEBUG,
"No provided " + zipName + " found in the classpath, nothing will be imported");
return new byte[0];
}
return IOUtil.getAllContentFrom(inputStream);
}
}
@Override
public void stop() {
// nothing to do
}
@Override
public void pause() {
// nothing to do
}
@Override
public void resume() {
// nothing to do
}
public List getPageServiceListeners() {
return pageServiceListeners;
}
public void setPageServiceListeners(final List pageServiceListeners) {
this.pageServiceListeners = pageServiceListeners;
}
public List getProvidedPages() {
return providedPages;
}
public void setProvidedPages(List providedPages) {
this.providedPages = providedPages;
}
}