Skip to content

Commit

Permalink
[BUGFIX][Server] Enhance cleaning propertyname and searching by prope…
Browse files Browse the repository at this point in the history
…rtyname
  • Loading branch information
rldhont committed Apr 3, 2018
1 parent 9a0fee9 commit d48818b
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/server/services/wfs/qgswfsdescribefeaturetype.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ namespace QgsWfs


//xsd:element //xsd:element
QDomElement attElem = doc.createElement( QStringLiteral( "element" )/*xsd:element*/ ); QDomElement attElem = doc.createElement( QStringLiteral( "element" )/*xsd:element*/ );
attElem.setAttribute( QStringLiteral( "name" ), attributeName.replace( ' ', '_' ) ); attElem.setAttribute( QStringLiteral( "name" ), attributeName.replace( ' ', '_' ).replace( cleanTagNameRegExp, QLatin1String( "" ) ) );
QVariant::Type attributeType = fields.at( idx ).type(); QVariant::Type attributeType = fields.at( idx ).type();
if ( attributeType == QVariant::Int ) if ( attributeType == QVariant::Int )
attElem.setAttribute( QStringLiteral( "type" ), QStringLiteral( "integer" ) ); attElem.setAttribute( QStringLiteral( "type" ), QStringLiteral( "integer" ) );
Expand Down
12 changes: 9 additions & 3 deletions src/server/services/wfs/qgswfsgetfeature.cpp
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -250,15 +250,21 @@ namespace QgsWfs
QList<int> idxList; QList<int> idxList;
// build corresponding propertyname // build corresponding propertyname
QList<QString> propertynames; QList<QString> propertynames;
QList<QString> fieldnames;
for ( int idx = 0; idx < fields.count(); ++idx ) for ( int idx = 0; idx < fields.count(); ++idx )
{ {
propertynames.append( fields.field( idx ).name().replace( ' ', '_' ) ); fieldnames.append( fields[idx].name() );
propertynames.append( fields.field( idx ).name().replace( ' ', '_' ).replace( cleanTagNameRegExp, QLatin1String( "" ) ) );
} }
QString fieldName; QString fieldName;
for ( plstIt = propertyList.begin(); plstIt != propertyList.end(); ++plstIt ) for ( plstIt = propertyList.begin(); plstIt != propertyList.end(); ++plstIt )
{ {
fieldName = *plstIt; fieldName = *plstIt;
int fieldNameIdx = propertynames.indexOf( fieldName ); int fieldNameIdx = propertynames.indexOf( fieldName );
if ( fieldNameIdx == -1 )
{
fieldNameIdx = fieldnames.indexOf( fieldName );
}
if ( fieldNameIdx > -1 ) if ( fieldNameIdx > -1 )
{ {
idxList.append( fieldNameIdx ); idxList.append( fieldNameIdx );
Expand Down Expand Up @@ -1319,7 +1325,7 @@ namespace QgsWfs
} }
QString attributeName = fields.at( idx ).name(); QString attributeName = fields.at( idx ).name();


QDomElement fieldElem = doc.createElement( "qgs:" + attributeName.replace( ' ', '_' ) ); QDomElement fieldElem = doc.createElement( "qgs:" + attributeName.replace( ' ', '_' ).replace( cleanTagNameRegExp, QLatin1String( "" ) ) );
QDomText fieldText = doc.createTextNode( featureAttributes[idx].toString() ); QDomText fieldText = doc.createTextNode( featureAttributes[idx].toString() );
fieldElem.appendChild( fieldText ); fieldElem.appendChild( fieldText );
typeNameElement.appendChild( fieldElem ); typeNameElement.appendChild( fieldElem );
Expand Down Expand Up @@ -1416,7 +1422,7 @@ namespace QgsWfs
} }
QString attributeName = fields.at( idx ).name(); QString attributeName = fields.at( idx ).name();


QDomElement fieldElem = doc.createElement( "qgs:" + attributeName.replace( ' ', '_' ) ); QDomElement fieldElem = doc.createElement( "qgs:" + attributeName.replace( ' ', '_' ).replace( cleanTagNameRegExp, QLatin1String( "" ) ) );
QDomText fieldText = doc.createTextNode( featureAttributes[idx].toString() ); QDomText fieldText = doc.createTextNode( featureAttributes[idx].toString() );
fieldElem.appendChild( fieldText ); fieldElem.appendChild( fieldText );
typeNameElement.appendChild( fieldElem ); typeNameElement.appendChild( fieldElem );
Expand Down
3 changes: 3 additions & 0 deletions src/server/services/wfs/qgswfsutils.h
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -58,6 +58,9 @@ namespace QgsWfs
const QString OGC_NAMESPACE = QStringLiteral( "http://www.opengis.net/ogc" ); const QString OGC_NAMESPACE = QStringLiteral( "http://www.opengis.net/ogc" );
const QString QGS_NAMESPACE = QStringLiteral( "http://www.qgis.org/gml" ); const QString QGS_NAMESPACE = QStringLiteral( "http://www.qgis.org/gml" );


// Define clean tagName regExp
const QRegExp cleanTagNameRegExp( "(?![\\w\\d\\.-])." );

} // namespace QgsWfs } // namespace QgsWfs


#endif #endif
Expand Down

0 comments on commit d48818b

Please sign in to comment.