digiKam
vkontakte_albumlistjob.h
Go to the documentation of this file.
1 /* ============================================================
2  *
3  * This file is a part of digiKam project
4  * https://www.digikam.org
5  *
6  * Date : 2011-02-19
7  * Description : a tool to export images to VKontakte web service
8  *
9  * Copyright (C) 2011-2015 by Alexander Potashev <aspotashev at gmail dot com>
10  * Copyright (C) 2011-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
11  *
12  * This program is free software; you can redistribute it
13  * and/or modify it under the terms of the GNU General
14  * Public License as published by the Free Software Foundation;
15  * either version 2, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20  * GNU General Public License for more details.
21  *
22  * ============================================================ */
23 
24 #ifndef DIGIKAM_VKONTAKTE_ALBUMLISTJOB_H
25 #define DIGIKAM_VKONTAKTE_ALBUMLISTJOB_H
26 
27 // Local includes
28 
29 #include "vkontakte_jobs.h"
30 #include "vkontakte_albuminfo.h"
31 
32 namespace Vkontakte
33 {
34 
35 // https://vk.com/dev/photos.getAlbums
36 class AlbumListJob : public VkontakteJob
37 {
38  Q_OBJECT
39 
40 public:
41 
42  explicit AlbumListJob(const QString& accessToken, int uid = -1, const QList<int>& aids = QList<int>());
43  ~AlbumListJob() override;
44 
45  QList<AlbumInfo> list() const;
46 
47 protected:
48 
49  void handleData(const QJsonValue& data) override;
50  void handleItem(const QVariant& data);
51 
52 private:
53 
54  // Disable
55  AlbumListJob(QObject*) = delete;
56 
57 private:
58 
59  class Private;
60  Private* const d;
61 };
62 
63 } // namespace Vkontakte
64 
65 #endif // DIGIKAM_VKONTAKTE_ALBUMLISTJOB_H