Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
org.languagetool.server.LanguageToolHttpHandler Maven / Gradle / Ivy
/* LanguageTool, a natural language style checker
* Copyright (C) 2011 Daniel Naber (http://www.danielnaber.de)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
package org.languagetool.server;
import com.sun.net.httpserver.HttpExchange;
import com.sun.net.httpserver.HttpHandler;
import org.apache.commons.lang3.exception.ExceptionUtils;
import org.apache.commons.lang3.StringUtils;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.annotations.Nullable;
import org.languagetool.ErrorRateTooHighException;
import org.languagetool.tools.StringTools;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.UnsupportedEncodingException;
import java.net.*;
import java.util.*;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.concurrent.TimeoutException;
import static org.languagetool.server.ServerTools.print;
class LanguageToolHttpHandler implements HttpHandler {
private static final String ENCODING = "utf-8";
private final Set allowedIps;
private final RequestLimiter requestLimiter;
private final ErrorRequestLimiter errorRequestLimiter;
private final LinkedBlockingQueue workQueue;
private final TextChecker textCheckerV2;
private final HTTPServerConfig config;
private final RequestCounter reqCounter = new RequestCounter();
LanguageToolHttpHandler(HTTPServerConfig config, Set allowedIps, boolean internal, RequestLimiter requestLimiter, ErrorRequestLimiter errorLimiter, LinkedBlockingQueue workQueue) {
this.config = config;
this.allowedIps = allowedIps;
this.requestLimiter = requestLimiter;
this.errorRequestLimiter = errorLimiter;
this.workQueue = workQueue;
this.textCheckerV2 = new V2TextChecker(config, internal, workQueue, reqCounter);
}
/** @since 2.6 */
void shutdown() {
}
@Override
public void handle(HttpExchange httpExchange) throws IOException {
long startTime = System.currentTimeMillis();
String remoteAddress = null;
Map parameters = new HashMap<>();
int reqId = reqCounter.incrementRequestCount();
boolean incrementHandleCount = false;
try {
URI requestedUri = httpExchange.getRequestURI();
if (requestedUri.getRawPath().startsWith("/v2/")) {
// healthcheck should come before other limit checks (requests per time etc.), to be sure it works:
String pathWithoutVersion = requestedUri.getRawPath().substring("/v2/".length());
if (pathWithoutVersion.equals("healthcheck")) {
if (workQueueFull(httpExchange, "Healthcheck failed: There are currently too many parallel requests.")) {
return;
} else {
String ok = "OK";
httpExchange.getResponseHeaders().set("Content-Type", "text/plain");
httpExchange.sendResponseHeaders(HttpURLConnection.HTTP_OK, ok.getBytes(ENCODING).length);
httpExchange.getResponseBody().write(ok.getBytes(ENCODING));
return;
}
}
}
String referrer = httpExchange.getRequestHeaders().getFirst("Referer");
String origin = httpExchange.getRequestHeaders().getFirst("Origin"); // Referer can be turned off with meta tags, so also check this
for (String ref : config.getBlockedReferrers()) {
String errorMessage = null;
if (ref != null && !ref.isEmpty()) {
if (referrer != null && siteMatches(referrer, ref)) {
errorMessage = "Error: Access with referrer " + referrer + " denied.";
} else if (origin != null && siteMatches(origin, ref)) {
errorMessage = "Error: Access with origin " + origin + " denied.";
}
}
if (errorMessage != null) {
sendError(httpExchange, HttpURLConnection.HTTP_FORBIDDEN, errorMessage);
logError(errorMessage, HttpURLConnection.HTTP_FORBIDDEN, parameters, httpExchange);
return;
}
}
String origAddress = httpExchange.getRemoteAddress().getAddress().getHostAddress();
String realAddressOrNull = getRealRemoteAddressOrNull(httpExchange);
remoteAddress = realAddressOrNull != null ? realAddressOrNull : origAddress;
reqCounter.incrementHandleCount(remoteAddress, reqId);
incrementHandleCount = true;
// According to the Javadoc, "Closing an exchange without consuming all of the request body is
// not an error but may make the underlying TCP connection unusable for following exchanges.",
// so we consume the request now, even before checking for request limits:
parameters = getRequestQuery(httpExchange, requestedUri);
if (requestLimiter != null) {
try {
requestLimiter.checkAccess(remoteAddress, parameters);
} catch (TooManyRequestsException e) {
String errorMessage = "Error: Access from " + remoteAddress + " denied: " + e.getMessage();
int code = HttpURLConnection.HTTP_FORBIDDEN;
sendError(httpExchange, code, errorMessage);
logError(errorMessage, code, parameters, httpExchange);
return;
}
}
if (errorRequestLimiter != null && !errorRequestLimiter.wouldAccessBeOkay(remoteAddress)) {
String textSizeMessage = getTextOrDataSizeMessage(parameters);
String errorMessage = "Error: Access from " + remoteAddress + " denied - too many recent timeouts. " +
textSizeMessage +
" Allowed maximum timeouts: " + errorRequestLimiter.getRequestLimit() +
" per " + errorRequestLimiter.getRequestLimitPeriodInSeconds() + " seconds";
int code = HttpURLConnection.HTTP_FORBIDDEN;
sendError(httpExchange, code, errorMessage);
logError(errorMessage, code, parameters, httpExchange);
return;
}
if (workQueueFull(httpExchange, "Error: There are currently too many parallel requests. Please try again later.")) {
return;
}
if (allowedIps == null || allowedIps.contains(origAddress)) {
if (requestedUri.getRawPath().startsWith("/v2/")) {
ApiV2 apiV2 = new ApiV2(textCheckerV2, config.getAllowOriginUrl());
String pathWithoutVersion = requestedUri.getRawPath().substring("/v2/".length());
apiV2.handleRequest(pathWithoutVersion, httpExchange, parameters, errorRequestLimiter, remoteAddress, config);
} else if (requestedUri.getRawPath().endsWith("/Languages")) {
throw new IllegalArgumentException("You're using an old version of our API that's not supported anymore. Please see https://languagetool.org/http-api/migration.php");
} else if (requestedUri.getRawPath().equals("/")) {
throw new IllegalArgumentException("Missing arguments for LanguageTool API. Please see https://languagetool.org/http-api/swagger-ui/#/default");
} else if (requestedUri.getRawPath().contains("/v2/")) {
throw new IllegalArgumentException("You have '/v2/' in your path, but not at the root. Try an URL like 'http://server/v2/...' ");
} else if (requestedUri.getRawPath().equals("/favicon.ico")) {
sendError(httpExchange, HttpURLConnection.HTTP_NOT_FOUND, "Not found");
} else {
throw new IllegalArgumentException("Seems like you're using an old version of our API that's not supported anymore. Please see https://languagetool.org/http-api/migration.php");
}
} else {
String errorMessage = "Error: Access from " + StringTools.escapeXML(origAddress) + " denied";
sendError(httpExchange, HttpURLConnection.HTTP_FORBIDDEN, errorMessage);
throw new RuntimeException(errorMessage);
}
} catch (Exception e) {
String response;
int errorCode;
boolean textLoggingAllowed = false;
boolean logStacktrace = true;
Throwable rootCause = ExceptionUtils.getRootCause(e);
if (e instanceof TextTooLongException || rootCause instanceof TextTooLongException) {
errorCode = HttpURLConnection.HTTP_ENTITY_TOO_LARGE;
response = e.getMessage();
logStacktrace = false;
} else if (e instanceof ErrorRateTooHighException || rootCause instanceof ErrorRateTooHighException) {
errorCode = HttpURLConnection.HTTP_BAD_REQUEST;
response = ExceptionUtils.getRootCause(e).getMessage();
logStacktrace = false;
} else if (e instanceof AuthException || rootCause instanceof AuthException) {
errorCode = HttpURLConnection.HTTP_FORBIDDEN;
response = e.getMessage();
} else if (e instanceof IllegalArgumentException || rootCause instanceof IllegalArgumentException) {
errorCode = HttpURLConnection.HTTP_BAD_REQUEST;
response = e.getMessage();
} else if (e instanceof TimeoutException || rootCause instanceof TimeoutException) {
errorCode = HttpURLConnection.HTTP_INTERNAL_ERROR;
response = "Checking took longer than " + config.getMaxCheckTimeMillis()/1000.0f + " seconds, which is this server's limit. " +
"Please make sure you have selected the proper language or consider submitting a shorter text.";
} else {
response = "Internal Error: " + e.getMessage();
errorCode = HttpURLConnection.HTTP_INTERNAL_ERROR;
textLoggingAllowed = true;
}
long endTime = System.currentTimeMillis();
logError(remoteAddress, e, errorCode, httpExchange, parameters, textLoggingAllowed, logStacktrace, endTime-startTime);
sendError(httpExchange, errorCode, "Error: " + response);
} finally {
httpExchange.close();
if (incrementHandleCount) {
reqCounter.decrementHandleCount(reqId);
}
}
}
private boolean siteMatches(String referrer, String blockedRef) {
return referrer.startsWith(blockedRef) ||
referrer.startsWith("http://" + blockedRef) || referrer.startsWith("https://" + blockedRef) ||
referrer.startsWith("http://www." + blockedRef) || referrer.startsWith("https://www." + blockedRef);
}
private boolean workQueueFull(HttpExchange httpExchange, String response) throws IOException {
if (config.getMaxWorkQueueSize() != 0 && workQueue.size() > config.getMaxWorkQueueSize()) {
print(response + ", sending code 503. Queue size: " + workQueue.size() + ", maximum size: " + config.getMaxWorkQueueSize() +
", handlers:" + reqCounter.getHandleCount() + ", r:" + reqCounter.getRequestCount());
sendError(httpExchange, HttpURLConnection.HTTP_UNAVAILABLE, "Error: " + response);
return true;
}
return false;
}
@NotNull
private String getTextOrDataSizeMessage(Map parameters) {
String text = parameters.get("text");
if (text != null) {
return "Text size: " + text.length() + ".";
} else {
String data = parameters.get("data");
if (data != null) {
return "Data size: " + data.length() + ".";
}
}
return "";
}
private void logError(String errorMessage, int code, Map params, HttpExchange httpExchange) {
String message = errorMessage + ", sending code " + code + " - useragent: " + params.get("useragent") +
" - HTTP UserAgent: " + getHttpUserAgent(httpExchange) + ", r:" + reqCounter.getRequestCount();
if (params.get("username") != null) {
message += ", user: " + params.get("username");
}
if (params.get("apiKey") != null) {
message += ", apiKey: " + params.get("apiKey");
}
logToDatabase(params, message);
print(message);
}
private void logError(String remoteAddress, Exception e, int errorCode, HttpExchange httpExchange, Map params,
boolean textLoggingAllowed, boolean logStacktrace, long runtimeMillis) {
String message = "An error has occurred: '" + e.getMessage() + "', sending HTTP code " + errorCode + ". ";
message += "Access from " + remoteAddress + ", ";
message += "HTTP user agent: " + getHttpUserAgent(httpExchange) + ", ";
message += "User agent param: " + params.get("useragent") + ", ";
message += "Referrer: " + getHttpReferrer(httpExchange) + ", ";
message += "language: " + params.get("language") + ", ";
message += "h: " + reqCounter.getHandleCount() + ", ";
message += "r: " + reqCounter.getRequestCount() + ", ";
if (params.get("username") != null) {
message += "user: " + params.get("username") + ", ";
}
if (params.get("apiKey") != null) {
message += "apiKey: " + params.get("apiKey") + ", ";
}
message += "time: " + runtimeMillis + ", ";
String text = params.get("text");
if (text != null) {
message += "text length: " + text.length() + ", ";
}
if (logStacktrace) {
message += "Stacktrace follows:";
print(message, System.err);
//noinspection CallToPrintStackTrace
e.printStackTrace();
} else {
message += "(no stacktrace logged)";
print(message, System.err);
}
if (config.isVerbose() && text != null && textLoggingAllowed) {
print("Exception was caused by this text (" + text.length() + " chars, showing up to 500):\n" +
StringUtils.abbreviate(text, 500), System.err);
logToDatabase(params, message + StringUtils.abbreviate(text, 500));
} else {
logToDatabase(params, message);
}
}
private void logToDatabase(Map params, String message) {
DatabaseLogger logger = DatabaseLogger.getInstance();
if (!logger.isLogging()) {
return;
}
DatabaseAccess db = DatabaseAccess.getInstance();
Long server = db.getOrCreateServerId();
Long client = db.getOrCreateClientId(params.get("agent"));
Long user = null;
try {
user = db.getUserId(params.get("username"), params.get("apiKey"));
} catch(IllegalArgumentException | IllegalStateException ignored) {
// invalid username, api key or combination thereof - user stays null
}
logger.log(new DatabaseMiscLogEntry(server, client, user, message));
}
@Nullable
private String getHttpUserAgent(HttpExchange httpExchange) {
return httpExchange.getRequestHeaders().getFirst("User-Agent");
}
@Nullable
private String getHttpReferrer(HttpExchange httpExchange) {
return httpExchange.getRequestHeaders().getFirst("Referer");
}
/**
* A (reverse) proxy can set the 'X-forwarded-for' header so we can see a user's original IP.
* But that's just a common header than can also be set by the client. So we restrict access to this
* server to the load balancer, which should add the header originally with the user's own IP.
*/
@Nullable
private String getRealRemoteAddressOrNull(HttpExchange httpExchange) {
if (config.getTrustXForwardForHeader()) {
List forwardedIpsStr = httpExchange.getRequestHeaders().get("X-forwarded-for");
if (forwardedIpsStr != null && forwardedIpsStr.size() > 0) {
return forwardedIpsStr.get(0);
}
}
return null;
}
private void sendError(HttpExchange httpExchange, int httpReturnCode, String response) throws IOException {
ServerTools.setAllowOrigin(httpExchange, config.getAllowOriginUrl());
httpExchange.sendResponseHeaders(httpReturnCode, response.getBytes(ENCODING).length);
httpExchange.getResponseBody().write(response.getBytes(ENCODING));
}
private Map getRequestQuery(HttpExchange httpExchange, URI requestedUri) throws IOException {
String query;
if ("post".equalsIgnoreCase(httpExchange.getRequestMethod())) {
try (InputStreamReader isr = new InputStreamReader(httpExchange.getRequestBody(), ENCODING)) {
query = readerToString(isr, config.getMaxTextHardLength());
}
} else {
query = requestedUri.getRawQuery();
}
return parseQuery(query, httpExchange);
}
private String readerToString(Reader reader, int maxTextLength) throws IOException {
StringBuilder sb = new StringBuilder();
char[] chars = new char[4000];
while (true) {
int readBytes = reader.read(chars, 0, 4000);
if (readBytes <= 0) {
break;
}
int generousMaxLength = maxTextLength * 3 + 1000; // one character can be encoded as e.g. "%D8", plus space for other parameters
if (generousMaxLength < 0) { // might happen as it can overflow
generousMaxLength = Integer.MAX_VALUE;
}
if (sb.length() > 0 && sb.length() > generousMaxLength) {
// don't stop at maxTextLength as that's the text length, but here also other parameters
// are included (still we need this check here so we don't OOM if someone posts a few hundred MB)...
throw new TextTooLongException("Your text's length exceeds this server's hard limit of " + maxTextLength + " characters.");
}
sb.append(new String(chars, 0, readBytes));
}
return sb.toString();
}
private Map parseQuery(String query, HttpExchange httpExchange) throws UnsupportedEncodingException {
Map parameters = new HashMap<>();
if (query != null) {
Map parameterMap = getParameterMap(query, httpExchange);
parameters.putAll(parameterMap);
}
return parameters;
}
private Map getParameterMap(String query, HttpExchange httpExchange) throws UnsupportedEncodingException {
String[] pairs = query.split("[&]");
Map parameters = new HashMap<>();
for (String pair : pairs) {
int delimPos = pair.indexOf('=');
if (delimPos != -1) {
String param = pair.substring(0, delimPos);
String key = URLDecoder.decode(param, ENCODING);
try {
String value = URLDecoder.decode(pair.substring(delimPos + 1), ENCODING);
parameters.put(key, value);
} catch (IllegalArgumentException e) {
throw new RuntimeException("Could not decode query. Query length: " + query.length() +
" Request method: " + httpExchange.getRequestMethod(), e);
}
}
}
return parameters;
}
}