/** * * Copyright * 2009-2015 Jayway Products AB * 2016-2017 Föreningen Sambruk * * Licensed under AGPL, Version 3.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.gnu.org/licenses/agpl.txt * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package se.streamsource.streamflow.client.ui.workspace.cases.general.forms; import eu.medsea.mimeutil.MimeType; import eu.medsea.mimeutil.MimeUtil; import org.qi4j.api.entity.EntityReference; import org.qi4j.api.injection.scope.Service; import org.qi4j.api.injection.scope.Structure; import org.qi4j.api.injection.scope.Uses; import org.qi4j.api.structure.Module; import org.qi4j.api.util.DateFunctions; import org.qi4j.api.value.ValueBuilder; import org.restlet.data.Disposition; import org.restlet.data.Form; import org.restlet.representation.InputRepresentation; import org.restlet.representation.Representation; import org.restlet.resource.ResourceException; import se.streamsource.dci.value.link.LinkValue; import se.streamsource.streamflow.api.workspace.cases.attachment.UpdateAttachmentDTO; import se.streamsource.streamflow.api.workspace.cases.form.AttachmentFieldDTO; import se.streamsource.streamflow.api.workspace.cases.general.FieldValueDTO; import se.streamsource.streamflow.infrastructure.event.domain.DomainEvent; import se.streamsource.streamflow.infrastructure.event.domain.TransactionDomainEvents; import se.streamsource.streamflow.infrastructure.event.domain.source.EventStream; import se.streamsource.streamflow.infrastructure.event.domain.source.TransactionListener; import se.streamsource.streamflow.infrastructure.event.domain.source.helper.EventParameters; import se.streamsource.streamflow.infrastructure.event.domain.source.helper.Events; import java.io.BufferedInputStream; import java.io.File; import java.io.IOException; import java.io.InputStream; import java.util.Date; import static org.qi4j.api.util.Iterables.filter; import static se.streamsource.streamflow.infrastructure.event.domain.source.helper.Events.withNames; public class FormSubmissionWizardPageModel { @Service EventStream eventStream; @Structure Module module; @Uses FormDraftModel model; public void updateField( EntityReference reference, String value ) throws ResourceException { ValueBuilder<FieldValueDTO> builder = module.valueBuilderFactory().newValueBuilder(FieldValueDTO.class); builder.prototype().field().set( reference ); builder.prototype().value().set( value ); model.updateField(builder.newInstance()); } public void createAttachment( final EntityReference field, final File file, InputStream in) throws IOException { Representation input = new InputRepresentation(new BufferedInputStream(in)); Form disposition = new Form(); disposition.set( Disposition.NAME_FILENAME, file.getName() ); disposition.set( Disposition.NAME_SIZE, Long.toString(file.length()) ); disposition.set( Disposition.NAME_CREATION_DATE, DateFunctions.toUtcString( new Date(file.lastModified())) ); input.setDisposition( new Disposition(Disposition.TYPE_NONE, disposition) ); // Update with details once file is uploaded TransactionListener updateListener = new TransactionListener() { public void notifyTransactions( Iterable<TransactionDomainEvents> transactions ) { for (DomainEvent domainEvent : filter( withNames("createdFormAttachment" ), Events.events( transactions ))) { ValueBuilder<UpdateAttachmentDTO> builder = module.valueBuilderFactory().newValueBuilder(UpdateAttachmentDTO.class); builder.prototype().name().set( file.getName() ); builder.prototype().size().set( file.length() ); MimeUtil.registerMimeDetector("eu.medsea.mimeutil.detector.MagicMimeMimeDetector"); MimeType mimeType = MimeUtil.getMostSpecificMimeType( MimeUtil.getMimeTypes( file )); builder.prototype().mimeType().set( mimeType.toString() ); String attachmentId = EventParameters.getParameter( domainEvent, "param1" ); model.updateAttachment(attachmentId, builder.newInstance()); ValueBuilder<AttachmentFieldDTO> valueBuilder = module.valueBuilderFactory().newValueBuilder(AttachmentFieldDTO.class); valueBuilder.prototype().field().set( field ); valueBuilder.prototype().name().set( file.getName() ); valueBuilder.prototype().attachment().set( EntityReference.parseEntityReference( attachmentId ) ); // must update lastModified before new update model.getFormDraftDTO(); model.updateAttachmentField(valueBuilder.newInstance()); } } }; eventStream.registerListener( updateListener ); try { model.createAttachment(input); } finally { eventStream.unregisterListener( updateListener ); } } public String kartagoclientexe(LinkValue link) { return model.kartagoclientexe( link ); } public FormDraftModel getFormDraftModel() { return model; } }