org.restheart.mongodb.handlers.sessions.GetTxnHandler 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 java.util.UUID;
import org.bson.BsonDocument;
import org.bson.BsonInt32;
import org.bson.BsonInt64;
import org.bson.BsonNull;
import org.bson.BsonString;
import org.restheart.exchange.MongoRequest;
import org.restheart.exchange.MongoResponse;
import org.restheart.handlers.PipelinedHandler;
import static org.restheart.mongodb.db.sessions.Txn.TransactionStatus.NONE;
import org.restheart.mongodb.db.sessions.TxnsUtils;
import org.restheart.utils.HttpStatus;
import io.undertow.server.HttpServerExchange;
/**
*
* commits the transaction of the session
*
* @author Andrea Di Cesare {@literal }
*/
public class GetTxnHandler extends PipelinedHandler {
/**
*
* @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;
}
String _sid = request.getSid();
UUID sid;
try {
sid = UUID.fromString(_sid);
} catch (IllegalArgumentException iae) {
response.setInError(HttpStatus.SC_BAD_REQUEST, "Invalid session id");
next(exchange);
return;
}
var txn = TxnsUtils.getTxnServerStatus(sid, request.rsOps());
if (txn.getStatus() == NONE) {
response.setContent(new BsonDocument("currentTxn", new BsonNull()));
} else {
var currentTxn = new BsonDocument();
var resp = new BsonDocument("currentTxn", currentTxn);
currentTxn.append("id",
txn.getTxnId() > Integer.MAX_VALUE
? new BsonInt64(txn.getTxnId())
: new BsonInt32((int) txn.getTxnId()));
currentTxn.append("status", new BsonString(txn.getStatus().name()));
response.setContent(resp);
}
response.setContentTypeAsJson();
response.setStatusCode(HttpStatus.SC_OK);
next(exchange);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy