kde-playground/kdepim/pimcommon/storageservice/tests/servicetestwidget.cpp
2015-04-14 21:49:29 +00:00

225 lines
9.4 KiB
C++

/*
Copyright (c) 2013, 2014 Montel Laurent <montel@kde.org>
This program is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License, version 2, as
published by the Free Software Foundation.
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.
You should have received a copy of the GNU General Public License along
with this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include "servicetestwidget.h"
#include "pimcommon/storageservice/storageserviceabstract.h"
#include "pimcommon/storageservice/tests/testsettingsjob.h"
#include "pimcommon/storageservice/storageservicejobconfig.h"
#include "pimcommon/storageservice/dialog/storageservicedownloaddialog.h"
#include <KLocalizedString>
#include <KFileDialog>
#include <QVBoxLayout>
#include <QToolBar>
#include <QInputDialog>
#include <QTextEdit>
#include <QAction>
#include <QPointer>
#include <QDir>
ServiceTestWidget::ServiceTestWidget(QWidget *parent)
: QWidget(parent),
mStorageService(0)
{
PimCommon::TestSettingsJob *settingsJob = new PimCommon::TestSettingsJob(this);
PimCommon::StorageServiceJobConfig *configJob = PimCommon::StorageServiceJobConfig::self();
configJob->registerConfigIf(settingsJob);
mEdit = new QTextEdit;
mEdit->setReadOnly(true);
QVBoxLayout *lay = new QVBoxLayout;
QToolBar *bar = new QToolBar;
lay->addWidget(bar);
mAuthenticationAction = bar->addAction(QLatin1String("Authentication..."), this, SLOT(slotAuthentication()));
mListFolderAction = bar->addAction(QLatin1String("List Folder..."), this, SLOT(slotListFolder()));
mCreateFolderAction = bar->addAction(QLatin1String("Create Folder..."), this, SLOT(slotCreateFolder()));
mAccountInfoAction = bar->addAction(QLatin1String("Account info..."), this, SLOT(slotAccountInfo()));
mUploadFileAction = bar->addAction(QLatin1String("Upload File..."), this, SLOT(slotUploadFile()));
mCreateServiceFolderAction = bar->addAction(QLatin1String("Create Service Folder..."), this, SLOT(slotCreateServiceFolder()));
mDeleteFileAction = bar->addAction(QLatin1String("Delete File..."), this, SLOT(slotDeleteFile()));
mDeleteFolderAction = bar->addAction(QLatin1String("Delete Folder..."), this, SLOT(slotDeleteFolder()));
mDownloadFileAction = bar->addAction(QLatin1String("Download File..."), this, SLOT(slotDownloadFile()));
lay->addWidget(mEdit);
setLayout(lay);
}
ServiceTestWidget::~ServiceTestWidget()
{
}
void ServiceTestWidget::slotDeleteFile()
{
const QString filename = QInputDialog::getText(this,i18n("Filename"), i18n("Filename:"));
if (!filename.isEmpty()) {
mStorageService->deleteFile(filename);
}
}
void ServiceTestWidget::slotDeleteFolder()
{
const QString folder = QInputDialog::getText(this,i18n("Folder Name"), i18n("Folder:"));
if (!folder.isEmpty()) {
mStorageService->deleteFolder(folder);
}
}
void ServiceTestWidget::setStorageService(PimCommon::StorageServiceAbstract *service)
{
mStorageService = service;
updateButtons(mStorageService->capabilities());
connectStorageService();
}
void ServiceTestWidget::slotAuthentication()
{
mStorageService->authentication();
}
void ServiceTestWidget::connectStorageService()
{
connect(mStorageService, SIGNAL(actionFailed(QString,QString)), this, SLOT(slotActionFailed(QString,QString)));
connect(mStorageService, SIGNAL(uploadDownloadFileProgress(QString,qint64,qint64)), this, SLOT(slotuploadDownloadFileProgress(QString,qint64,qint64)));
connect(mStorageService, SIGNAL(shareLinkDone(QString,QString)), this, SLOT(slotShareLinkDone(QString,QString)));
connect(mStorageService, SIGNAL(authenticationDone(QString)), this, SLOT(slotAuthenticationDone(QString)));
connect(mStorageService, SIGNAL(authenticationFailed(QString,QString)), this, SLOT(slotAuthenticationFailed(QString,QString)));
connect(mStorageService, SIGNAL(createFolderDone(QString,QString)), this, SLOT(slotCreateFolderDone(QString,QString)));
connect(mStorageService, SIGNAL(uploadFileDone(QString,QString)), this, SLOT(slotUploadFileDone(QString,QString)));
connect(mStorageService, SIGNAL(listFolderDone(QString,QVariant)), this, SLOT(slotListFolderDone(QString,QVariant)));
connect(mStorageService, SIGNAL(accountInfoDone(QString,PimCommon::AccountInfo)), this, SLOT(slotAccountInfoDone(QString,PimCommon::AccountInfo)));
connect(mStorageService, SIGNAL(deleteFileDone(QString,QString)), this, SLOT(slotDeleteFileDone(QString,QString)));
connect(mStorageService, SIGNAL(deleteFolderDone(QString,QString)), this, SLOT(slotDeleteFolderDone(QString,QString)));
connect(mStorageService, SIGNAL(downLoadFileDone(QString,QString)), this, SLOT(slotDownloadFileDone(QString,QString)));
}
void ServiceTestWidget::slotDeleteFolderDone(const QString &serviceName, const QString &foldername)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" Delete Folder: %1\n").arg(foldername));
}
void ServiceTestWidget::slotDeleteFileDone(const QString &serviceName, const QString &filename)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" Delete File: %1\n").arg(filename));
}
void ServiceTestWidget::slotActionFailed(const QString &serviceName, const QString &error)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" return an error: %1\n").arg(error));
}
void ServiceTestWidget::slotuploadDownloadFileProgress(const QString &serviceName, qint64 done ,qint64 total)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" upload in progress: send:%1 total:%2\n").arg(done).arg(total));
}
void ServiceTestWidget::slotShareLinkDone(const QString &serviceName, const QString &shareLink)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" return a share link: %1\n").arg(shareLink));
}
void ServiceTestWidget::slotAuthenticationFailed(const QString &serviceName, const QString &errorMessage)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" Authentication failed: %1\n").arg(errorMessage));
}
void ServiceTestWidget::slotAuthenticationDone(const QString &serviceName)
{
mEdit->insertPlainText(serviceName + QLatin1String(" Authentication done\n"));
}
void ServiceTestWidget::slotCreateFolderDone(const QString &serviceName, const QString &folderName)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" Create new folder \"%1\" done\n").arg(folderName));
}
void ServiceTestWidget::slotUploadFileDone(const QString &serviceName, const QString &fileName)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" Upload file done %1\n").arg(fileName));
}
void ServiceTestWidget::slotListFolderDone(const QString &serviceName, const QVariant &listFolder)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" list folder done \n")/*.arg(listFolder)*/);
}
void ServiceTestWidget::slotAccountInfoDone(const QString &serviceName, const PimCommon::AccountInfo &info)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" account Info: size: %1, quota: %2, shared: %3, displayName: %4\n")
.arg(info.accountSize).arg(info.quota).arg(info.shared).arg(info.displayName));
}
void ServiceTestWidget::slotDownloadFileDone(const QString &serviceName, const QString &filename)
{
mEdit->insertPlainText(serviceName + QString::fromLatin1(" download file done %1\n").arg(filename));
}
void ServiceTestWidget::slotAccountInfo()
{
mStorageService->accountInfo();
}
void ServiceTestWidget::slotCreateFolder()
{
const QString folder = QInputDialog::getText(this,i18n("Folder Name"), i18n("Folder:"));
if (!folder.isEmpty()) {
mStorageService->createFolder(folder, QString());
}
}
void ServiceTestWidget::slotListFolder()
{
mStorageService->listFolder();
}
void ServiceTestWidget::slotUploadFile()
{
const QString filename = KFileDialog::getOpenFileName();
if (!filename.isEmpty()) {
mStorageService->uploadFile(filename, QString(), QString()); //TODO
}
}
void ServiceTestWidget::slotCreateServiceFolder()
{
mStorageService->createServiceFolder();
}
void ServiceTestWidget::slotDownloadFile()
{
const QString destination = QDir::homePath();
QPointer<PimCommon::StorageServiceDownloadDialog> dlg = new PimCommon::StorageServiceDownloadDialog(mStorageService, this);
dlg->setDefaultDownloadPath(destination);
if (dlg->exec()) {
//TODO
}
delete dlg;
}
void ServiceTestWidget::updateButtons(PimCommon::StorageServiceAbstract::Capabilities capabilities)
{
mListFolderAction->setEnabled(capabilities & PimCommon::StorageServiceAbstract::ListFolderCapability);
mCreateFolderAction->setEnabled(capabilities & PimCommon::StorageServiceAbstract::CreateFolderCapability);
mAccountInfoAction->setEnabled(capabilities & PimCommon::StorageServiceAbstract::AccountInfoCapability);
mUploadFileAction->setEnabled(capabilities & PimCommon::StorageServiceAbstract::UploadFileCapability);
mDeleteFileAction->setEnabled(capabilities & PimCommon::StorageServiceAbstract::DeleteFileCapability);
mDeleteFolderAction->setEnabled(capabilities & PimCommon::StorageServiceAbstract::DeleteFolderCapability);
mDownloadFileAction->setEnabled(capabilities & PimCommon::StorageServiceAbstract::DownloadFileCapability);
}