/* * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * * This file is part of Entando Enterprise Edition software. * You can redistribute it and/or modify it * under the terms of the Entando's EULA * * See the file License for the specific language governing permissions * and limitations under the License * * * * Copyright 2013 Entando S.r.l. (http://www.entando.com) All rights reserved. * */ package org.entando.entando.plugins.jpwebdynamicform.aps.system.services.api; import java.util.List; import java.util.Map; import java.util.Properties; import javax.ws.rs.core.Response; import org.entando.entando.aps.system.services.api.IApiErrorCodes; import org.entando.entando.aps.system.services.api.model.ApiException; import org.entando.entando.aps.system.services.api.model.StringApiResponse; import org.entando.entando.aps.system.services.api.server.IResponseBuilder; import org.entando.entando.plugins.jpwebdynamicform.aps.system.services.api.model.JAXBMessageType; import com.agiletec.aps.system.ApsSystemUtils; import com.agiletec.aps.system.common.entity.IEntityManager; import com.agiletec.aps.system.common.entity.IEntityTypesConfigurer; import com.agiletec.aps.system.common.entity.model.EntitySearchFilter; import com.agiletec.aps.system.common.entity.model.IApsEntity; import com.agiletec.aps.system.common.entity.model.attribute.AttributeInterface; import com.agiletec.aps.system.exception.ApsSystemException; import com.agiletec.plugins.jpwebdynamicform.aps.system.services.message.IMessageManager; /** * @author E.Santoboni */ public class ApiMessageTypeInterface { public JAXBMessageType getMessageType(Properties properties) throws ApiException, Throwable { JAXBMessageType jaxbMessageType = null; try { String typeCode = properties.getProperty("typeCode"); IApsEntity masterMessageType = this.getMessageManager().getEntityPrototype(typeCode); if (null == masterMessageType) { throw new ApiException(IApiErrorCodes.API_VALIDATION_ERROR, "Message type with code '" + typeCode + "' does not exist", Response.Status.CONFLICT); } jaxbMessageType = new JAXBMessageType(masterMessageType); } catch (ApiException ae) { throw ae; } catch (Throwable t) { ApsSystemUtils.logThrowable(t, this, "getMessageType"); throw new ApsSystemException("Error extracting message type", t); } return jaxbMessageType; } public StringApiResponse addMessageType(JAXBMessageType jaxbMessageType) throws Throwable { StringApiResponse response = new StringApiResponse(); try { String typeCode = jaxbMessageType.getTypeCode(); IApsEntity masterMessageType = this.getMessageManager().getEntityPrototype(typeCode); if (null != masterMessageType) { throw new ApiException(IApiErrorCodes.API_VALIDATION_ERROR, "Message type with code '" + typeCode + "' already exists", Response.Status.CONFLICT); } if (typeCode == null || typeCode.length() != 3) { throw new ApiException(IApiErrorCodes.API_VALIDATION_ERROR, "Invalid type code - '" + typeCode + "'", Response.Status.CONFLICT); } Map<String, AttributeInterface> attributes = this.getMessageManager().getEntityAttributePrototypes(); IApsEntity messageType = jaxbMessageType.buildEntityType(this.getMessageManager().getEntityClass(), attributes); ((IEntityTypesConfigurer) this.getMessageManager()).addEntityPrototype(messageType); response.setResult(IResponseBuilder.SUCCESS, null); } catch (ApiException ae) { response.addErrors(ae.getErrors()); response.setResult(IResponseBuilder.FAILURE, null); } catch (Throwable t) { ApsSystemUtils.logThrowable(t, this, "addMessageType"); throw new ApsSystemException("Error adding message type", t); } return response; } public StringApiResponse updateMessageType(JAXBMessageType jaxbMessageType) throws Throwable { StringApiResponse response = new StringApiResponse(); try { String typeCode = jaxbMessageType.getTypeCode(); IApsEntity masterMessageType = this.getMessageManager().getEntityPrototype(typeCode); if (null == masterMessageType) { throw new ApiException(IApiErrorCodes.API_VALIDATION_ERROR, "Message type with code '" + typeCode + "' doesn't exist", Response.Status.CONFLICT); } Map<String, AttributeInterface> attributes = this.getMessageManager().getEntityAttributePrototypes(); IApsEntity messageType = jaxbMessageType.buildEntityType(this.getMessageManager().getEntityClass(), attributes); ((IEntityTypesConfigurer) this.getMessageManager()).updateEntityPrototype(messageType); response.setResult(IResponseBuilder.SUCCESS, null); } catch (ApiException ae) { response.addErrors(ae.getErrors()); response.setResult(IResponseBuilder.FAILURE, null); } catch (Throwable t) { ApsSystemUtils.logThrowable(t, this, "updateMessageType"); throw new ApsSystemException("Error updating Message type", t); } return response; } public void deleteMessageType(Properties properties) throws ApiException, Throwable { try { String typeCode = properties.getProperty("typeCode"); IApsEntity masterMessageType = this.getMessageManager().getEntityPrototype(typeCode); if (null == masterMessageType) { throw new ApiException(IApiErrorCodes.API_VALIDATION_ERROR, "Message type with code '" + typeCode + "' doesn't exist", Response.Status.CONFLICT); } EntitySearchFilter filter = new EntitySearchFilter(IEntityManager.ENTITY_TYPE_CODE_FILTER_KEY, false, typeCode, false); List<String> messageIds = this.getMessageManager().searchId(new EntitySearchFilter[]{filter}); if (null != messageIds && !messageIds.isEmpty()) { throw new ApiException(IApiErrorCodes.API_VALIDATION_ERROR, "Message type '" + typeCode + "' are used into " + messageIds.size() + " messages", Response.Status.CONFLICT); } ((IEntityTypesConfigurer) this.getMessageManager()).removeEntityPrototype(typeCode); } catch (ApiException ae) { throw ae; } catch (Throwable t) { ApsSystemUtils.logThrowable(t, this, "deleteMessageType"); throw new ApsSystemException("Error deleting message type", t); } } protected IMessageManager getMessageManager() { return _messageManager; } public void setMessageManager(IMessageManager messageManager) { this._messageManager = messageManager; } private IMessageManager _messageManager; }