Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsgeonodeconnection.cpp 3 : : --------------------- 4 : : begin : Feb 2017 5 : : copyright : (C) 2017 by Muhammad Yarjuna Rohmat, Ismail Sunni 6 : : email : rohmat at kartoza dot com, ismail at kartoza dot com 7 : : *************************************************************************** 8 : : * * 9 : : * This program is free software; you can redistribute it and/or modify * 10 : : * it under the terms of the GNU General Public License as published by * 11 : : * the Free Software Foundation; either version 2 of the License, or * 12 : : * (at your option) any later version. * 13 : : * * 14 : : ***************************************************************************/ 15 : : 16 : : #include "qgssettings.h" 17 : : #include "qgsgeonodeconnection.h" 18 : : #include "qgslogger.h" 19 : : #include "qgsdatasourceuri.h" 20 : : #include "qgsowsconnection.h" 21 : : 22 : 10 : const QString QgsGeoNodeConnectionUtils::sPathGeoNodeConnection = QStringLiteral( "qgis/connections-geonode" ); 23 : 10 : const QString QgsGeoNodeConnectionUtils::sPathGeoNodeConnectionDetails = QStringLiteral( "qgis/GeoNode" ); 24 : : 25 : 0 : QgsGeoNodeConnection::QgsGeoNodeConnection( const QString &name ) 26 : 0 : : mConnName( name ) 27 : : { 28 : 0 : QgsSettings settings; 29 : : 30 : : // settings.Section 31 : 0 : QString key = settingsKey(); 32 : 0 : QString credentialsKey = QgsGeoNodeConnectionUtils::pathGeoNodeConnectionDetails() + QStringLiteral( "/" ) + mConnName; 33 : : 34 : 0 : mUri.setParam( QStringLiteral( "url" ), settings.value( key + QStringLiteral( "/url" ), QString() ).toString() ); 35 : : 36 : : // Check for credentials and prepend to the connection info 37 : 0 : QString username = settings.value( credentialsKey + QStringLiteral( "/username" ), QString() ).toString(); 38 : 0 : QString password = settings.value( credentialsKey + QStringLiteral( "/password" ), QString() ).toString(); 39 : 0 : if ( !username.isEmpty() ) 40 : : { 41 : 0 : mUri.setUsername( username ); 42 : 0 : mUri.setPassword( password ); 43 : 0 : } 44 : : 45 : 0 : QString authcfg = settings.value( credentialsKey + QStringLiteral( "/authcfg" ), QString() ).toString(); 46 : 0 : if ( !authcfg.isEmpty() ) 47 : : { 48 : 0 : mUri.setAuthConfigId( authcfg ); 49 : 0 : } 50 : : 51 : 0 : QgsDebugMsgLevel( QStringLiteral( "encodedUri: '%1'." ).arg( QString( mUri.encodedUri() ) ), 4 ); 52 : 0 : } 53 : : 54 : 0 : QgsDataSourceUri QgsGeoNodeConnection::uri() const 55 : : { 56 : 0 : return mUri; 57 : : } 58 : : 59 : 0 : QString QgsGeoNodeConnection::connectionName() const 60 : : { 61 : 0 : return mConnName; 62 : : } 63 : : 64 : 0 : void QgsGeoNodeConnection::setConnectionName( const QString &connName ) 65 : : { 66 : 0 : mConnName = connName; 67 : 0 : } 68 : : 69 : 0 : void QgsGeoNodeConnection::setUri( const QgsDataSourceUri &uri ) 70 : : { 71 : 0 : mUri = uri; 72 : 0 : } 73 : : 74 : 0 : QgsDataSourceUri &QgsGeoNodeConnection::addWmsConnectionSettings( QgsDataSourceUri &uri ) const 75 : : { 76 : 0 : return QgsOwsConnection::addWmsWcsConnectionSettings( uri, settingsKey() + QStringLiteral( "/wms" ) ); 77 : 0 : } 78 : : 79 : 0 : QgsDataSourceUri &QgsGeoNodeConnection::addWfsConnectionSettings( QgsDataSourceUri &uri ) const 80 : : { 81 : 0 : return QgsOwsConnection::addWfsConnectionSettings( uri, settingsKey() + QStringLiteral( "/wfs" ) ); 82 : 0 : } 83 : : 84 : 0 : QString QgsGeoNodeConnection::settingsKey() const 85 : : { 86 : 0 : return QgsGeoNodeConnectionUtils::pathGeoNodeConnection() + QStringLiteral( "/" ) + mConnName; 87 : 0 : } 88 : : 89 : : 90 : : // 91 : : // QgsGeoNodeConnectionUtils 92 : : // 93 : : 94 : : 95 : 0 : QStringList QgsGeoNodeConnectionUtils::connectionList() 96 : : { 97 : 0 : QgsSettings settings; 98 : : // Add Section manually 99 : 0 : settings.beginGroup( QStringLiteral( "qgis/connections-geonode" ) ); 100 : 0 : return settings.childGroups(); 101 : 0 : } 102 : : 103 : 0 : void QgsGeoNodeConnectionUtils::deleteConnection( const QString &name ) 104 : : { 105 : 0 : QgsOwsConnection::deleteConnection( QStringLiteral( "GEONODE" ), name ); 106 : 0 : } 107 : : 108 : 0 : QString QgsGeoNodeConnectionUtils::pathGeoNodeConnection() 109 : : { 110 : 0 : return sPathGeoNodeConnection; 111 : : } 112 : : 113 : 0 : QString QgsGeoNodeConnectionUtils::pathGeoNodeConnectionDetails() 114 : : { 115 : 0 : return sPathGeoNodeConnectionDetails; 116 : : }