QGIS/src/server/qgsfcgiserverrequest.cpp
2019-02-15 12:10:24 +01:00

206 lines
5.5 KiB
C++

/***************************************************************************
qgsfcgiserverrequest.cpp
Define response wrapper for fcgi request
-------------------
begin : 2017-01-03
copyright : (C) 2017 by David Marteau
email : david dot marteau at 3liz dot com
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include "qgis.h"
#include "qgsfcgiserverrequest.h"
#include "qgsserverlogger.h"
#include "qgsmessagelog.h"
#include <fcgi_stdio.h>
#include <QDebug>
QgsFcgiServerRequest::QgsFcgiServerRequest()
{
// Get the REQUEST_URI from the environment
QUrl url;
QString uri = getenv( "REQUEST_URI" );
if ( uri.isEmpty() )
{
uri = getenv( "SCRIPT_NAME" );
}
url.setUrl( uri );
// Check if host is defined
if ( url.host().isEmpty() )
{
url.setHost( getenv( "SERVER_NAME" ) );
}
// Port ?
if ( url.port( -1 ) == -1 )
{
QString portString = getenv( "SERVER_PORT" );
if ( !portString.isEmpty() )
{
bool portOk;
int portNumber = portString.toInt( &portOk );
if ( portOk && portNumber != 80 )
{
url.setPort( portNumber );
}
}
}
// scheme
if ( url.scheme().isEmpty() )
{
QString( getenv( "HTTPS" ) ).compare( QLatin1String( "on" ), Qt::CaseInsensitive ) == 0
? url.setScheme( QStringLiteral( "https" ) )
: url.setScheme( QStringLiteral( "http" ) );
}
// Store the URL before the server rewrite that could have been set in QUERY_STRING
setOriginalUrl( url );
// OGC parameters are passed with the query string, which is normally part of
// the REQUEST_URI, we override the query string url in case it is defined
// independently of REQUEST_URI
const char *qs = getenv( "QUERY_STRING" );
if ( qs )
{
url.setQuery( qs );
}
#ifdef QGISDEBUG
qDebug() << "fcgi query string: " << url.query();
#endif
QgsServerRequest::Method method = GetMethod;
// Get method
const char *me = getenv( "REQUEST_METHOD" );
if ( me )
{
if ( strcmp( me, "POST" ) == 0 )
{
method = PostMethod;
}
else if ( strcmp( me, "PUT" ) == 0 )
{
method = PutMethod;
}
else if ( strcmp( me, "DELETE" ) == 0 )
{
method = DeleteMethod;
}
else if ( strcmp( me, "HEAD" ) == 0 )
{
method = HeadMethod;
}
}
if ( method == PostMethod || method == PutMethod )
{
// Get post/put data
readData();
}
setUrl( url );
setMethod( method );
// Output debug infos
Qgis::MessageLevel logLevel = QgsServerLogger::instance()->logLevel();
if ( logLevel <= Qgis::Info )
{
printRequestInfos();
}
}
QByteArray QgsFcgiServerRequest::data() const
{
return mData;
}
// Read post put data
void QgsFcgiServerRequest::readData()
{
// Check if we have CONTENT_LENGTH defined
const char *lengthstr = getenv( "CONTENT_LENGTH" );
if ( lengthstr )
{
bool success = false;
int length = QString( lengthstr ).toInt( &success );
// Note: REQUEST_BODY is not part of CGI standard, and it is not
// normally passed by any CGI web server and it is implemented only
// to allow unit tests to inject a request body and simulate a POST
// request
const char *request_body = getenv( "REQUEST_BODY" );
if ( success && request_body )
{
QString body( request_body );
body.truncate( length );
mData.append( body.toUtf8() );
length = 0;
}
#ifdef QGISDEBUG
qDebug() << "fcgi: reading " << lengthstr << " bytes from " << ( request_body ? "REQUEST_BODY" : "stdin" );
#endif
if ( success )
{
// XXX This not efficient at all !!
for ( int i = 0; i < length; ++i )
{
mData.append( getchar() );
}
}
else
{
QgsMessageLog::logMessage( "fcgi: Failed to parse CONTENT_LENGTH",
QStringLiteral( "Server" ), Qgis::Critical );
mHasError = true;
}
}
else
{
QgsMessageLog::logMessage( "fcgi: No POST data" );
}
}
void QgsFcgiServerRequest::printRequestInfos()
{
QgsMessageLog::logMessage( QStringLiteral( "******************** New request ***************" ), QStringLiteral( "Server" ), Qgis::Info );
const QStringList envVars
{
QStringLiteral( "SERVER_NAME" ),
QStringLiteral( "REQUEST_URI" ),
QStringLiteral( "REMOTE_ADDR" ),
QStringLiteral( "REMOTE_HOST" ),
QStringLiteral( "REMOTE_USER" ),
QStringLiteral( "REMOTE_IDENT" ),
QStringLiteral( "CONTENT_TYPE" ),
QStringLiteral( "AUTH_TYPE" ),
QStringLiteral( "HTTP_USER_AGENT" ),
QStringLiteral( "HTTP_PROXY" ),
QStringLiteral( "NO_PROXY" ),
QStringLiteral( "HTTP_AUTHORIZATION" )
};
for ( const auto &envVar : envVars )
{
if ( getenv( envVar.toStdString().c_str() ) )
{
QgsMessageLog::logMessage( QStringLiteral( "%1: %2" ).arg( envVar ).arg( QString( getenv( envVar.toStdString().c_str() ) ) ), QStringLiteral( "Server" ), Qgis::Info );
}
}
}