org.restheart.mongodb.handlers.files.PostBucketHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of restheart-mongodb Show documentation
Show all versions of restheart-mongodb Show documentation
RESTHeart MongoDB - MongoDB plugin
/*-
* ========================LICENSE_START=================================
* restheart-mongodb
* %%
* Copyright (C) 2014 - 2024 SoftInstigate
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
* =========================LICENSE_END==================================
*/
package org.restheart.mongodb.handlers.files;
import org.restheart.exchange.MongoRequest;
import org.restheart.exchange.MongoResponse;
import org.restheart.handlers.PipelinedHandler;
import org.restheart.mongodb.db.GridFs;
import org.restheart.mongodb.db.OperationResult;
import org.restheart.mongodb.utils.MongoURLUtils;
import org.restheart.utils.HttpStatus;
import org.restheart.utils.RepresentationUtils;
import io.undertow.server.HttpServerExchange;
import io.undertow.util.HttpString;
/**
*
* @author Maurizio Turatti {@literal }
*/
public class PostBucketHandler extends PipelinedHandler {
private final GridFs gridFs = GridFs.get();
/**
*
*/
public PostBucketHandler() {
this(null);
}
/**
*
* @param next
*/
public PostBucketHandler(PipelinedHandler next) {
super(next);
}
/**
*
* @param exchange
* @throws Exception
*/
@Override
public void handleRequest(HttpServerExchange exchange) throws Exception {
var request = MongoRequest.of(exchange);
var response = MongoResponse.of(exchange);
if (request.isInError()) {
next(exchange);
return;
}
// must be an object
if (!request.getContent().isDocument()) {
response.setInError(HttpStatus.SC_BAD_REQUEST, "data cannot be an array");
next(exchange);
return;
}
var metadata = request.getContent().asDocument();
OperationResult result;
if (request.getFileInputStream() != null) {
result = gridFs.createFile(
request.rsOps(),
request.getDBName(),
request.getCollectionName(),
metadata,
request.getFileInputStream());
} else {
response.setInError(HttpStatus.SC_BAD_REQUEST, "POST file request is in a bad format");
next(exchange);
return;
}
response.setDbOperationResult(result);
// insert the Location handler
response.getHeaders().add(HttpString.tryFromString("Location"),
RepresentationUtils.getReferenceLink(MongoURLUtils.getRemappedRequestURL(exchange), result.getNewId()));
response.setStatusCode(result.getHttpCode());
next(exchange);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy