org.restheart.mongodb.handlers.sessions.PostSessionHandler 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.sessions;
import com.mongodb.MongoClientException;
import io.undertow.server.HttpServerExchange;
import io.undertow.util.HttpString;
import java.util.UUID;
import org.bson.BsonString;
import org.bson.BsonValue;
import org.restheart.exchange.MongoRequest;
import org.restheart.exchange.MongoResponse;
import org.restheart.handlers.PipelinedHandler;
import org.restheart.mongodb.RHMongoClients;
import org.restheart.mongodb.db.sessions.SessionOptions;
import org.restheart.mongodb.db.sessions.Sid;
import org.restheart.mongodb.utils.MongoURLUtils;
import org.restheart.utils.HttpStatus;
import org.restheart.utils.RepresentationUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import static org.restheart.mongodb.ConnectionChecker.replicaSet;
/**
*
* creates a session with a started transaction
*
* @author Andrea Di Cesare {@literal }
*/
public class PostSessionHandler extends PipelinedHandler {
private static final Logger LOGGER = LoggerFactory.getLogger(PostSessionHandler.class);
/**
* Creates a new instance of PostTxnsHandler
*/
public PostSessionHandler() {
super();
}
/**
*
* @param next
*/
public PostSessionHandler(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;
}
try {
UUID sid = Sid.randomUUID(options(request));
response.getHeaders().add(HttpString.tryFromString("Location"),
RepresentationUtils.getReferenceLink(
MongoURLUtils.getRemappedRequestURL(exchange),
new BsonString(sid.toString())));
response.setContentTypeAsJson();
response.setStatusCode(HttpStatus.SC_CREATED);
} catch (MongoClientException mce) {
LOGGER.error("Error {}", mce.getMessage());
// check if server supports sessions
if (!replicaSet(RHMongoClients.mclient())) {
response.setInError(HttpStatus.SC_BAD_GATEWAY, mce.getMessage());
} else {
throw mce;
}
}
next(exchange);
}
private SessionOptions options(MongoRequest request) {
final BsonValue _content = request.getContent();
// must be an object
if (_content == null || !_content.isDocument()) {
return new SessionOptions();
}
var content = _content.asDocument();
var _ops = content.get("ops");
// must be an object, optional
if (_ops != null
&& _ops.isDocument()
&& _ops.asDocument().containsKey(SessionOptions.CAUSALLY_CONSISTENT_PROP)
&& _ops.asDocument().get(SessionOptions.CAUSALLY_CONSISTENT_PROP).isBoolean()) {
return new SessionOptions(_ops.asDocument()
.get(SessionOptions.CAUSALLY_CONSISTENT_PROP)
.asBoolean()
.getValue());
} else {
return new SessionOptions();
}
}
}