Skip to content

Commit

Permalink
[Bugfix][Server] Add WMS SLD parameter support
Browse files Browse the repository at this point in the history
Fixed #19795 QGIS Server 3 / WMS: the SLD parameter support has been removed

To reactivate SLD parameter support, we add a new conversion capability in server parameter `toUrl`. And the capabilty to load the content associted to an URL.

Then if the SLD parameter is defined, the content is loaded and the SLD_BODY is set.
  • Loading branch information
rldhont committed Sep 27, 2018
1 parent 5047571 commit c15f05b
Show file tree
Hide file tree
Showing 8 changed files with 279 additions and 26 deletions.
22 changes: 22 additions & 0 deletions python/server/auto_generated/qgsserverparameters.sip.in
Expand Up @@ -138,6 +138,28 @@ Converts the parameter into a color.
:param ok: True if there's no error during the conversion, false otherwise

:return: A color
%End

QUrl toUrl( bool &ok ) const;
%Docstring
Converts the parameter into an url.

:param ok: True if there's no error during the conversion, false otherwise

:return: An url

.. versionadded:: 3.4
%End

QString loadUrl( bool &ok ) const;
%Docstring
Loads the data associated to the parameter converted into an url.

:param ok: True if there's no error during the load, false otherwise

:return: The content loaded

.. versionadded:: 3.4
%End

static void raiseError( const QString &msg );
Expand Down
14 changes: 0 additions & 14 deletions src/server/qgsrequesthandler.cpp
Expand Up @@ -154,20 +154,6 @@ void QgsRequestHandler::setupParameters()
{
const QgsServerRequest::Parameters parameters = mRequest.parameters();

// SLD
QString value = parameters.value( QStringLiteral( "SLD" ) );
if ( !value.isEmpty() )
{
QgsMessageLog::logMessage( QStringLiteral( "http and ftp methods not supported with Qt5." ) );
}

// SLD_BODY
value = parameters.value( QStringLiteral( "SLD_BODY" ) );
if ( ! value.isEmpty() )
{
mRequest.setParameter( QStringLiteral( "SLD" ), value );
}

//feature info format?
QString infoFormat = parameters.value( QStringLiteral( "INFO_FORMAT" ) );
if ( !infoFormat.isEmpty() )
Expand Down
167 changes: 167 additions & 0 deletions src/server/qgsserverparameters.cpp
Expand Up @@ -17,6 +17,12 @@

#include "qgsserverparameters.h"
#include "qgsserverexception.h"
#include "qgsnetworkaccessmanager.h"
#include "qgsmessagelog.h"
#include <QUrl>
#include <QNetworkReply>
#include <QNetworkRequest>
#include <QTextCodec>

//
// QgsServerParameterDefinition
Expand Down Expand Up @@ -200,6 +206,167 @@ QgsRectangle QgsServerParameterDefinition::toRectangle( bool &ok ) const
return extent;
}

QString QgsServerParameterDefinition::loadUrl( bool &ok ) const
{
ok = true;

// Get URL
QUrl url = toUrl( ok );
if ( !ok )
{
return QString();
}

// Do the request
QNetworkReply *reply = nullptr;
// The following code blocks until the file is downloaded...
// with max redirections fixed to 5
int countRedirections = 0;
QDateTime start = QDateTime::currentDateTime();
while ( 1 )
{
QgsMessageLog::logMessage( QStringLiteral( "Request started [url: %2]" ).arg( url.toString() ) );
QNetworkRequest request( url );
request.setAttribute( QNetworkRequest::CacheLoadControlAttribute, QNetworkRequest::PreferCache );
request.setAttribute( QNetworkRequest::CacheSaveControlAttribute, true );

reply = QgsNetworkAccessManager::instance()->get( request );

// wait until the SLD download finished
while ( !reply->isFinished() )
{
if ( start.secsTo( QDateTime::currentDateTime() ) >= 5 * 60 )
break;
QCoreApplication::processEvents( QEventLoop::ExcludeUserInputEvents, 500 );
}

if ( !reply->isFinished() )
{
ok = false;
break;
}


if ( reply->error() != QNetworkReply::NoError )
{
ok = false;
QgsMessageLog::logMessage( QStringLiteral( "Request failed [error: %1 - url: %2]" ).arg( reply->errorString(), reply->url().toString() ) );
break;
}

QVariant redirect = reply->attribute( QNetworkRequest::RedirectionTargetAttribute );
if ( redirect.isNull() )
{
break;
}

// max redirections
countRedirections++;
if ( countRedirections >= 5 )
{
ok = false;
break;
}

// do a new request to the redirect url
url = redirect.toUrl();
reply->deleteLater();
}

if ( !reply->isFinished() )
{
ok = false;
QgsMessageLog::logMessage( QStringLiteral( "Request timeout [redirections: %1 - url: %2]" ).arg( countRedirections ).arg( mValue.toString() ) );

reply->abort();
reply->deleteLater();

return QString();
}

if ( countRedirections >= 5 )
{
ok = false;
QgsMessageLog::logMessage( QStringLiteral( "Request failed [max redirection raised - url: %1]" ).arg( mValue.toString() ) );

reply->deleteLater();
return QString();
}

QVariant status = reply->attribute( QNetworkRequest::HttpStatusCodeAttribute );
if ( !status.isNull() && status.toInt() >= 400 )
{
ok = false;
QVariant phrase = reply->attribute( QNetworkRequest::HttpReasonPhraseAttribute );
QgsMessageLog::logMessage( QStringLiteral( "Request error [status: %1 - reason phrase: %2] for %3" ).arg( status.toInt() ).arg( phrase.toString(), reply->url().toString() ) );

reply->deleteLater();
return QString();
}

if ( reply->error() != QNetworkReply::NoError )
{
ok = false;

reply->deleteLater();
return QString();
}

// read content
QByteArray ba = reply->readAll();
reply->deleteLater();

ok = ( !ba.isEmpty() );

//QTextCodec::codecForHtml fails to detect "<meta charset="utf-8"/>" type tags
//see https://bugreports.qt.io/browse/QTBUG-41011
//so test for that ourselves

//basic check
QTextCodec *codec = QTextCodec::codecForUtfText( ba, nullptr );
if ( !codec )
{
//check for meta charset tag
QByteArray header = ba.left( 1024 ).toLower();
int pos = header.indexOf( "meta charset=" );
if ( pos != -1 )
{
pos += int( strlen( "meta charset=" ) ) + 1;
int pos2 = header.indexOf( '\"', pos );
QByteArray cs = header.mid( pos, pos2 - pos );
codec = QTextCodec::codecForName( cs );
}
}

if ( !codec )
{
//fallback to QTextCodec::codecForHtml
codec = QTextCodec::codecForHtml( ba, codec );
}

if ( !codec )
{
//no luck, default to utf-8
codec = QTextCodec::codecForName( "UTF-8" );
}

return codec->toUnicode( ba );
}

QUrl QgsServerParameterDefinition::toUrl( bool &ok ) const
{
ok = true;
QUrl val;

if ( !mValue.toString().isEmpty() )
{
val = mValue.toUrl();
}

ok = ( !val.isEmpty() && val.isValid() );
return val;
}

int QgsServerParameterDefinition::toInt( bool &ok ) const
{
ok = true;
Expand Down
16 changes: 16 additions & 0 deletions src/server/qgsserverparameters.h
Expand Up @@ -137,6 +137,22 @@ class SERVER_EXPORT QgsServerParameterDefinition
*/
QColor toColor( bool &ok ) const;

/**
* Converts the parameter into an url.
* \param ok True if there's no error during the conversion, false otherwise
* \returns An url
* \since QGIS 3.4
*/
QUrl toUrl( bool &ok ) const;

/**
* Loads the data associated to the parameter converted into an url.
* \param ok True if there's no error during the load, false otherwise
* \returns The content loaded
* \since QGIS 3.4
*/
QString loadUrl( bool &ok ) const;

/**
* Raises an exception in case of an invalid parameters.
* \param msg The message describing the exception
Expand Down
49 changes: 47 additions & 2 deletions src/server/services/wms/qgswmsparameters.cpp
Expand Up @@ -19,6 +19,7 @@
#include "qgsdatasourceuri.h"
#include "qgsmessagelog.h"
#include <iostream>
#include <QUrl>

namespace QgsWms
{
Expand Down Expand Up @@ -85,6 +86,37 @@ namespace QgsWms
return val;
}

QString QgsWmsParameter::loadUrl() const
{
// Check URL -- it will be used in error messages
const QUrl url = toUrl();

bool ok = false;
const QString content = QgsServerParameterDefinition::loadUrl( ok );

if ( !ok )
{
const QString msg = QString( "%1 request error for %2" ).arg( name( mName ), url.toString() );
QgsMessageLog::logMessage( msg );
QgsServerParameterDefinition::raiseError( msg );
}

return content;
}

QUrl QgsWmsParameter::toUrl() const
{
bool ok = false;
const QUrl url = QgsServerParameterDefinition::toUrl( ok );

if ( !ok )
{
raiseError();
}

return url;
}

QColor QgsWmsParameter::toColor() const
{
bool ok = false;
Expand Down Expand Up @@ -336,6 +368,9 @@ namespace QgsWms
const QgsWmsParameter pSld( QgsWmsParameter::SLD );
save( pSld );

const QgsWmsParameter pSldBody( QgsWmsParameter::SLD_BODY );
save( pSldBody );

const QgsWmsParameter pLayer( QgsWmsParameter::LAYER );
save( pLayer );

Expand Down Expand Up @@ -470,6 +505,16 @@ namespace QgsWms
: QgsWmsParameters()
{
load( parameters.urlQuery() );

const QString sld = mWmsParameters[ QgsWmsParameter::SLD ].toString();
if ( !sld.isEmpty() )
{
const QString sldBody = mWmsParameters[ QgsWmsParameter::SLD ].loadUrl();
if ( !sldBody.isEmpty() )
{
loadParameter( QgsWmsParameter::name( QgsWmsParameter::SLD_BODY ), sldBody );
}
}
}

bool QgsWmsParameters::loadParameter( const QString &key, const QString &value )
Expand Down Expand Up @@ -1159,9 +1204,9 @@ namespace QgsWms
return mWmsParameters[ QgsWmsParameter::WMS_PRECISION ].toInt();
}

QString QgsWmsParameters::sld() const
QString QgsWmsParameters::sldBody() const
{
return mWmsParameters[ QgsWmsParameter::SLD ].toString();
return mWmsParameters[ QgsWmsParameter::SLD_BODY ].toString();
}

QStringList QgsWmsParameters::filters() const
Expand Down
23 changes: 20 additions & 3 deletions src/server/services/wms/qgswmsparameters.h
Expand Up @@ -132,6 +132,7 @@ namespace QgsWms
SYMBOLWIDTH,
OPACITIES,
SLD,
SLD_BODY,
FI_POLYGON_TOLERANCE,
FI_LINE_TOLERANCE,
FI_POINT_TOLERANCE,
Expand Down Expand Up @@ -251,6 +252,22 @@ namespace QgsWms
*/
QColor toColor() const;

/**
* Converts the parameter into an url.
* \returns An url
* \throws QgsBadRequestException Invalid parameter exception
* \since QGIS 3.4
*/
QUrl toUrl() const;

/**
* Loads the data associated to the parameter converted into an url.
* \returns The content loaded
* \throws QgsBadRequestException Invalid parameter exception
* \since QGIS 3.4
*/
QString loadUrl() const;

/**
* Raises an error in case of an invalid conversion.
* \throws QgsBadRequestException Invalid parameter exception
Expand Down Expand Up @@ -377,10 +394,10 @@ namespace QgsWms
QgsRectangle bboxAsRectangle() const;

/**
* Returns SLD if defined or an empty string.
* \returns sld
* Returns SLD_body if defined or an empty string.
* \returns sld body
*/
QString sld() const;
QString sldBody() const;

/**
* Returns the list of feature selection found in SELECTION parameter.
Expand Down

0 comments on commit c15f05b

Please sign in to comment.