You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.7 KiB
138 lines
4.7 KiB
/* |
|
Copyright (c) 2012-2015 Montel Laurent <montel@kde.org> |
|
|
|
This library is free software; you can redistribute it and/or modify it |
|
under the terms of the GNU Library General Public License as published by |
|
the Free Software Foundation; either version 2 of the License, or (at your |
|
option) any later version. |
|
|
|
This library 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 Library General Public |
|
License for more details. |
|
|
|
You should have received a copy of the GNU Library General Public License |
|
along with this library; see the file COPYING.LIB. If not, write to the |
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
02110-1301, USA. |
|
|
|
*/ |
|
|
|
#include "createnewcontactjob.h" |
|
#include "util.h" |
|
|
|
#include <libkdepim/misc/broadcaststatus.h> |
|
|
|
#include <KContacts/Addressee> |
|
#include <KContacts/ContactGroup> |
|
|
|
#include <AkonadiCore/CollectionFetchJob> |
|
#include <AkonadiCore/AgentInstanceCreateJob> |
|
#include <AkonadiWidgets/AgentTypeDialog> |
|
#include <AkonadiCore/CollectionFetchScope> |
|
#include <AkonadiCore/AgentFilterProxyModel> |
|
#include <Akonadi/Contact/ContactEditorDialog> |
|
|
|
#include <KLocalizedString> |
|
#include <KMessageBox> |
|
|
|
CreateNewContactJob::CreateNewContactJob(QWidget *parentWidget, QObject *parent) |
|
: KJob(parent), |
|
mParentWidget(parentWidget) |
|
{ |
|
} |
|
|
|
CreateNewContactJob::~CreateNewContactJob() |
|
{ |
|
} |
|
|
|
void CreateNewContactJob::start() |
|
{ |
|
Akonadi::CollectionFetchJob *const addressBookJob = |
|
new Akonadi::CollectionFetchJob(Akonadi::Collection::root(), |
|
Akonadi::CollectionFetchJob::Recursive); |
|
|
|
addressBookJob->fetchScope().setContentMimeTypes(QStringList() << KContacts::Addressee::mimeType()); |
|
connect(addressBookJob, &KJob::result, this, &CreateNewContactJob::slotCollectionsFetched); |
|
} |
|
|
|
void CreateNewContactJob::slotCollectionsFetched(KJob *job) |
|
{ |
|
if (job->error()) { |
|
setError(job->error()); |
|
setErrorText(job->errorText()); |
|
emitResult(); |
|
return; |
|
} |
|
|
|
const Akonadi::CollectionFetchJob *addressBookJob = qobject_cast<Akonadi::CollectionFetchJob *>(job); |
|
|
|
Akonadi::Collection::List canCreateItemCollections ; |
|
|
|
foreach (const Akonadi::Collection &collection, addressBookJob->collections()) { |
|
if (Akonadi::Collection::CanCreateItem & collection.rights()) { |
|
canCreateItemCollections.append(collection); |
|
} |
|
} |
|
if (canCreateItemCollections.isEmpty()) { |
|
Akonadi::AgentTypeDialog dlg(mParentWidget); |
|
dlg.setWindowTitle(i18n("Add to Address Book")); |
|
dlg.agentFilterProxyModel()->addMimeTypeFilter(KContacts::Addressee::mimeType()); |
|
dlg.agentFilterProxyModel()->addMimeTypeFilter(KContacts::ContactGroup::mimeType()); |
|
dlg.agentFilterProxyModel()->addCapabilityFilter(QStringLiteral("Resource")); |
|
|
|
if (dlg.exec()) { |
|
const Akonadi::AgentType agentType = dlg.agentType(); |
|
|
|
if (agentType.isValid()) { |
|
Akonadi::AgentInstanceCreateJob *job = new Akonadi::AgentInstanceCreateJob(agentType, this); |
|
connect(job, &Akonadi::AgentInstanceCreateJob::result, this, &CreateNewContactJob::slotResourceCreationDone); |
|
job->configure(mParentWidget); |
|
job->start(); |
|
return; |
|
} else { //if agent is not valid => return error and finish job |
|
setError(UserDefinedError); |
|
emitResult(); |
|
return; |
|
} |
|
} else { //dialog canceled => return error and finish job |
|
setError(UserDefinedError); |
|
emitResult(); |
|
return; |
|
} |
|
} |
|
createContact(); |
|
emitResult(); |
|
} |
|
|
|
void CreateNewContactJob::slotResourceCreationDone(KJob *job) |
|
{ |
|
if (job->error()) { |
|
setError(job->error()); |
|
setErrorText(job->errorText()); |
|
emitResult(); |
|
return; |
|
} |
|
createContact(); |
|
emitResult(); |
|
} |
|
|
|
void CreateNewContactJob::createContact() |
|
{ |
|
Akonadi::ContactEditorDialog dlg(Akonadi::ContactEditorDialog::CreateMode, mParentWidget); |
|
connect(&dlg, &Akonadi::ContactEditorDialog::contactStored, this, &CreateNewContactJob::contactStored); |
|
connect(&dlg, &Akonadi::ContactEditorDialog::error, this, &CreateNewContactJob::slotContactEditorError); |
|
dlg.exec(); |
|
} |
|
|
|
void CreateNewContactJob::contactStored(const Akonadi::Item &item) |
|
{ |
|
Q_UNUSED(item); |
|
KPIM::BroadcastStatus::instance()->setStatusMsg(i18n("Contact created successfully")); |
|
} |
|
|
|
void CreateNewContactJob::slotContactEditorError(const QString &error) |
|
{ |
|
KMessageBox::error(mParentWidget, i18n("Contact cannot be stored: %1", error), i18n("Failed to store contact")); |
|
} |
|
|
|
|