31#include <QRegularExpression>
35#include "moc_qgsnewsfeedparser.cpp"
37using namespace Qt::StringLiterals;
56 , mBaseUrl( feedUrl.toString() )
67 QUrlQuery query( feedUrl );
74 if ( feedLanguage.isEmpty() )
78 if ( !feedLanguage.isEmpty() && feedLanguage !=
"C"_L1 )
79 query.addQueryItem( u
"lang"_s, feedLanguage.mid( 0, 2 ) );
87 if ( feedUrl.isLocalFile() )
89 query.addQueryItem( u
"lat"_s, QString::number(
static_cast< int >( feedLat ) ) );
90 query.addQueryItem( u
"lon"_s, QString::number(
static_cast< int >( feedLong ) ) );
100 if ( feedUrl.isLocalFile() )
102 if ( !query.toString().isEmpty() )
103 mFeedUrl = QUrl( mFeedUrl.toString() +
'_' + query.toString() );
107 mFeedUrl.setQuery( query );
132 const int beforeSize = mEntries.size();
137 [key, &dismissed](
const Entry &entry ) {
138 if ( entry.key == key )
148 if ( beforeSize == mEntries.size() )
153 sTreeNewsFeedEntries->deleteItem( QString::number( key ), { mFeedKey } );
161 if ( !dismissed.imageUrl.isEmpty() )
164 const QString imagePath = u
"%1/%2.png"_s.arg( previewDir ).arg( key );
165 if ( QFile::exists( imagePath ) )
167 QFile::remove( imagePath );
171 if ( !mBlockSignals )
172 emit entryDismissed( dismissed );
177 const QList< QgsNewsFeedParser::Entry >
entries = mEntries;
196 QNetworkRequest req( mFeedUrl );
199 mFetchStartTime = QDateTime::currentDateTimeUtc().toSecsSinceEpoch();
208 QNetworkReply *reply = task->
reply();
215 if ( reply->error() != QNetworkReply::NoError )
222 QMetaObject::invokeMethod(
this,
"onFetch", Qt::QueuedConnection, Q_ARG( QString, task->
contentAsString() ) );
231void QgsNewsFeedParser::onFetch(
const QString &content )
237 const QVariantList
entries = json.toList();
238 QList< QgsNewsFeedParser::Entry > fetchedEntries;
239 fetchedEntries.reserve(
entries.size() );
240 for (
const QVariant &e :
entries )
243 const QVariantMap entryMap = e.toMap();
244 incomingEntry.key = entryMap.value( u
"pk"_s ).toInt();
245 incomingEntry.title = entryMap.value( u
"title"_s ).toString();
246 incomingEntry.imageUrl = entryMap.value( u
"image"_s ).toString();
247 incomingEntry.content = entryMap.value( u
"content"_s ).toString();
248 incomingEntry.link = entryMap.value( u
"url"_s ).toString();
249 incomingEntry.sticky = entryMap.value( u
"sticky"_s ).toBool();
250 bool hasExpiry =
false;
251 const qlonglong expiry = entryMap.value( u
"publish_to"_s ).toLongLong( &hasExpiry );
253 incomingEntry.expiry.setSecsSinceEpoch( expiry );
255 fetchedEntries.append( incomingEntry );
258 const auto entryIter { std::find_if( mEntries.begin(), mEntries.end(), [incomingEntry](
const QgsNewsFeedParser::Entry &candidate ) { return candidate.key == incomingEntry.key; } ) };
259 const bool entryExists { entryIter != mEntries.end() };
262 if ( hasExpiry && expiry < mFetchStartTime )
267 else if ( entryExists )
269 const bool imageNeedsUpdate = ( entryIter->imageUrl != incomingEntry.imageUrl );
271 if ( imageNeedsUpdate && !entryIter->imageUrl.isEmpty() )
274 const QString imagePath = u
"%1/%2.png"_s.arg( previewDir ).arg( entryIter->key );
275 if ( QFile::exists( imagePath ) )
277 QFile::remove( imagePath );
280 *entryIter = incomingEntry;
281 if ( imageNeedsUpdate && !incomingEntry.imageUrl.isEmpty() )
282 fetchImageForEntry( incomingEntry );
285 storeEntryInSettings( incomingEntry );
289 else if ( !hasExpiry || expiry >= mFetchStartTime )
291 if ( !incomingEntry.imageUrl.isEmpty() )
292 fetchImageForEntry( incomingEntry );
294 mEntries.append( incomingEntry );
295 storeEntryInSettings( incomingEntry );
300 emit
fetched( fetchedEntries );
303void QgsNewsFeedParser::readStoredEntries()
305 QStringList existing;
310 catch ( QgsSettingsException &e )
315 std::sort( existing.begin(), existing.end(), [](
const QString &a,
const QString &b ) { return a.toInt() < b.toInt(); } );
316 mEntries.reserve( existing.size() );
317 for (
const QString &entry : existing )
319 const Entry e = readEntryFromSettings( entry.toInt() );
320 if ( !e.expiry.isValid() || e.expiry > QDateTime::currentDateTime() )
321 mEntries.append( e );
325 mBlockSignals =
true;
327 mBlockSignals =
false;
342 if ( !entry.imageUrl.isEmpty() )
345 const QString imagePath = u
"%1/%2.png"_s.arg( previewDir ).arg( entry.key );
346 if ( QFile::exists( imagePath ) )
348 const QImage img( imagePath );
349 entry.image = QPixmap::fromImage( img );
353 fetchImageForEntry( entry );
366 if ( entry.
expiry.isValid() )
373 QgsNetworkContentFetcher *fetcher =
new QgsNetworkContentFetcher();
375 const auto findIter = std::find_if( mEntries.begin(), mEntries.end(), [entry](
const QgsNewsFeedParser::Entry &candidate ) { return candidate.key == entry.key; } );
376 if ( findIter != mEntries.end() )
378 const int entryIndex =
static_cast< int >( std::distance( mEntries.begin(), findIter ) );
380 QImage img = QImage::fromData( fetcher->
reply()->readAll() );
382 QSize size = img.size();
384 if ( size.width() > 250 )
386 size.setHeight(
static_cast< int >( size.height() *
static_cast< double >( 250 ) / size.width() ) );
387 size.setWidth( 250 );
390 if ( size.height() > 177 )
392 size.setWidth(
static_cast< int >( size.width() *
static_cast< double >( 177 ) / size.height() ) );
393 size.setHeight( 177 );
397 img = img.scaled( size, Qt::IgnoreAspectRatio, Qt::SmoothTransformation );
400 QImage previewImage( size, QImage::Format_ARGB32 );
401 previewImage.fill( Qt::transparent );
402 QPainter previewPainter( &previewImage );
403 previewPainter.setRenderHint( QPainter::Antialiasing,
true );
404 previewPainter.setRenderHint( QPainter::SmoothPixmapTransform,
true );
405 previewPainter.setPen( Qt::NoPen );
406 previewPainter.setBrush( Qt::black );
407 previewPainter.drawRoundedRect( 0, 0, size.width(), size.height(), 8, 8 );
408 previewPainter.setCompositionMode( QPainter::CompositionMode_SourceIn );
409 previewPainter.drawImage( 0, 0, img );
410 previewPainter.end();
414 QDir().mkdir( previewDir );
415 const QString imagePath = u
"%1/%2.png"_s.arg( previewDir ).arg( entry.
key );
416 previewImage.save( imagePath );
418 mEntries[entryIndex].image = QPixmap::fromImage( previewImage );
421 fetcher->deleteLater();
428 static const QRegularExpression sRegexp( u
"[^a-zA-Z0-9]"_s );
429 QString res = baseUrl;
430 res = res.replace( sRegexp, QString() );
QFlags< SettingsOption > SettingsOptions
static const QgsSettingsEntryString * settingsLocaleUserLocale
Settings entry locale user locale.
static QString qgisSettingsDirPath()
Returns the path to the settings directory in user's home dir.
static QgsTaskManager * taskManager()
Returns the application's task manager, used for managing application wide background task handling.
static QVariant parseJson(const std::string &jsonString)
Converts JSON jsonString to a QVariant, in case of parsing error an invalid QVariant is returned and ...
static void logMessage(const QString &message, const QString &tag=QString(), Qgis::MessageLevel level=Qgis::MessageLevel::Warning, bool notifyUser=true, const char *file=__builtin_FILE(), const char *function=__builtin_FUNCTION(), int line=__builtin_LINE(), Qgis::StringFormat format=Qgis::StringFormat::PlainText)
Adds a message to the log instance (and creates it if necessary).
Handles HTTP network content fetching in a background task.
QString contentAsString() const
Returns the fetched content as a string.
void fetched()
Emitted when the network content has been fetched, regardless of whether the fetch was successful or ...
QNetworkReply * reply()
Returns the network reply.
void fetchContent(const QUrl &url, const QString &authcfg=QString(), const QgsHttpHeaders &headers=QgsHttpHeaders())
Fetches content from a remote URL and handles redirects.
void finished()
Emitted when content has loaded.
QNetworkReply * reply()
Returns a reference to the network reply.
Represents a single entry from a news feed.
QString content
HTML content of news entry.
bool sticky
true if entry is "sticky" and should always be shown at the top
QUrl link
Optional URL link for entry.
QString imageUrl
Optional URL for image associated with entry.
QDateTime expiry
Optional auto-expiry time for entry.
int key
Unique entry identifier.
QString title
Entry title.
static QgsSettingsTreeNamedListNode * sTreeNewsFeedEntries
void enabledChanged()
Emitted when the enabled/disabled state of the feed URL associated to the news parser changes.
static const QgsSettingsEntryString * settingsFeedEntryTitle
Q_INVOKABLE void dismissEntry(int key)
Dismisses an entry with matching key.
static const QgsSettingsEntryString * settingsFeedEntryLink
void fetch()
Fetches new entries from the feed's URL.
void fetched(const QList< QgsNewsFeedParser::Entry > &entries)
Emitted when entries have been fetched from the feed.
void isFetchingChanged()
Emitted when the news parser's fetching state changes.
static const QgsSettingsEntryString * settingsFeedEntryImageUrl
static const QgsSettingsEntryDouble * settingsFeedLatitude
QString authcfg() const
Returns the authentication configuration for the parser.
static const QgsSettingsEntryInteger64 * settingsFeedLastFetchTime
QgsNewsFeedParser(const QUrl &feedUrl, const QString &authcfg=QString(), QObject *parent=nullptr)
Constructor for QgsNewsFeedParser, parsing the specified feedUrl.
static const QgsSettingsEntryBool * settingsFeedEntrySticky
Q_INVOKABLE void dismissAll()
Dismisses all current news items.
static const QgsSettingsEntryDouble * settingsFeedLongitude
static const QgsSettingsEntryString * settingsFeedLanguage
static const QgsSettingsEntryString * settingsFeedEntryContent
void entryUpdated(const QgsNewsFeedParser::Entry &entry)
Emitted whenever an existing entry is available from the feed (as a result of a call to fetch()).
static const QgsSettingsEntryVariant * settingsFeedEntryExpiry
static QString keyForFeed(const QString &baseUrl)
Returns the settings key used for a feed with the given baseUrl.
void entryAdded(const QgsNewsFeedParser::Entry &entry)
Emitted whenever a new entry is available from the feed (as a result of a call to fetch()).
void imageFetched(int key, const QPixmap &pixmap)
Emitted when the image attached to the entry with the specified key has been fetched and is now avail...
QList< QgsNewsFeedParser::Entry > entries() const
Returns a list of existing entries in the feed.
void setEnabled(bool enabled)
Sets whether the feed URL associated with the news parser is enabled.
bool setValue(const T &value, const QString &dynamicKeyPart=QString()) const
Set settings value.
A boolean settings entry.
A 64 bits integer (long long) settings entry.
A variant settings entry.
Custom exception class for settings related exceptions.
Stores settings for use within QGIS.
QVariant value(const QString &key, const QVariant &defaultValue=QVariant(), Section section=NoSection) const
Returns the value for setting key.
void setValue(const QString &key, const QVariant &value, QgsSettings::Section section=QgsSettings::NoSection)
Sets the value of setting key to value.
long addTask(QgsTask *task, int priority=0)
Adds a task to the manager.
@ CanCancel
Task can be canceled.
@ CancelWithoutPrompt
Task can be canceled without any users prompts, e.g. when closing a project or QGIS.
@ Silent
Don't show task updates (such as completion/failure messages) as operating-system level notifications...
void setDescription(const QString &description)
Sets the task's description.
QString qgsDoubleToString(double a, int precision=17)
Returns a string representation of a double.
#define QgsDebugError(str)
#define QgsSetRequestInitiatorClass(request, _class)