1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151
|
/* ============================================================
*
* This file is a part of digiKam project
* https://www.digikam.org
*
* Date : 2005-07-07
* Description : a tool to export images to Flickr web service
*
* Copyright (C) 2005-2009 by Vardhman Jain <vardhman at gmail dot com>
* Copyright (C) 2009-2022 by Gilles Caulier <caulier dot gilles at gmail dot com>
* Copyright (C) 2017-2019 by Maik Qualmann <metzpinguin at gmail dot com>
*
* This program is free software; you can redistribute it
* and/or modify it under the terms of the GNU General
* Public License as published by the Free Software Foundation;
* either version 2, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* ============================================================ */
#ifndef DIGIKAM_FLICKR_TALKER_H
#define DIGIKAM_FLICKR_TALKER_H
// Qt includes
#include <QUrl>
#include <QList>
#include <QPair>
#include <QString>
#include <QObject>
#include <QNetworkReply>
// Local includes
#include "dinfointerface.h"
#include "flickritem.h"
class QProgressDialog;
using namespace Digikam;
namespace DigikamGenericFlickrPlugin
{
class FPhotoInfo;
class FPhotoSet;
class FlickrTalker : public QObject
{
Q_OBJECT
public:
enum State
{
FE_LOGOUT = -1,
FE_LOGIN = 0,
FE_LISTPHOTOSETS,
FE_LISTPHOTOS,
FE_GETPHOTOPROPERTY,
FE_ADDPHOTO,
FE_CREATEPHOTOSET,
FE_ADDPHOTOTOPHOTOSET,
FE_GETMAXSIZE,
FE_SETGEO
};
public:
explicit FlickrTalker(QWidget* const parent, const QString& serviceName,
DInfoInterface* const iface);
~FlickrTalker() override;
void link(const QString& userName);
void unLink();
void removeUserName(const QString& userName);
QString getUserName() const;
QString getUserId() const;
void maxAllowedFileSize();
QString getMaxAllowedFileSize();
void getPhotoProperty(const QString& method, const QStringList& argList);
void cancel();
void listPhotoSets();
void listPhotos(const QString& albumName);
void createPhotoSet(const QString& name,
const QString& title,
const QString& desc,
const QString& primaryPhotoId);
void addPhotoToPhotoSet(const QString& photoId, const QString& photoSetId);
bool addPhoto(const QString& photoPath, const FPhotoInfo& info,
bool original = false, bool rescale = false,
int maxDim = 600, int imageQuality = 85);
void setGeoLocation(const QString& photoId, const QString& lat, const QString& lon);
public:
QProgressDialog* m_authProgressDlg;
QList<FPhotoSet>* m_photoSetsList;
FPhotoSet m_selectedPhotoSet;
Q_SIGNALS:
void signalError(const QString& msg);
void signalBusy(bool val);
void signalAddPhotoSucceeded(const QString&);
void signalAddPhotoSetSucceeded();
void signalListPhotoSetsSucceeded();
void signalListPhotoSetsFailed(QString& msg);
void signalAddPhotoFailed(const QString& msg);
void signalListPhotoSetsFailed(const QString& msg);
void signalLinkingSucceeded();
private:
/*
void parseResponseLogin(const QByteArray& data);
*/
void parseResponseMaxSize(const QByteArray& data);
void parseResponseListPhotoSets(const QByteArray& data);
void parseResponseListPhotos(const QByteArray& data);
void parseResponseCreateAlbum(const QByteArray& data);
void parseResponseAddPhoto(const QByteArray& data);
void parseResponsePhotoProperty(const QByteArray& data);
void parseResponseCreatePhotoSet(const QByteArray& data);
void parseResponseAddPhotoToPhotoSet(const QByteArray& data);
void parseResponseSetGeoLocation(const QByteArray& data);
private Q_SLOTS:
void slotLinkingFailed();
void slotLinkingSucceeded();
void slotCatchUrl(const QUrl& url);
void slotOpenBrowser(const QUrl& url);
void slotError(const QString& msg);
void slotFinished(QNetworkReply* reply);
private:
class Private;
Private* const d;
};
} // namespace DigikamGenericFlickrPlugin
#endif // DIGIKAM_FLICKR_TALKER_H
|