File indexing completed on 2024-05-12 05:09:42

0001 /***************************************************************************
0002     Copyright (C) 2012-2019 Robby Stephenson <robby@periapsis.org>
0003  ***************************************************************************/
0004 
0005 /***************************************************************************
0006  *                                                                         *
0007  *   This program is free software; you can redistribute it and/or         *
0008  *   modify it under the terms of the GNU General Public License as        *
0009  *   published by the Free Software Foundation; either version 2 of        *
0010  *   the License or (at your option) version 3 or any later version        *
0011  *   accepted by the membership of KDE e.V. (or its successor approved     *
0012  *   by the membership of KDE e.V.), which shall act as a proxy            *
0013  *   defined in Section 14 of version 3 of the license.                    *
0014  *                                                                         *
0015  *   This program is distributed in the hope that it will be useful,       *
0016  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
0017  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
0018  *   GNU General Public License for more details.                          *
0019  *                                                                         *
0020  *   You should have received a copy of the GNU General Public License     *
0021  *   along with this program.  If not, see <http://www.gnu.org/licenses/>. *
0022  *                                                                         *
0023  ***************************************************************************/
0024 
0025 #ifndef TELLICO_THEGAMESDBFETCHER_H
0026 #define TELLICO_THEGAMESDBFETCHER_H
0027 
0028 #include "fetcher.h"
0029 #include "configwidget.h"
0030 #include "../datavectors.h"
0031 
0032 #include <QPointer>
0033 
0034 class QLineEdit;
0035 
0036 class KJob;
0037 namespace KIO {
0038   class StoredTransferJob;
0039 }
0040 
0041 class TheGamesDBFetcherTest;
0042 namespace Tellico {
0043   namespace GUI {
0044     class ComboBox;
0045   }
0046 
0047   namespace Fetch {
0048 
0049 /**
0050  * A fetcher for thegamesdb.net
0051  *
0052  * @author Robby Stephenson
0053  */
0054 class TheGamesDBFetcher : public Fetcher {
0055 Q_OBJECT
0056 
0057 friend class ::TheGamesDBFetcherTest;
0058 
0059 public:
0060   /**
0061    */
0062   TheGamesDBFetcher(QObject* parent);
0063   /**
0064    */
0065   virtual ~TheGamesDBFetcher();
0066 
0067   /**
0068    */
0069   virtual QString source() const Q_DECL_OVERRIDE;
0070   virtual bool isSearching() const Q_DECL_OVERRIDE { return m_started; }
0071   virtual void stop() Q_DECL_OVERRIDE;
0072   virtual Data::EntryPtr fetchEntryHook(uint uid) Q_DECL_OVERRIDE;
0073   virtual bool canSearch(FetchKey k) const Q_DECL_OVERRIDE;
0074   virtual Type type() const Q_DECL_OVERRIDE { return TheGamesDB; }
0075   virtual bool canFetch(int type) const Q_DECL_OVERRIDE;
0076   virtual void readConfigHook(const KConfigGroup& config) Q_DECL_OVERRIDE;
0077 
0078   /**
0079    * Returns a widget for modifying the fetcher's config.
0080    */
0081   virtual Fetch::ConfigWidget* configWidget(QWidget* parent) const Q_DECL_OVERRIDE;
0082 
0083   class ConfigWidget : public Fetch::ConfigWidget {
0084   public:
0085     explicit ConfigWidget(QWidget* parent_, const TheGamesDBFetcher* fetcher = nullptr);
0086     virtual void saveConfigHook(KConfigGroup&) Q_DECL_OVERRIDE;
0087     virtual QString preferredName() const Q_DECL_OVERRIDE;
0088 
0089   private:
0090     QLineEdit* m_apiKeyEdit;
0091     GUI::ComboBox* m_imageCombo;
0092   };
0093   friend class ConfigWidget;
0094 
0095   static QString defaultName();
0096   static QString defaultIcon();
0097   static StringHash allOptionalFields();
0098 
0099 private Q_SLOTS:
0100   void slotComplete(KJob* job);
0101   // read all cached data
0102   void loadCachedData();
0103 
0104 private:
0105   virtual void search() Q_DECL_OVERRIDE;
0106   virtual FetchRequest updateRequest(Data::EntryPtr entry) Q_DECL_OVERRIDE;
0107   void populateEntry(Data::EntryPtr entry, const QVariantMap& resultMap);
0108   void readPlatformList(const QVariantMap& platformMap);
0109   void readCoverList(const QVariantMap& platformMap);
0110 
0111   // right now, Tgdb has three data types for which the whole list must be read at once
0112   // caching the platforms in addition, helps the UpdateRequest
0113   enum TgdbDataType { Genre, Publisher, Developer, Platform };
0114   static QString dataFileName(TgdbDataType dataType);
0115 
0116   // update cached data
0117   void updateData(TgdbDataType dataType, const QByteArray& data);
0118   // download data list from Tgdb and update cache
0119   void readDataList(TgdbDataType dataType);
0120   void writeDataList(TgdbDataType dataType, const QByteArray& data);
0121 
0122   enum ImageSize {
0123     SmallImage=0, // small is really the thumb size
0124     MediumImage=1,
0125     LargeImage=2,
0126     NoImage=3
0127   };
0128 
0129   bool m_started;
0130   QString m_apiKey;
0131   ImageSize m_imageSize;
0132 
0133   QHash<uint, Data::EntryPtr> m_entries;
0134   QPointer<KIO::StoredTransferJob> m_job;
0135   QHash<QString, QString> m_covers;
0136   QHash<int, QString> m_genres;
0137   QHash<int, QString> m_publishers;
0138   QHash<int, QString> m_developers;
0139   QHash<int, QString> m_platforms;
0140 };
0141 
0142   } // end namespace
0143 } // end namespace
0144 #endif