summaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.repository/src/main/java/org/eclipse/winery/repository/resources/servicetemplates/selfserviceportal/OptionsResource.java
diff options
context:
space:
mode:
Diffstat (limited to 'winery/org.eclipse.winery.repository/src/main/java/org/eclipse/winery/repository/resources/servicetemplates/selfserviceportal/OptionsResource.java')
-rw-r--r--winery/org.eclipse.winery.repository/src/main/java/org/eclipse/winery/repository/resources/servicetemplates/selfserviceportal/OptionsResource.java131
1 files changed, 131 insertions, 0 deletions
diff --git a/winery/org.eclipse.winery.repository/src/main/java/org/eclipse/winery/repository/resources/servicetemplates/selfserviceportal/OptionsResource.java b/winery/org.eclipse.winery.repository/src/main/java/org/eclipse/winery/repository/resources/servicetemplates/selfserviceportal/OptionsResource.java
new file mode 100644
index 0000000..86fa102
--- /dev/null
+++ b/winery/org.eclipse.winery.repository/src/main/java/org/eclipse/winery/repository/resources/servicetemplates/selfserviceportal/OptionsResource.java
@@ -0,0 +1,131 @@
+/*******************************************************************************
+ * Copyright (c) 2012-2013 University of Stuttgart.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * and the Apache License 2.0 which both accompany this distribution,
+ * and are available at http://www.eclipse.org/legal/epl-v10.html
+ * and http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Contributors:
+ * Oliver Kopp - initial API and implementation
+ *******************************************************************************/
+package org.eclipse.winery.repository.resources.servicetemplates.selfserviceportal;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.List;
+
+import javax.ws.rs.Consumes;
+import javax.ws.rs.POST;
+import javax.ws.rs.core.MediaType;
+import javax.ws.rs.core.Response;
+import javax.ws.rs.core.Response.Status;
+
+import org.apache.commons.lang3.StringUtils;
+import org.eclipse.winery.model.selfservice.ApplicationOption;
+import org.eclipse.winery.common.RepositoryFileReference;
+import org.eclipse.winery.repository.Utils;
+import org.eclipse.winery.repository.backend.BackendUtils;
+import org.eclipse.winery.repository.backend.Repository;
+import org.eclipse.winery.repository.datatypes.ids.elements.SelfServiceMetaDataId;
+import org.eclipse.winery.repository.resources._support.collections.withid.EntityWithIdCollectionResource;
+import org.restdoc.annotations.RestDoc;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import com.sun.jersey.api.view.Viewable;
+import com.sun.jersey.core.header.FormDataContentDisposition;
+import com.sun.jersey.multipart.FormDataBodyPart;
+import com.sun.jersey.multipart.FormDataParam;
+
+public class OptionsResource extends EntityWithIdCollectionResource<OptionResource, ApplicationOption> {
+
+ private static final Logger logger = LoggerFactory.getLogger(OptionsResource.class);
+
+
+ public OptionsResource(List<ApplicationOption> list, SelfServicePortalResource res) {
+ super(OptionResource.class, ApplicationOption.class, list, res);
+ }
+
+ @Override
+ public String getId(ApplicationOption entity) {
+ return entity.getId();
+ }
+
+ @Override
+ public Viewable getHTML() {
+ throw new IllegalStateException("Not yet implemented.");
+ }
+
+ @POST
+ @RestDoc(methodDescription = "Adds a new option<p>TODO: @return JSON with .tableData: Array with row data for dataTable</p>")
+ @Consumes(MediaType.MULTIPART_FORM_DATA)
+ // @formatter:off
+ public Response onPost(
+ @FormDataParam("name") String name,
+ @FormDataParam("description") String description,
+ @FormDataParam("planServiceName") String planServiceName,
+ @FormDataParam("planInputMessage") String planInputMessage,
+ @FormDataParam("file") InputStream uploadedInputStream,
+ @FormDataParam("file") FormDataContentDisposition fileDetail,
+ @FormDataParam("file") FormDataBodyPart body
+ ) {
+ // @formatter:on
+ if (StringUtils.isEmpty(name)) {
+ return Response.status(Status.BAD_REQUEST).entity("planName must be given").build();
+ }
+ if (StringUtils.isEmpty(description)) {
+ return Response.status(Status.BAD_REQUEST).entity("description must be given").build();
+ }
+ if (StringUtils.isEmpty(planServiceName)) {
+ return Response.status(Status.BAD_REQUEST).entity("planServiceName must be given").build();
+ }
+ if (StringUtils.isEmpty(planInputMessage)) {
+ return Response.status(Status.BAD_REQUEST).entity("planInputMessage must be given").build();
+ }
+ if (uploadedInputStream == null) {
+ return Response.status(Status.BAD_REQUEST).entity("file has to be provided").build();
+ }
+ ApplicationOption option = new ApplicationOption();
+
+ String id = Utils.createXMLidAsString(name);
+
+ String fileNamePrefix = OptionResource.getFileNamePrefix(id);
+ String iconFileName = fileNamePrefix + OptionResource.ICON_JPG;
+ String planInputMessageFileName = fileNamePrefix + OptionResource.PLAN_INPUT_XML;
+
+ // create option data
+ option.setId(id);
+ option.setName(name);
+ option.setDescription(description);
+ option.setIconUrl(iconFileName);
+ option.setPlanInputMessageUrl(planInputMessageFileName);
+ option.setPlanServiceName(planServiceName);
+
+ // BEGIN: store icon and planInputMessage
+
+ SelfServiceMetaDataId ssmdId = ((SelfServicePortalResource) this.res).getId();
+
+ RepositoryFileReference iconRef = new RepositoryFileReference(ssmdId, iconFileName);
+ try {
+ Repository.INSTANCE.putContentToFile(iconRef, uploadedInputStream, body.getMediaType());
+ } catch (IOException e) {
+ OptionsResource.logger.error(e.getMessage(), e);
+ return Response.serverError().entity(e.getMessage()).build();
+ }
+
+ RepositoryFileReference planInputMessageRef = new RepositoryFileReference(ssmdId, planInputMessageFileName);
+ try {
+ Repository.INSTANCE.putContentToFile(planInputMessageRef, planInputMessage, MediaType.TEXT_XML_TYPE);
+ } catch (IOException e) {
+ OptionsResource.logger.error(e.getMessage(), e);
+ return Response.serverError().entity(e.getMessage()).build();
+ }
+
+ // END: store icon and planInputMessage
+
+ this.list.add(option);
+ Response response = BackendUtils.persist(this.res);
+ return response;
+ }
+}