org.bonitasoft.engine.api.impl.converter.ApplicationModelConverter 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.api.impl.converter;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
import org.bonitasoft.engine.builder.BuilderFactory;
import org.bonitasoft.engine.business.application.Application;
import org.bonitasoft.engine.business.application.ApplicationCreator;
import org.bonitasoft.engine.business.application.ApplicationField;
import org.bonitasoft.engine.business.application.ApplicationService;
import org.bonitasoft.engine.business.application.ApplicationUpdater;
import org.bonitasoft.engine.business.application.impl.ApplicationImpl;
import org.bonitasoft.engine.business.application.model.SApplication;
import org.bonitasoft.engine.business.application.model.SApplicationState;
import org.bonitasoft.engine.business.application.model.builder.SApplicationUpdateBuilder;
import org.bonitasoft.engine.business.application.model.builder.SApplicationUpdateBuilderFactory;
import org.bonitasoft.engine.exception.CreationException;
import org.bonitasoft.engine.page.PageService;
import org.bonitasoft.engine.page.SPage;
import org.bonitasoft.engine.persistence.SBonitaReadException;
import org.bonitasoft.engine.recorder.model.EntityUpdateDescriptor;
/**
* @author Elias Ricken de Medeiros
*/
public class ApplicationModelConverter {
private final PageService pageService;
public ApplicationModelConverter(PageService pageService) {
this.pageService = pageService;
}
public SApplication buildSApplication(final ApplicationCreator creator, final long creatorUserId)
throws CreationException {
final Map fields = creator.getFields();
final String description = (String) fields.get(ApplicationField.DESCRIPTION);
final String iconPath = (String) fields.get(ApplicationField.ICON_PATH);
final Long profileId = (Long) fields.get(ApplicationField.PROFILE_ID);
return SApplication.builder().token((String) fields.get(ApplicationField.TOKEN))
.displayName((String) fields.get(ApplicationField.DISPLAY_NAME))
.version((String) fields.get(ApplicationField.VERSION))
.creationDate(System.currentTimeMillis())
.lastUpdateDate(System.currentTimeMillis())
.createdBy(creatorUserId)
.state(SApplicationState.ACTIVATED.name())
.layoutId(getLayoutId(creator))
.themeId(getThemeId(creator))
.updatedBy(creatorUserId)
.description(description).iconPath(iconPath).profileId(profileId).build();
}
protected Long getLayoutId(final ApplicationCreator creator) throws CreationException {
Long layoutId = (Long) creator.getFields().get(ApplicationField.LAYOUT_ID);
if (layoutId == null) {
layoutId = getPageId((String) creator.getFields().get(ApplicationField.TOKEN),
ApplicationService.DEFAULT_LAYOUT_NAME);
}
return layoutId;
}
protected Long getThemeId(final ApplicationCreator creator) throws CreationException {
Long themeId = (Long) creator.getFields().get(ApplicationField.THEME_ID);
if (themeId == null) {
themeId = getPageId((String) creator.getFields().get(ApplicationField.TOKEN),
ApplicationService.DEFAULT_THEME_NAME);
}
return themeId;
}
private Long getPageId(final String applicationToken, final String pageName) throws CreationException {
try {
SPage defaultLayout = pageService.getPageByName(pageName);
if (defaultLayout == null) {
throw new CreationException(String.format(
"Unable to created application with token '%s' because the page '%s' was not found.",
applicationToken, pageName));
}
return defaultLayout.getId();
} catch (SBonitaReadException e) {
throw new CreationException(e);
}
}
public Application toApplication(final SApplication sApplication) {
final ApplicationImpl application = new ApplicationImpl(sApplication.getToken(), sApplication.getVersion(),
sApplication.getDescription(),
sApplication.getLayoutId(), sApplication.getThemeId());
application.setId(sApplication.getId());
application.setDisplayName(sApplication.getDisplayName());
application.setCreatedBy(sApplication.getCreatedBy());
application.setCreationDate(new Date(sApplication.getCreationDate()));
application.setUpdatedBy(sApplication.getUpdatedBy());
application.setLastUpdateDate(new Date(sApplication.getLastUpdateDate()));
application.setState(sApplication.getState());
application.setIconPath(sApplication.getIconPath());
application.setHomePageId(sApplication.getHomePageId());
application.setProfileId(sApplication.getProfileId());
return application;
}
public List toApplication(final List sApplications) {
final List applications = new ArrayList<>(sApplications.size());
for (final SApplication sApplication : sApplications) {
applications.add(toApplication(sApplication));
}
return applications;
}
public EntityUpdateDescriptor toApplicationUpdateDescriptor(final ApplicationUpdater updater,
final long updaterUserId) {
final SApplicationUpdateBuilder builder = BuilderFactory.get(SApplicationUpdateBuilderFactory.class)
.createNewInstance(updaterUserId);
updateFields(updater, builder);
return builder.done();
}
protected void updateFields(final ApplicationUpdater updater, final SApplicationUpdateBuilder builder) {
for (final Entry entry : updater.getFields().entrySet()) {
switch (entry.getKey()) {
case TOKEN:
builder.updateToken((String) entry.getValue());
break;
case DESCRIPTION:
builder.updateDescription((String) entry.getValue());
break;
case DISPLAY_NAME:
builder.updateDisplayName((String) entry.getValue());
break;
case ICON_PATH:
builder.updateIconPath((String) entry.getValue());
break;
case PROFILE_ID:
builder.updateProfileId((Long) entry.getValue());
break;
case STATE:
builder.updateState((String) entry.getValue());
break;
case VERSION:
builder.updateVersion((String) entry.getValue());
break;
case HOME_PAGE_ID:
builder.updateHomePageId((Long) entry.getValue());
break;
default:
break;
}
}
}
}