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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
|
/* ============================================================
*
* This file is a part of kipi-plugins project
* http://www.kipi-plugins.org
*
* Date : 2007-16-07
* Description : a kipi plugin to export images to Picasa web service
*
* Copyright (C) 2007-2008 by Vardhman Jain <vardhman at gmail dot com>
* Copyright (C) 2008 by Gilles Caulier <caulier dot gilles 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 PICASAWEBTALKER_H
#define PICASAWEBTALKER_H
// Qt includes.
#include <qvaluelist.h>
#include <qobject.h>
#include <qprogressdialog.h>
#include <qmap.h>
// KDE includes.
#include <kurl.h>
#include <kio/jobclasses.h>
namespace KIO
{
class Job;
}
class KURL;
namespace KIPIPicasawebExportPlugin
{
class GAlbum;
class GPhoto;
class FPhotoInfo;
class PicasaWebAlbum;
class PicasawebTalker : public QObject
{
Q_OBJECT
public:
enum State
{
FE_LOGIN = 0,
FE_LISTALBUMS,
FE_ADDTAG,
FE_LISTPHOTOS,
FE_GETPHOTOPROPERTY,
FE_ADDPHOTO,
FE_GETFROB,
FE_CHECKTOKEN,
FE_GETTOKEN,
FE_CREATEALBUM,
FE_GETAUTHORIZED
};
public:
PicasawebTalker(QWidget* parent);
~PicasawebTalker();
QValueList <PicasaWebAlbum> * m_albumsList;
QString getApiSig(QString,QStringList) ;
void addPhotoTag(const QString& photoURI, const QString& tag);
void getToken(const QString& user, const QString& passwd) ;
void checkToken(const QString& token) ;
void authenticate(const QString& token=NULL, const QString& username=NULL, const QString& password=NULL) ;
void getPhotoProperty(const QString& method, const QString& argList) ;
void getHTMLResponseCode(const QString& str);
void listAllAlbums();
void listPhotos( const QString& albumName );
void createAlbum( const QString& albumTitle, const QString& albumDesc, const QString& location,
uint timestamp, const QString& access, const QString& media_keywords, bool isCommentEnabled=true);
bool addPhoto( const QString& photoPath,
FPhotoInfo& info, const QString& albumname,
bool rescale=false, int maxDim=600 , int imageQuality=85 );
QString getUserName();
QString getUserId();
void cancel();
public:
QProgressDialog *authProgressDlg;
signals:
void signalError( const QString& msg );
// void signalLoginFailed( const QString& msg );
void signalBusy( bool val );
void signalAlbums( const QValueList<GAlbum>& albumList );
void signalPhotos( const QValueList<GPhoto>& photoList );
void signalAddPhotoSucceeded( );
void signalGetAlbumsListSucceeded();
void signalGetAlbumsListFailed( const QString& msg );
void signalAddPhotoFailed( const QString& msg );
void signalAuthenticate() ;
void signalTokenObtained(const QString& token);
private:
// void parseResponseLogin(const QByteArray &data);
void parseResponseListAlbums(const QByteArray &data);
void parseResponseListPhotos(const QByteArray &data);
void parseResponseCreateAlbum(const QByteArray &data);
void parseResponseAddPhoto(const QByteArray &data);
void parseResponseAddTag(const QByteArray &data);
void parseResponseGetToken(const QByteArray &data);
void parseResponseCheckToken(const QByteArray &data);
void parseResponsePhotoProperty(const QByteArray &data);
private slots:
void slotError( const QString& msg );
// void slotAuthenticate() ;
void data(KIO::Job *job, const QByteArray &data);
void info(KIO::Job *job, const QString& str);
void slotResult (KIO::Job *job);
private:
int remaining_tags_count;
QWidget* m_parent;
QByteArray m_buffer;
// QString m_cookie;
QString m_apikey;
QString m_secret;
QString m_frob;
QString m_token;
QString m_username;
QString m_password;
QString m_userId;
QMap<QString, QStringList > tags_map;
// KURL m_url;
KIO::Job* m_job;
State m_state;
};
} // namespace KIPIPicasawebExportPlugin
#endif /* PICASAWEBTALKER_H */
|