/* * (C) Copyright 2006-2011 Nuxeo SA (http://nuxeo.com/) and others. * * Licensed under the Apache License, Version 2.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.apache.org/licenses/LICENSE-2.0 * * 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. * * Contributors: * bstefanescu */ package org.nuxeo.ecm.automation.client.jaxrs.spi; import static org.nuxeo.ecm.automation.client.Constants.CTYPE_REQUEST_NOCHARSET; import static org.nuxeo.ecm.automation.client.Constants.REQUEST_ACCEPT_HEADER; import static org.nuxeo.ecm.automation.client.Constants.HEADER_NX_SCHEMAS; import java.io.IOException; import java.util.HashMap; import java.util.Map; import org.nuxeo.ecm.automation.client.AutomationClient; import org.nuxeo.ecm.automation.client.LoginInfo; import org.nuxeo.ecm.automation.client.OperationRequest; import org.nuxeo.ecm.automation.client.Session; import org.nuxeo.ecm.automation.client.jaxrs.util.MultipartInput; import org.nuxeo.ecm.automation.client.model.Blob; import org.nuxeo.ecm.automation.client.model.Blobs; import org.nuxeo.ecm.automation.client.model.OperationDocumentation; import org.nuxeo.ecm.automation.client.model.OperationInput; /** * @author <a href="mailto:bs@nuxeo.com">Bogdan Stefanescu</a> */ public class DefaultSession implements Session { protected final AbstractAutomationClient client; protected final Connector connector; protected final LoginInfo login; protected String defaultSchemas = null; public DefaultSession(AbstractAutomationClient client, Connector connector, LoginInfo login) { this.client = client; this.connector = connector; this.login = login; } @Override public AutomationClient getClient() { return client; } public Connector getConnector() { return connector; } @Override public LoginInfo getLogin() { return login; } @Override public <T> T getAdapter(Class<T> type) { return client.getAdapter(this, type); } @Override public String getDefaultSchemas() { return defaultSchemas; } @Override public void setDefaultSchemas(String defaultSchemas) { this.defaultSchemas = defaultSchemas; } @Override public Object execute(OperationRequest request) throws IOException { Request req; String content = JsonMarshalling.writeRequest(request); String ctype; Object input = request.getInput(); if (input instanceof OperationInput && ((OperationInput) input).isBinary()) { MultipartInput mpinput = new MultipartInput(); mpinput.setRequest(content); ctype = mpinput.getContentType(); if (input instanceof Blob) { Blob blob = (Blob) input; mpinput.setBlob(blob); } else if (input instanceof Blobs) { mpinput.setBlobs((Blobs) input); } else { throw new IllegalArgumentException("Unsupported binary input object: " + input); } req = new Request(Request.POST, request.getUrl(), mpinput); } else { req = new Request(Request.POST, request.getUrl(), content); ctype = CTYPE_REQUEST_NOCHARSET; } // set headers for (Map.Entry<String, String> entry : request.getHeaders().entrySet()) { req.put(entry.getKey(), entry.getValue()); } req.put("Accept", REQUEST_ACCEPT_HEADER); req.put("Content-Type", ctype); if (req.get(HEADER_NX_SCHEMAS) == null && defaultSchemas != null) { req.put(HEADER_NX_SCHEMAS, defaultSchemas); } return connector.execute(req); } @Override public Blob getFile(String path) throws IOException { Request req = new Request(Request.GET, path); return (Blob) connector.execute(req); } @Override public Blobs getFiles(String path) throws IOException { Request req = new Request(Request.GET, client.getBaseUrl() + path); return (Blobs) connector.execute(req); } @Override public OperationRequest newRequest(String id) { return newRequest(id, new HashMap<String, Object>()); } @Override public OperationRequest newRequest(String id, Map<String, Object> ctx) { OperationDocumentation op = getOperation(id); if (op == null) { throw new IllegalArgumentException("No such operation: " + id); } return new DefaultOperationRequest(this, op, ctx); } @Override public OperationDocumentation getOperation(String id) { return client.getRegistry().getOperation(id); } @Override public Map<String, OperationDocumentation> getOperations() { return client.getRegistry().getOperations(); } @Override public void close() { // do nothing } }