use of org.apache.jackrabbit.oak.remote.RemoteSession in project jackrabbit-oak by apache.
the class GetBinaryHandler method handle.
@Override
public void handle(HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException {
RemoteSession session = (RemoteSession) request.getAttribute("session");
if (session == null) {
sendInternalServerError(response, "session not found");
return;
}
String providedBinaryId = readBinaryId(request);
if (providedBinaryId == null) {
sendBadRequest(response, "unable to read the provided binary ID");
return;
}
RemoteBinaryId binaryId = session.readBinaryId(providedBinaryId);
if (binaryId == null) {
sendNotFound(response, "binary ID not found");
return;
}
List<RemoteBinaryFilters> contentRanges = parseRequestRanges(request, session, binaryId);
if (contentRanges == null) {
handleFile(response, session, binaryId);
} else if (contentRanges.size() == 1) {
handleSingleRange(response, session, binaryId, contentRanges.get(0));
} else {
handleMultipleRanges(response, session, binaryId, contentRanges);
}
}
use of org.apache.jackrabbit.oak.remote.RemoteSession in project jackrabbit-oak by apache.
the class GetTreeHandler 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 revision = readRevision(request, session);
if (revision == null) {
sendGone(response, "unable to read the revision");
return;
}
RemoteTree tree = session.readTree(revision, readPath(request), readFilters(request));
if (tree == null) {
sendNotFound(response, singletonMap("Oak-Revision", revision.asString()), "tree not found");
return;
}
response.setStatus(HttpServletResponse.SC_OK);
response.setHeader("Oak-Revision", revision.asString());
response.setContentType("application/json");
ServletOutputStream stream = response.getOutputStream();
JsonGenerator generator = new JsonFactory().createJsonGenerator(stream, JsonEncoding.UTF8);
renderResponse(generator, tree);
generator.flush();
stream.close();
}
use of org.apache.jackrabbit.oak.remote.RemoteSession in project jackrabbit-oak by apache.
the class HeadTreeHandler 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 revision = readRevision(request, session);
if (revision == null) {
sendGone(response, "revision not found");
return;
}
RemoteTree tree = session.readTree(revision, readPath(request), new RemoteTreeFilters());
if (tree == null) {
sendNotFound(response, singletonMap("Oak-Revision", revision.asString()), "tree not found");
return;
}
response.setStatus(HttpServletResponse.SC_OK);
response.setHeader("Oak-Revision", revision.asString());
response.setContentType("application/json");
}
use of org.apache.jackrabbit.oak.remote.RemoteSession 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