mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-17 00:04:02 -04:00
Fix the mandatory OnlineResource
This commit is contained in:
parent
2346f59f56
commit
9d9e94e6b9
@ -195,7 +195,7 @@ namespace QgsWms
|
||||
doc.appendChild( wmsCapabilitiesElement );
|
||||
|
||||
//INSERT Service
|
||||
wmsCapabilitiesElement.appendChild( getServiceElement( doc, project, version ) );
|
||||
wmsCapabilitiesElement.appendChild( getServiceElement( doc, project, version, request ) );
|
||||
|
||||
//wms:Capability element
|
||||
QDomElement capabilityElement = getCapabilityElement( doc, project, version, request, projectSettings );
|
||||
@ -222,7 +222,8 @@ namespace QgsWms
|
||||
return doc;
|
||||
}
|
||||
|
||||
QDomElement getServiceElement( QDomDocument &doc, const QgsProject *project, const QString &version )
|
||||
QDomElement getServiceElement( QDomDocument &doc, const QgsProject *project, const QString &version,
|
||||
const QgsServerRequest &request )
|
||||
{
|
||||
bool sia2045 = QgsServerProjectUtils::wmsInfoFormatSia2045( *project );
|
||||
|
||||
@ -283,14 +284,15 @@ namespace QgsWms
|
||||
}
|
||||
|
||||
QString onlineResource = QgsServerProjectUtils::owsServiceOnlineResource( *project );
|
||||
if ( !onlineResource.isEmpty() )
|
||||
if ( onlineResource.isEmpty() )
|
||||
{
|
||||
QDomElement onlineResourceElem = doc.createElement( QStringLiteral( "OnlineResource" ) );
|
||||
onlineResourceElem.setAttribute( QStringLiteral( "xmlns:xlink" ), QStringLiteral( "http://www.w3.org/1999/xlink" ) );
|
||||
onlineResourceElem.setAttribute( QStringLiteral( "xlink:type" ), QStringLiteral( "simple" ) );
|
||||
onlineResourceElem.setAttribute( QStringLiteral( "xlink:href" ), onlineResource );
|
||||
serviceElem.appendChild( onlineResourceElem );
|
||||
onlineResource = serviceUrl( request, project ).toString();
|
||||
}
|
||||
QDomElement onlineResourceElem = doc.createElement( QStringLiteral( "OnlineResource" ) );
|
||||
onlineResourceElem.setAttribute( QStringLiteral( "xmlns:xlink" ), QStringLiteral( "http://www.w3.org/1999/xlink" ) );
|
||||
onlineResourceElem.setAttribute( QStringLiteral( "xlink:type" ), QStringLiteral( "simple" ) );
|
||||
onlineResourceElem.setAttribute( QStringLiteral( "xlink:href" ), onlineResource );
|
||||
serviceElem.appendChild( onlineResourceElem );
|
||||
|
||||
QString contactPerson = QgsServerProjectUtils::owsServiceContactPerson( *project );
|
||||
QString contactOrganization = QgsServerProjectUtils::owsServiceContactOrganization( *project );
|
||||
|
@ -61,7 +61,8 @@ namespace QgsWms
|
||||
/**
|
||||
* Create Service element for get capabilities document
|
||||
*/
|
||||
QDomElement getServiceElement( QDomDocument &doc, const QgsProject *project, const QString &version );
|
||||
QDomElement getServiceElement( QDomDocument &doc, const QgsProject *project, const QString &version,
|
||||
const QgsServerRequest &request );
|
||||
|
||||
/** Output GetCapabilities response
|
||||
*/
|
||||
|
@ -572,8 +572,7 @@ class TestQgsServerWMS(QgsServerTestBase):
|
||||
|
||||
item_found = False
|
||||
for item in str(r).split("\\n"):
|
||||
if "OnlineResource" in item:
|
||||
self.assertEqual("xlink:href=\"my_wms_advertised_url?" in item, True)
|
||||
if "OnlineResource" in item and "xlink:href=\"my_wms_advertised_url?" in item:
|
||||
item_found = True
|
||||
self.assertTrue(item_found)
|
||||
|
||||
|
@ -10,6 +10,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<KeywordList>
|
||||
<Keyword vocabulary="ISO">infoMapAccessService</Keyword>
|
||||
</KeywordList>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
<ContactInformation>
|
||||
<ContactPersonPrimary>
|
||||
<ContactPerson>Alessandro Pasotti</ContactPerson>
|
||||
|
@ -10,6 +10,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<KeywordList>
|
||||
<Keyword vocabulary="ISO">infoMapAccessService</Keyword>
|
||||
</KeywordList>
|
||||
<OnlineResource xlink:type="simple" xlink:href="?MAP=tests/testdata/qgis_server/test_project_inspire.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
<ContactInformation>
|
||||
<ContactPersonPrimary>
|
||||
<ContactPerson>Alessandro Pasotti</ContactPerson>
|
||||
|
@ -10,6 +10,7 @@ Content-Type: text/xml; charset=utf-8
|
||||
<KeywordList>
|
||||
<Keyword vocabulary="ISO">infoMapAccessService</Keyword>
|
||||
</KeywordList>
|
||||
<OnlineResource xlink:type="simple" xlink:href="https://www.qgis.org/?MAP=tests/testdata/qgis_server/test_project.qgs&" xmlns:xlink="http://www.w3.org/1999/xlink"/>
|
||||
<ContactInformation>
|
||||
<ContactPersonPrimary>
|
||||
<ContactPerson>Alessandro Pasotti</ContactPerson>
|
||||
|
Loading…
x
Reference in New Issue
Block a user