/* Copyright 2011-2014 Red Hat, Inc This file is part of PressGang CCMS. PressGang CCMS 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 3 of the License, or (at your option) any later version. PressGang CCMS 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 PressGang CCMS. If not, see <http://www.gnu.org/licenses/>. */ package org.jboss.pressgang.ccms.server.rest.v1.factory; import javax.enterprise.context.ApplicationScoped; import javax.inject.Inject; import java.util.ArrayList; import java.util.List; import org.jboss.pressgang.ccms.model.LanguageImage; import org.jboss.pressgang.ccms.model.Locale; import org.jboss.pressgang.ccms.model.base.PressGangEntity; import org.jboss.pressgang.ccms.rest.v1.collections.RESTLanguageImageCollectionV1; import org.jboss.pressgang.ccms.rest.v1.collections.items.RESTLanguageImageCollectionItemV1; import org.jboss.pressgang.ccms.rest.v1.entities.RESTLanguageImageV1; import org.jboss.pressgang.ccms.rest.v1.entities.RESTLocaleV1; import org.jboss.pressgang.ccms.rest.v1.entities.base.RESTBaseAuditedEntityV1; import org.jboss.pressgang.ccms.rest.v1.entities.base.RESTBaseEntityV1; import org.jboss.pressgang.ccms.rest.v1.expansion.ExpandDataTrunk; import org.jboss.pressgang.ccms.server.rest.v1.RESTChangeAction; import org.jboss.pressgang.ccms.server.rest.v1.factory.base.RESTEntityCollectionFactory; import org.jboss.pressgang.ccms.server.rest.v1.factory.base.RESTEntityFactory; import org.jboss.pressgang.ccms.server.rest.v1.utils.RESTv1Utilities; import org.jboss.pressgang.ccms.server.utils.EnversUtilities; import org.jboss.resteasy.spi.BadRequestException; @ApplicationScoped public class LanguageImageV1Factory extends RESTEntityFactory<RESTLanguageImageV1, LanguageImage, RESTLanguageImageCollectionV1, RESTLanguageImageCollectionItemV1> { @Inject protected LocaleV1Factory localeFactory; @Inject protected ImageV1Factory imageFactory; @Override public RESTLanguageImageV1 createRESTEntityFromDBEntityInternal(final LanguageImage entity, final String baseUrl, final String dataType, final ExpandDataTrunk expand, final Number revision, final boolean expandParentReferences) { assert entity != null : "Parameter entity can not be null"; assert baseUrl != null : "Parameter baseUrl can not be null"; final RESTLanguageImageV1 retValue = new RESTLanguageImageV1(); final List<String> expandOptions = new ArrayList<String>(); expandOptions.add(RESTLanguageImageV1.IMAGEDATA_NAME); expandOptions.add(RESTLanguageImageV1.IMAGEDATABASE64_NAME); expandOptions.add(RESTLanguageImageV1.THUMBNAIL_NAME); expandOptions.add(RESTBaseAuditedEntityV1.LOG_DETAILS_NAME); if (revision == null) expandOptions.add(RESTBaseAuditedEntityV1.REVISIONS_NAME); retValue.setExpand(expandOptions); retValue.setId(entity.getLanguageImageId()); retValue.setFilename(entity.getOriginalFileName()); retValue.setContentHash(entity.getImageContentHash()); /* potentially large fields need to be expanded manually */ if (expand != null && expand.contains(RESTLanguageImageV1.IMAGEDATA_NAME)) retValue.setImageData(entity.getImageData()); if (expand != null && expand.contains(RESTLanguageImageV1.IMAGEDATABASE64_NAME)) retValue.setImageDataBase64(entity.getImageDataBase64()); if (expand != null && expand.contains(RESTLanguageImageV1.THUMBNAIL_NAME)) retValue.setThumbnail(entity.getThumbnailData()); // LOCALE if (entity.getLocale() != null) { final ExpandDataTrunk childExpand = expand == null ? null: expand.get(RESTLanguageImageV1.LOCALE_NAME); retValue.setLocale(localeFactory.createRESTEntityFromDBEntity(entity.getLocale(), baseUrl, dataType, childExpand, revision)); } /* Set the object references */ if (expandParentReferences && expand != null && expand.contains(RESTLanguageImageV1.IMAGE_NAME) && entity.getImageFile() != null) { retValue.setImage(imageFactory.createRESTEntityFromDBEntity(entity.getImageFile(), baseUrl, dataType, expand.get(RESTLanguageImageV1.IMAGE_NAME), revision)); } // REVISIONS if (revision == null && expand != null && expand.contains(RESTBaseAuditedEntityV1.REVISIONS_NAME)) { retValue.setRevisions(RESTEntityCollectionFactory.create(RESTLanguageImageCollectionV1.class, this, entity, EnversUtilities.getRevisions(entityManager, entity), RESTBaseAuditedEntityV1.REVISIONS_NAME, dataType, expand, baseUrl, entityManager)); } return retValue; } @Override public void collectChangeInformation(final RESTChangeAction<RESTLanguageImageV1> parent, final RESTLanguageImageV1 dataObject) { // ENTITIES if (dataObject.hasParameterSet(RESTLanguageImageV1.LOCALE_NAME)) { collectChangeInformationFromEntity(parent, dataObject.getLocale(), localeFactory, RESTLanguageImageV1.LOCALE_NAME); } } @Override public void syncBaseDetails(final LanguageImage entity, final RESTLanguageImageV1 dataObject) { if (dataObject.hasParameterSet(RESTLanguageImageV1.IMAGEDATA_NAME)) entity.setImageData(dataObject.getImageData()); if (dataObject.hasParameterSet(RESTLanguageImageV1.FILENAME_NAME)) entity.setOriginalFileName(dataObject.getFilename()); } @Override protected void doDeleteChildAction(final LanguageImage entity, final RESTLanguageImageV1 dataObject, final RESTChangeAction<?> action) { final RESTBaseEntityV1<?> restEntity = action.getRESTEntity(); if (restEntity instanceof RESTLocaleV1 || RESTLanguageImageV1.LOCALE_NAME.equals(action.getUniqueId())) { entity.setLocale(null); } } @Override protected PressGangEntity doCreateChildAction(final LanguageImage entity, final RESTLanguageImageV1 dataObject, final RESTChangeAction<?> action) { final RESTBaseEntityV1<?> restEntity = action.getRESTEntity(); final PressGangEntity dbEntity; if (restEntity instanceof RESTLocaleV1) { dbEntity = entityManager.find(Locale.class, restEntity.getId()); if (dbEntity == null) { throw new BadRequestException("No Locale entity was found with the primary key " + restEntity.getId()); } entity.setLocale((Locale) dbEntity); } else { throw new IllegalArgumentException("Item is not a child of LanguageImage"); } return dbEntity; } @Override protected PressGangEntity getChildEntityForAction(final LanguageImage entity, final RESTLanguageImageV1 dataObject, final RESTChangeAction<?> action) { final RESTBaseEntityV1<?> restEntity = action.getRESTEntity(); final PressGangEntity dbEntity; if (restEntity instanceof RESTLocaleV1) { dbEntity = RESTv1Utilities.findEntity(entityManager, entityCache, (RESTLocaleV1) restEntity, Locale.class); if (dbEntity == null) { throw new BadRequestException("No Locale entity was found with the primary key " + restEntity.getId()); } entity.setLocale((Locale) dbEntity); } else { throw new IllegalArgumentException("Item is not a child of LanguageImage"); } return dbEntity; } @Override protected Class<LanguageImage> getDatabaseClass() { return LanguageImage.class; } }