use of org.apache.jackrabbit.oak.remote.RemoteOperation in project jackrabbit-oak by apache.
the class ContentRemoteSession method createAggregateOperation.
@Override
public ContentRemoteOperation createAggregateOperation(final List<RemoteOperation> operations) {
if (operations == null) {
throw new IllegalArgumentException("operations not provided");
}
List<ContentRemoteOperation> contentRemoteOperations = new ArrayList<ContentRemoteOperation>();
for (RemoteOperation operation : operations) {
if (operation == null) {
throw new IllegalArgumentException("operation not provided");
}
ContentRemoteOperation contentRemoteOperation = null;
if (operation instanceof ContentRemoteOperation) {
contentRemoteOperation = (ContentRemoteOperation) operation;
}
if (contentRemoteOperation == null) {
throw new IllegalArgumentException("invalid operation");
}
contentRemoteOperations.add(contentRemoteOperation);
}
return new AggregateContentRemoteOperation(contentRemoteOperations);
}
use of org.apache.jackrabbit.oak.remote.RemoteOperation in project jackrabbit-oak by apache.
the class PatchRevisionHandler method handle.
@Override
public void handle(HttpServletRequest request, HttpServletResponse response) throws IOException {
RemoteSession session = (RemoteSession) request.getAttribute("session");
if (session == null) {
sendInternalServerError(response, "session not found");
return;
}
RemoteRevision base = readRevision(request, session);
if (base == null) {
sendGone(response, "revision not found");
return;
}
RemoteOperation operation;
try {
operation = parseOperations(session, new ObjectMapper().readTree(request.getInputStream()));
} catch (Exception e) {
operation = null;
}
if (operation == null) {
sendBadRequest(response, "unable to parse the list of operations");
return;
}
RemoteRevision revision;
try {
revision = session.commit(base, operation);
} catch (RemoteCommitException e) {
logger.warn("unable to perform the commit", e);
sendBadRequest(response, "commit failed");
return;
}
response.setStatus(HttpServletResponse.SC_CREATED);
response.setContentType("application/json");
ServletOutputStream stream = response.getOutputStream();
JsonGenerator generator = new JsonFactory().createJsonGenerator(stream, JsonEncoding.UTF8);
renderResponse(generator, revision);
generator.flush();
stream.close();
}
Aggregations