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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870 | /* ============================================================
*
* This file is a part of digiKam project
* https://www.digikam.org
*
* Date : 2005-17-06
* Description : a tool to export images to Flickr web service
*
* SPDX-FileCopyrightText: 2005-2008 by Vardhman Jain <vardhman at gmail dot com>
* SPDX-FileCopyrightText: 2008-2025 by Gilles Caulier <caulier dot gilles at gmail dot com>
* SPDX-FileCopyrightText: 2009 by Luka Renko <lure at kubuntu dot org>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*
* ============================================================ */
#include "flickrwindow.h"
// Qt includes
#include <QPushButton>
#include <QProgressDialog>
#include <QPixmap>
#include <QCheckBox>
#include <QStringList>
#include <QSpinBox>
#include <QPointer>
#include <QApplication>
#include <QMenu>
#include <QMessageBox>
#include <QWindow>
// KDE includes
#include <klocalizedstring.h>
#include <ksharedconfig.h>
#include <kconfiggroup.h>
// Local includes
#include "digikam_debug.h"
#include "dprogresswdg.h"
#include "flickrtalker.h"
#include "flickritem.h"
#include "flickrlist.h"
#include "wsselectuserdlg.h"
#include "flickrnewalbumdlg.h"
#include "previewloadthread.h"
#include "flickrwidget_p.h"
namespace DigikamGenericFlickrPlugin
{
class Q_DECL_HIDDEN FlickrWindow::Private
{
public:
Private() = default;
public:
unsigned int uploadCount = 0;
unsigned int uploadTotal = 0;
QString serviceName;
QPushButton* newAlbumBtn = nullptr;
QPushButton* changeUserButton = nullptr;
QPushButton* removeAccount = nullptr;
QComboBox* albumsListComboBox = nullptr;
QCheckBox* publicCheckBox = nullptr;
QCheckBox* familyCheckBox = nullptr;
QCheckBox* friendsCheckBox = nullptr;
QCheckBox* exportHostTagsCheckBox = nullptr;
QCheckBox* stripSpaceTagsCheckBox = nullptr;
QCheckBox* addExtraTagsCheckBox = nullptr;
QCheckBox* originalCheckBox = nullptr;
QCheckBox* resizeCheckBox = nullptr;
QSpinBox* dimensionSpinBox = nullptr;
QSpinBox* imageQualitySpinBox = nullptr;
QPushButton* extendedPublicationButton = nullptr;
QPushButton* extendedTagsButton = nullptr;
WSComboBoxIntermediate* contentTypeComboBox = nullptr;
WSComboBoxIntermediate* safetyLevelComboBox = nullptr;
QString username;
QString userId;
QString lastSelectedAlbum;
QLabel* userNameDisplayLabel = nullptr;
QProgressDialog* authProgressDlg = nullptr;
QList< QPair<QUrl, FPhotoInfo> > uploadQueue;
DTextEdit* tagsLineEdit = nullptr;
FlickrWidget* widget = nullptr;
FlickrTalker* talker = nullptr;
FlickrList* imglst = nullptr;
WSSelectUserDlg* select = nullptr;
FlickrNewAlbumDlg* albumDlg = nullptr;
DInfoInterface* iface = nullptr;
};
FlickrWindow::FlickrWindow(DInfoInterface* const iface,
QWidget* const /*parent*/,
const QString& serviceName)
: WSToolDialog(nullptr, QString::fromLatin1("%1Export Dialog").arg(serviceName)),
d (new Private)
{
d->iface = iface;
d->serviceName = serviceName;
setWindowTitle(i18nc("@title:window", "Export to %1 Web Service", d->serviceName));
setModal(false);
KSharedConfigPtr config = KSharedConfig::openConfig();
KConfigGroup grp = config->group(QString::fromLatin1("%1Export Settings").arg(d->serviceName));
if (grp.exists())
{
qCDebug(DIGIKAM_WEBSERVICES_LOG) << QString::fromLatin1("%1Export Settings").arg(d->serviceName) << " exists, deleting it";
grp.deleteGroup();
}
d->select = new WSSelectUserDlg(nullptr, serviceName);
d->uploadCount = 0;
d->uploadTotal = 0;
d->widget = new FlickrWidget(this, iface, serviceName);
d->albumDlg = new FlickrNewAlbumDlg(this, QLatin1String("Flickr"));
d->albumsListComboBox = d->widget->getAlbumsCoB();
d->newAlbumBtn = d->widget->getNewAlbmBtn();
d->originalCheckBox = d->widget->getOriginalCheckBox();
d->resizeCheckBox = d->widget->getResizeCheckBox();
d->publicCheckBox = d->widget->d->publicCheckBox;
d->familyCheckBox = d->widget->d->familyCheckBox;
d->friendsCheckBox = d->widget->d->friendsCheckBox;
d->dimensionSpinBox = d->widget->getDimensionSpB();
d->imageQualitySpinBox = d->widget->getImgQualitySpB();
d->extendedTagsButton = d->widget->d->extendedTagsButton;
d->addExtraTagsCheckBox = d->widget->d->addExtraTagsCheckBox;
d->extendedPublicationButton = d->widget->d->extendedPublicationButton;
d->safetyLevelComboBox = d->widget->d->safetyLevelComboBox;
d->contentTypeComboBox = d->widget->d->contentTypeComboBox;
d->tagsLineEdit = d->widget->d->tagsLineEdit;
d->exportHostTagsCheckBox = d->widget->d->exportHostTagsCheckBox;
d->stripSpaceTagsCheckBox = d->widget->d->stripSpaceTagsCheckBox;
d->changeUserButton = d->widget->getChangeUserBtn();
d->removeAccount = d->widget->d->removeAccount;
d->userNameDisplayLabel = d->widget->getUserNameLabel();
d->imglst = d->widget->d->imglst;
startButton()->setText(i18nc("@action:button", "Start Uploading"));
startButton()->setToolTip(QString());
setMainWidget(d->widget);
d->widget->setMinimumSize(800, 600);
connect(d->imglst, SIGNAL(signalImageListChanged()),
this, SLOT(slotImageListChanged()));
// --------------------------------------------------------------------------
d->talker = new FlickrTalker(this, serviceName, d->iface);
connect(d->talker, SIGNAL(signalError(QString)),
d->talker, SLOT(slotError(QString)));
connect(d->talker, SIGNAL(signalBusy(bool)),
this, SLOT(slotBusy(bool)));
connect(d->talker, SIGNAL(signalAddPhotoSucceeded(QString)),
this, SLOT(slotAddPhotoSucceeded(QString)));
connect(d->talker, SIGNAL(signalAddPhotoFailed(QString)),
this, SLOT(slotAddPhotoFailed(QString)));
connect(d->talker, SIGNAL(signalAddPhotoSetSucceeded()),
this, SLOT(slotAddPhotoSetSucceeded()));
connect(d->talker, SIGNAL(signalListPhotoSetsSucceeded()),
this, SLOT(slotPopulatePhotoSetComboBox()));
connect(d->talker, SIGNAL(signalListPhotoSetsFailed(QString)),
this, SLOT(slotListPhotoSetsFailed(QString)));
connect(d->talker, SIGNAL(signalLinkingSucceeded()),
this, SLOT(slotLinkingSucceeded()));
connect(d->widget->progressBar(), SIGNAL(signalProgressCanceled()),
this, SLOT(slotAddPhotoCancelAndClose()));
connect(d->widget->getReloadBtn(), SIGNAL(clicked()),
this, SLOT(slotReloadPhotoSetRequest()));
// --------------------------------------------------------------------------
connect(d->changeUserButton, SIGNAL(clicked()),
this, SLOT(slotUserChangeRequest()));
connect(d->removeAccount, SIGNAL(clicked()),
this, SLOT(slotRemoveAccount()));
connect(d->newAlbumBtn, SIGNAL(clicked()),
this, SLOT(slotCreateNewPhotoSet()));
// --------------------------------------------------------------------------
d->authProgressDlg = new QProgressDialog(this);
d->authProgressDlg->setModal(true);
d->authProgressDlg->setAutoReset(true);
d->authProgressDlg->setAutoClose(true);
d->authProgressDlg->setMaximum(0);
d->authProgressDlg->reset();
connect(d->authProgressDlg, SIGNAL(canceled()),
this, SLOT(slotAuthCancel()));
d->talker->m_authProgressDlg = d->authProgressDlg;
// --------------------------------------------------------------------------
connect(this, &QDialog::finished,
this, &FlickrWindow::slotFinished);
connect(this, SIGNAL(cancelClicked()),
this, SLOT(slotCancelClicked()));
connect(startButton(), &QPushButton::clicked,
this, &FlickrWindow::slotUser1);
d->select->reactivate();
readSettings(d->select->getUserName());
d->talker->link(d->select->getUserName());
}
FlickrWindow::~FlickrWindow()
{
delete d->select;
delete d->authProgressDlg;
delete d->talker;
delete d->widget;
delete d;
}
void FlickrWindow::setItemsList(const QList<QUrl>& urls)
{
d->widget->imagesList()->slotAddImages(urls);
}
void FlickrWindow::closeEvent(QCloseEvent* e)
{
if (!e)
{
return;
}
slotFinished();
e->accept();
}
void FlickrWindow::slotFinished()
{
writeSettings();
d->imglst->listView()->clear();
}
void FlickrWindow::setUiInProgressState(bool inProgress)
{
setRejectButtonMode(inProgress ? QDialogButtonBox::Cancel : QDialogButtonBox::Close);
if (inProgress)
{
d->widget->progressBar()->show();
}
else
{
d->widget->progressBar()->hide();
d->widget->progressBar()->progressCompleted();
}
}
void FlickrWindow::slotCancelClicked()
{
d->talker->cancel();
d->uploadQueue.clear();
setUiInProgressState(false);
}
void FlickrWindow::slotAddPhotoCancelAndClose()
{
writeSettings();
d->imglst->listView()->clear();
d->uploadQueue.clear();
d->widget->progressBar()->reset();
setUiInProgressState(false);
d->talker->cancel();
reject();
}
void FlickrWindow::reactivate()
{
d->userNameDisplayLabel->setText(QString());
readSettings(d->select->getUserName());
d->talker->link(d->select->getUserName());
d->widget->d->imglst->loadImagesFromCurrentSelection();
show();
}
void FlickrWindow::readSettings(const QString& uname)
{
KSharedConfigPtr config = KSharedConfig::openConfig();
QString groupName = QString::fromLatin1("%1%2Export Settings").arg(d->serviceName, uname);
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Group name is:" << groupName;
KConfigGroup grp = config->group(groupName);
d->exportHostTagsCheckBox->setChecked(grp.readEntry("Export Host Tags", false));
d->extendedTagsButton->setChecked(grp.readEntry("Show Extended Tag Options", false));
d->addExtraTagsCheckBox->setChecked(grp.readEntry("Add Extra Tags", false));
d->stripSpaceTagsCheckBox->setChecked(grp.readEntry("Strip Space From Tags", false));
d->publicCheckBox->setChecked(grp.readEntry("Public Sharing", false));
d->familyCheckBox->setChecked(grp.readEntry("Family Sharing", false));
d->friendsCheckBox->setChecked(grp.readEntry("Friends Sharing", false));
d->extendedPublicationButton->setChecked(grp.readEntry("Show Extended Publication Options", false));
int safetyLevel = d->safetyLevelComboBox->findData(QVariant(grp.readEntry("Safety Level", 0)));
if (safetyLevel == -1)
{
safetyLevel = 0;
}
d->safetyLevelComboBox->setCurrentIndex(safetyLevel);
int contentType = d->contentTypeComboBox->findData(QVariant(grp.readEntry("Content Type", 0)));
if (contentType == -1)
{
contentType = 0;
}
d->contentTypeComboBox->setCurrentIndex(contentType);
d->originalCheckBox->setChecked(grp.readEntry("Upload Original", false));
d->resizeCheckBox->setChecked(grp.readEntry("Resize", false));
d->dimensionSpinBox->setValue(grp.readEntry("Maximum Width", 1600));
d->imageQualitySpinBox->setValue(grp.readEntry("Image Quality", 85));
}
void FlickrWindow::writeSettings()
{
KSharedConfigPtr config = KSharedConfig::openConfig();
QString groupName = QString::fromLatin1("%1%2Export Settings").arg(d->serviceName, d->username);
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Group name is:" << groupName;
if (QString::compare(QString::fromLatin1("%1Export Settings").arg(d->serviceName), groupName) == 0)
{
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Not writing entry of group" << groupName;
return;
}
KConfigGroup grp = config->group(groupName);
grp.writeEntry("username", d->username);
grp.writeEntry("Export Host Tags", d->exportHostTagsCheckBox->isChecked());
grp.writeEntry("Show Extended Tag Options", d->extendedTagsButton->isChecked());
grp.writeEntry("Add Extra Tags", d->addExtraTagsCheckBox->isChecked());
grp.writeEntry("Strip Space From Tags", d->stripSpaceTagsCheckBox->isChecked());
grp.writeEntry("Public Sharing", d->publicCheckBox->isChecked());
grp.writeEntry("Family Sharing", d->familyCheckBox->isChecked());
grp.writeEntry("Friends Sharing", d->friendsCheckBox->isChecked());
grp.writeEntry("Show Extended Publication Options", d->extendedPublicationButton->isChecked());
int safetyLevel = d->safetyLevelComboBox->itemData(d->safetyLevelComboBox->currentIndex()).toInt();
grp.writeEntry("Safety Level", safetyLevel);
int contentType = d->contentTypeComboBox->itemData(d->contentTypeComboBox->currentIndex()).toInt();
grp.writeEntry("Content Type", contentType);
grp.writeEntry("Resize", d->resizeCheckBox->isChecked());
grp.writeEntry("Upload Original", d->originalCheckBox->isChecked());
grp.writeEntry("Maximum Width", d->dimensionSpinBox->value());
grp.writeEntry("Image Quality", d->imageQualitySpinBox->value());
}
void FlickrWindow::slotLinkingSucceeded()
{
d->username = d->talker->getUserName();
d->userId = d->talker->getUserId();
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "SlotLinkingSucceeded invoked setting user Display name to" << d->username;
d->userNameDisplayLabel->setText(QString::fromLatin1("<b>%1</b>").arg(d->username));
KSharedConfigPtr config = KSharedConfig::openConfig();
const auto grps = config->groupList();
for (const QString& group : grps)
{
if (!(group.contains(d->serviceName)))
{
continue;
}
KConfigGroup grp = config->group(group);
if (group.contains(d->username))
{
readSettings(d->username);
break;
}
}
writeSettings();
d->talker->listPhotoSets();
}
void FlickrWindow::slotBusy(bool val)
{
if (val)
{
setCursor(Qt::WaitCursor);
}
else
{
setCursor(Qt::ArrowCursor);
}
}
void FlickrWindow::slotError(const QString& msg)
{
QMessageBox::critical(this, i18nc("@title:window", "Error"), msg);
}
void FlickrWindow::slotUserChangeRequest()
{
writeSettings();
d->userNameDisplayLabel->setText(QString());
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Slot Change User Request";
d->select->reactivate();
readSettings(d->select->getUserName());
d->talker->link(d->select->getUserName());
}
void FlickrWindow::slotRemoveAccount()
{
KSharedConfigPtr config = KSharedConfig::openConfig();
QString groupName = QString::fromLatin1("%1%2Export Settings").arg(d->serviceName, d->username);
KConfigGroup grp = config->group(groupName);
if (grp.exists())
{
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Removing Account having group" << groupName;
grp.deleteGroup();
}
d->talker->unLink();
d->talker->removeUserName(d->serviceName + d->username);
d->userNameDisplayLabel->setText(QString());
d->username = QString();
}
/**
* Try to guess a sensible set name from the urls given.
* Currently, it extracs the last path name component, and returns the most
* frequently seen. The function could be expanded to, for example, only
* accept the path if it occurs at least 50% of the time. It could also look
* further up in the path name.
*/
QString FlickrWindow::guessSensibleSetName(const QList<QUrl>& urlList) const
{
QMap<QString, int> nrFolderOccurences;
// Extract last component of directory
for (const QUrl& url : std::as_const(urlList))
{
QString dir = url.adjusted(QUrl::RemoveFilename | QUrl::StripTrailingSlash).toLocalFile();
QStringList list = dir.split(QLatin1Char('/'));
if (list.isEmpty())
{
continue;
}
nrFolderOccurences[list.last()]++;
}
int maxCount = 0;
int totalCount = 0;
QString name;
for (QMap<QString, int>::const_iterator it = nrFolderOccurences.constBegin() ;
it != nrFolderOccurences.constEnd() ; ++it)
{
totalCount += it.value();
if (it.value() > maxCount)
{
maxCount = it.value();
name = it.key();
}
}
// If there is only one entry or one name appears at least twice, return the suggestion
if ((totalCount == 1) || (maxCount > 1))
{
return name;
}
return QString();
}
/**
* This method is called when the photo set creation button is pressed. It
* summons a creation dialog for user input. When that is closed, it
* creates a new photo set in the local list. The id gets the form of
* UNDEFINED_ followed by a number, to indicate that it doesn't exist on
* Flickr yet.
*/
void FlickrWindow::slotCreateNewPhotoSet()
{
if (d->albumDlg->exec() == QDialog::Accepted)
{
FPhotoSet fps1;
d->albumDlg->getFolderProperties(fps1);
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "in slotCreateNewPhotoSet()" << fps1.title;
// Lets find an UNDEFINED_ style id that isn't taken yet.s
QString id;
int i = 0;
id = QLatin1String("UNDEFINED_") + QString::number(i);
QList<FPhotoSet>::const_iterator it = d->talker->m_photoSetsList->constBegin();
while (it != d->talker->m_photoSetsList->constEnd())
{
FPhotoSet fps2 = *it;
if (fps2.id == id)
{
id = QLatin1String("UNDEFINED_") + QString::number(++i);
it = d->talker->m_photoSetsList->constBegin();
}
++it;
}
fps1.id = id;
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Created new photoset with temporary id" << id;
// Append the new photoset to the list.
d->talker->m_photoSetsList->prepend(fps1);
d->talker->m_selectedPhotoSet = fps1;
// Re-populate the photo sets combo box.
slotPopulatePhotoSetComboBox();
}
else
{
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "New Photoset creation aborted";
}
}
void FlickrWindow::slotAuthCancel()
{
d->talker->cancel();
d->authProgressDlg->hide();
}
void FlickrWindow::slotPopulatePhotoSetComboBox()
{
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "slotPopulatePhotoSetComboBox invoked";
if (d->talker && d->talker->m_photoSetsList)
{
QList<FPhotoSet>* const list = d->talker->m_photoSetsList;
d->albumsListComboBox->clear();
d->albumsListComboBox->insertItem(0, i18n("Photostream Only"));
d->albumsListComboBox->insertSeparator(1);
QList<FPhotoSet>::const_iterator it = list->constBegin();
int index = 2;
int curr_index = 0;
while (it != list->constEnd())
{
FPhotoSet photoSet = *it;
QString name = photoSet.title;
// Store the id as user data, because the title is not unique.
QVariant id = QVariant(photoSet.id);
if (id == d->talker->m_selectedPhotoSet.id)
{
curr_index = index;
}
d->albumsListComboBox->insertItem(index++, name, id);
++it;
}
d->albumsListComboBox->setCurrentIndex(curr_index);
}
}
/**
* This slot is call when 'Start Uploading' button is pressed.
*/
void FlickrWindow::slotUser1()
{
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "SlotUploadImages invoked";
/*
d->widget->d->tab->setCurrentIndex(FlickrWidget::FILELIST);
*/
if (d->imglst->imageUrls().isEmpty())
{
return;
}
typedef QPair<QUrl, FPhotoInfo> Pair;
d->uploadQueue.clear();
for (int i = 0 ; i < d->imglst->listView()->topLevelItemCount() ; ++i)
{
FlickrListViewItem* const lvItem = dynamic_cast<FlickrListViewItem*>(d->imglst->listView()->topLevelItem(i));<--- Variable 'lvItem' can be declared as pointer to const
if (lvItem)
{
DItemInfo info(d->iface->itemInfo(lvItem->url()));
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Adding images" << lvItem->url() << " to the list";
FPhotoInfo temp;
temp.title = info.title();
temp.description = info.comment();
temp.size = info.fileSize();
temp.is_public = lvItem->isPublic() ? 1 : 0;
temp.is_family = lvItem->isFamily() ? 1 : 0;
temp.is_friend = lvItem->isFriends() ? 1 : 0;
temp.safety_level = lvItem->safetyLevel();
temp.content_type = lvItem->contentType();
QStringList tagsFromDialog = d->tagsLineEdit->text().split(QLatin1Char(','), Qt::SkipEmptyParts);
QStringList tagsFromList = lvItem->extraTags();
QStringList allTags;
QStringList::Iterator itTags;
// Tags from the dialog
itTags = tagsFromDialog.begin();
while (itTags != tagsFromDialog.end())
{
allTags.append(*itTags);
++itTags;
}
// Tags from the database
if (d->exportHostTagsCheckBox->isChecked())
{
QStringList tagsFromDatabase;
tagsFromDatabase = info.keywords();
itTags = tagsFromDatabase.begin();
while (itTags != tagsFromDatabase.end())
{
allTags.append(*itTags);
++itTags;
}
}
// Tags from the list view.
itTags = tagsFromList.begin();
while (itTags != tagsFromList.end())
{
allTags.append(*itTags);
++itTags;
}
// Remove spaces if the user doesn't like them.
if (d->stripSpaceTagsCheckBox->isChecked())
{
for (QStringList::iterator it = allTags.begin() ; it != allTags.end() ; ++it)
{
*it = (*it).trimmed().remove(QLatin1Char(' '));
}
}
// Debug the tag list.
itTags = allTags.begin();
while (itTags != allTags.end())
{
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Tags list:" << (*itTags);
++itTags;
}
temp.tags = allTags;
d->uploadQueue.append(Pair(lvItem->url(), temp));
}
}
d->uploadTotal = d->uploadQueue.count();
d->uploadCount = 0;
d->widget->progressBar()->reset();
slotAddPhotoNext();
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "SlotUploadImages done";
}
void FlickrWindow::slotAddPhotoNext()
{
if (d->uploadQueue.isEmpty())
{
d->widget->progressBar()->reset();
setUiInProgressState(false);
return;
}
typedef QPair<QUrl, FPhotoInfo> Pair;
Pair pathComments = d->uploadQueue.first();
FPhotoInfo info = pathComments.second;
QString selectedPhotoSetId = d->albumsListComboBox->itemData(d->albumsListComboBox->currentIndex()).toString();
if (selectedPhotoSetId.isEmpty())
{
d->talker->m_selectedPhotoSet = FPhotoSet();
}
else
{
QList<FPhotoSet>::const_iterator it = d->talker->m_photoSetsList->constBegin();
while (it != d->talker->m_photoSetsList->constEnd())
{
if (it->id == selectedPhotoSetId)
{
d->talker->m_selectedPhotoSet = *it;
break;
}
++it;
}
}
qCDebug(DIGIKAM_WEBSERVICES_LOG) << "Max allowed file size is:"
<< d->talker->getMaxAllowedFileSize().toLongLong()
<< "File Size is" << info.size;
bool res = d->talker->addPhoto(pathComments.first.toLocalFile(), //the file path
info,
d->originalCheckBox->isChecked(),
d->resizeCheckBox->isChecked(),
d->dimensionSpinBox->value(),
d->imageQualitySpinBox->value());
if (!res)
{
slotAddPhotoFailed(QLatin1String(""));
return;
}
if (d->widget->progressBar()->isHidden())
{
setUiInProgressState(true);
d->widget->progressBar()->progressScheduled(i18n("Flickr Export"), true, true);
d->widget->progressBar()->progressThumbnailChanged(
QIcon::fromTheme(QLatin1String("dk-flickr")).pixmap(22, 22));
}
}
void FlickrWindow::slotAddPhotoSucceeded(const QString& photoId)
{
QUrl photoUrl = d->uploadQueue.first().first;
// Set location for uploaded photo
DItemInfo info(d->iface->itemInfo(photoUrl));
if (info.hasGeolocationInfo() && !photoId.isEmpty())
{
d->talker->setGeoLocation(photoId,
QString::number(info.latitude()),
QString::number(info.longitude()));
return;
}
// Remove photo uploaded from the list
d->imglst->removeItemByUrl(photoUrl);
d->uploadQueue.removeFirst();
d->uploadCount++;
d->widget->progressBar()->setMaximum(d->uploadTotal);
d->widget->progressBar()->setValue(d->uploadCount);
slotAddPhotoNext();
}
void FlickrWindow::slotListPhotoSetsFailed(const QString& msg)
{
QMessageBox::critical(this, QLatin1String("Error"),
i18n("Failed to Fetch Photoset information from %1. %2\n",
d->serviceName, msg));
}
void FlickrWindow::slotAddPhotoFailed(const QString& msg)
{
QPointer<QMessageBox> warn = new QMessageBox(QMessageBox::Warning,
i18nc("@title: window failed add photo", "Warning"),
i18n("Failed to upload photo into %1. %2\nDo you want to continue?",
d->serviceName, msg),
QMessageBox::Yes | QMessageBox::No);
(warn->button(QMessageBox::Yes))->setText(i18nc("@action: button failed add photo", "Continue"));
(warn->button(QMessageBox::No))->setText(i18nc("@action: button failed add photo", "Cancel"));
if (warn->exec() != QMessageBox::Yes)
{
d->uploadQueue.clear();
d->widget->progressBar()->reset();
setUiInProgressState(false);
}
else
{
d->uploadQueue.removeFirst();
d->uploadTotal--;
d->widget->progressBar()->setMaximum(d->uploadTotal);
d->widget->progressBar()->setValue(d->uploadCount);
slotAddPhotoNext();
}
delete warn;
}
/**
* Method called when a photo set has been successfully created on Flickr.
* It functions to restart the normal flow after a photo set has been created
* on Flickr.
*/
void FlickrWindow::slotAddPhotoSetSucceeded()
{
slotPopulatePhotoSetComboBox();
slotAddPhotoSucceeded(QLatin1String(""));
}
void FlickrWindow::slotImageListChanged()
{
startButton()->setEnabled(!(d->widget->d->imglst->imageUrls().isEmpty()));
}
void FlickrWindow::slotReloadPhotoSetRequest()
{
d->talker->listPhotoSets();
}
} // namespace DigikamGenericFlickrPlugin
#include "moc_flickrwindow.cpp"
|