Branch data Line data Source code
1 : : /*************************************************************************** 2 : : qgsnetworkcontentfetcher.h 3 : : ------------------- 4 : : begin : July, 2014 5 : : copyright : (C) 2014 by Nyall Dawson 6 : : email : nyall dot dawson at gmail dot com 7 : : 8 : : ***************************************************************************/ 9 : : 10 : : /*************************************************************************** 11 : : * * 12 : : * This program is free software; you can redistribute it and/or modify * 13 : : * it under the terms of the GNU General Public License as published by * 14 : : * the Free Software Foundation; either version 2 of the License, or * 15 : : * (at your option) any later version. * 16 : : * * 17 : : ***************************************************************************/ 18 : : 19 : : 20 : : #ifndef QGSNETWORKCONTENTFETCHER_H 21 : : #define QGSNETWORKCONTENTFETCHER_H 22 : : 23 : : #include <QNetworkReply> 24 : : #include <QUrl> 25 : : 26 : : #include "qgis_core.h" 27 : : 28 : : /** 29 : : * \class QgsNetworkContentFetcher 30 : : * \ingroup core 31 : : * \brief HTTP network content fetcher. A simple method for fetching remote HTTP content 32 : : * and converting the content to standard formats. Url redirects are automatically 33 : : * handled. 34 : : * \see QgsNetworkContentFetcherTask 35 : : * \since QGIS 2.5 36 : : */ 37 : : class CORE_EXPORT QgsNetworkContentFetcher : public QObject 38 : : { 39 : 0 : Q_OBJECT 40 : : 41 : : public: 42 : : 43 : : /** 44 : : * Constructor for QgsNetworkContentFetcher. 45 : : */ 46 : 0 : QgsNetworkContentFetcher() = default; 47 : : 48 : : ~QgsNetworkContentFetcher() override; 49 : : 50 : : /** 51 : : * Fetches content from a remote URL and handles redirects. The finished() 52 : : * signal will be emitted when content has been fetched. 53 : : * \param url URL to fetch 54 : : * \param authcfg optional authentication configuration 55 : : */ 56 : : void fetchContent( const QUrl &url, const QString &authcfg = QString() ); 57 : : 58 : : /** 59 : : * Fetches content using a network \a request and handles redirects. The finished() 60 : : * signal will be emitted when content has been fetched. 61 : : * 62 : : * Optionally, authentication configuration can be set via the \a authcfg argument. 63 : : * 64 : : * \since QGIS 3.2 65 : : */ 66 : : void fetchContent( const QNetworkRequest &request, const QString &authcfg = QString() ); 67 : : 68 : : /** 69 : : * Returns a reference to the network reply 70 : : * \returns QNetworkReply for fetched URL content 71 : : */ 72 : : QNetworkReply *reply(); 73 : : 74 : : /** 75 : : * Returns the fetched content as a string 76 : : * \returns string containing network content 77 : : */ 78 : : QString contentAsString() const; 79 : : 80 : : /** 81 : : * Cancels any ongoing request. 82 : : * \since QGIS 3.2 83 : : */ 84 : : void cancel(); 85 : : 86 : : /** 87 : : * Returns TRUE if the fetching was canceled. 88 : : * 89 : : * \since QGIS 3.10 90 : : */ 91 : : bool wasCanceled() const; 92 : : 93 : : signals: 94 : : 95 : : /** 96 : : * Emitted when content has loaded 97 : : */ 98 : : void finished(); 99 : : 100 : : /** 101 : : * Emitted when data is received. 102 : : * \since QGIS 3.2 103 : : */ 104 : : void downloadProgress( qint64 bytesReceived, qint64 bytesTotal ); 105 : : 106 : : private: 107 : : 108 : : QString mAuthCfg; 109 : 0 : QNetworkReply *mReply = nullptr; 110 : : 111 : 0 : bool mContentLoaded = false; 112 : : 113 : 0 : bool mIsCanceled = false; 114 : : 115 : : /** 116 : : * Tries to create a text codec for decoding html content. Works around bugs in Qt's built in method. 117 : : * \param array input html byte array 118 : : * \returns QTextCodec for html content, if detected 119 : : */ 120 : : QTextCodec *codecForHtml( QByteArray &array ) const; 121 : : 122 : : private slots: 123 : : 124 : : /** 125 : : * Called when fetchUrlContent has finished loading a url. If 126 : : * result is a redirect then the redirect is fetched automatically. 127 : : */ 128 : : void contentLoaded( bool ok = true ); 129 : : 130 : : }; 131 : : 132 : : #endif