QGIS API Documentation
3.14.0-Pi (9f7028fd23)
|
Go to the documentation of this file.
34 mParams.
load( QUrlQuery(
url ) );
39 static QMetaEnum metaEnum = QMetaEnum::fromType<QgsServerRequest::Method>();
40 return QString( metaEnum.valueToKey(
method ) ).remove( QStringLiteral(
"Method" ) ).toUpper( );
45 return mHeaders.value( name );
51 mHeaders.insert( name, value );
62 mHeaders.remove( name );
87 return mParams.
toMap();
102 mParams.
add( key, value );
103 mUrl.setQuery( mParams.
urlQuery() );
108 const auto value { mParams.
value( key ) };
109 if ( value.isEmpty() )
119 mUrl.setQuery( mParams.
urlQuery() );
126 mParams.
load( QUrlQuery( mUrl ) );
136 if ( !QUrlQuery( mUrl ).hasQueryItem( name ) )
140 return QUrl::fromPercentEncoding( QUrlQuery( mUrl ).queryItemValue( name ).toUtf8() );
QgsServerRequest::Parameters parameters() const
Returns a map of query parameters with keys converted to uppercase.
void setHeader(const QString &name, const QString &value)
Set an header.
QMap< QString, QString > toMap() const
Returns all parameters in a map.
void load(const QUrlQuery &query)
Loads new parameters.
void setOriginalUrl(const QUrl &url)
Set the request original url (the request url as seen by the web server)
QString value(const QString &key) const
Returns the value of a parameter.
void removeHeader(const QString &name)
Remove an header.
void remove(const QString &key)
Removes a parameter.
void removeParameter(const QString &key)
Remove a parameter.
void setMethod(QgsServerRequest::Method method)
Set the request method.
void add(const QString &key, const QString &value)
Adds a parameter.
QgsServerParameters serverParameters() const
Returns parameters.
void setParameter(const QString &key, const QString &value)
Set a parameter.
QgsServerRequest::Method method() const
const QString queryParameter(const QString &name, const QString &defaultValue=QString()) const
Returns the query string parameter with the given name from the request URL, a defaultValue can be sp...
QgsServerRequest()=default
Constructor.
QString header(const QString &name) const
Returns the header value.
QUrl originalUrl() const
Returns the request url as seen by the web server, by default this is equal to the url seen by QGIS s...
virtual QByteArray data() const
Returns post/put data Check for QByteArray::isNull() to check if data is available.
QString parameter(const QString &key, const QString &defaultValue=QString()) const
Gets a parameter value.
QUrlQuery urlQuery() const
Returns a url query with underlying parameters.
Method
HTTP Method (or equivalent) used for the request.
QMap< QString, QString > Headers
QgsServerParameters provides an interface to retrieve and manipulate global parameters received from ...
static QString methodToString(const Method &method)
Returns a string representation of an HTTP request method.
void setUrl(const QUrl &url)
Set the request url.
void clear()
Removes all parameters.
QMap< QString, QString > headers() const
Returns the header map.