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
|
/*
SPDX-FileCopyrightText: 2010 Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
SPDX-FileContributor: Kevin Ottens <kevin@kdab.com>
SPDX-License-Identifier: LGPL-2.0-or-later
*/
#include "retrievecollectionmetadatatask.h"
#include <KIMAP/GetAclJob>
#include <KIMAP/GetMetaDataJob>
#include <KIMAP/GetQuotaRootJob>
#include <KIMAP/MyRightsJob>
#include <KIMAP/RFCCodecs>
#include <KIMAP/Session>
#include <KLocalizedString>
#include "imapresource_debug.h"
#include "collectionmetadatahelper.h"
#include "imapaclattribute.h"
#include "imapquotaattribute.h"
#include "noselectattribute.h"
#include <Akonadi/CollectionAnnotationsAttribute>
#include <Akonadi/CollectionQuotaAttribute>
#include <Akonadi/EntityDisplayAttribute>
RetrieveCollectionMetadataTask::RetrieveCollectionMetadataTask(const ResourceStateInterface::Ptr &resource, QObject *parent)
: ResourceTask(CancelIfNoSession, resource, parent)
{
}
RetrieveCollectionMetadataTask::~RetrieveCollectionMetadataTask() = default;
void RetrieveCollectionMetadataTask::doStart(KIMAP::Session *session)
{
qCDebug(IMAPRESOURCE_LOG) << collection().remoteId();
// Prevent fetching metadata from noselect folders.
if (collection().hasAttribute("noselect")) {
NoSelectAttribute *noselect = static_cast<NoSelectAttribute *>(collection().attribute("noselect"));
if (noselect->noSelect()) {
qCDebug(IMAPRESOURCE_LOG) << "No Select folder";
endTaskIfNeeded();
return;
}
}
m_session = session;
m_collection = collection();
const QString mailBox = mailBoxForCollection(m_collection);
const QStringList capabilities = serverCapabilities();
m_pendingMetaDataJobs = 0;
// First get the annotations from the mailbox if it's supported
if (capabilities.contains(QLatin1StringView("METADATA")) || capabilities.contains(QLatin1StringView("ANNOTATEMORE"))) {
auto meta = new KIMAP::GetMetaDataJob(session);
meta->setMailBox(mailBox);
if (capabilities.contains(QLatin1StringView("METADATA"))) {
meta->setServerCapability(KIMAP::MetaDataJobBase::Metadata);
meta->addRequestedEntry("/shared");
meta->setDepth(KIMAP::GetMetaDataJob::AllLevels);
} else {
meta->setServerCapability(KIMAP::MetaDataJobBase::Annotatemore);
meta->addEntry("*", "value.shared");
}
connect(meta, &KJob::result, this, &RetrieveCollectionMetadataTask::onGetMetaDataDone);
m_pendingMetaDataJobs++;
meta->start();
}
// Get the ACLs from the mailbox if it's supported
if (capabilities.contains(QLatin1StringView("ACL"))) {
auto rights = new KIMAP::MyRightsJob(session);
rights->setMailBox(mailBox);
connect(rights, &KJob::result, this, &RetrieveCollectionMetadataTask::onRightsReceived);
m_pendingMetaDataJobs++;
rights->start();
}
// Get the QUOTA info from the mailbox if it's supported
if (capabilities.contains(QLatin1StringView("QUOTA"))) {
auto quota = new KIMAP::GetQuotaRootJob(session);
quota->setMailBox(mailBox);
connect(quota, &KJob::result, this, &RetrieveCollectionMetadataTask::onQuotasReceived);
m_pendingMetaDataJobs++;
quota->start();
}
// the server does not have any of the capabilities needed to get extra info, so this
// step is done here
if (m_pendingMetaDataJobs == 0) {
endTaskIfNeeded();
}
}
void RetrieveCollectionMetadataTask::onGetMetaDataDone(KJob *job)
{
m_pendingMetaDataJobs--;
if (job->error()) {
qCWarning(IMAPRESOURCE_LOG) << "Get metadata failed: " << job->errorString();
endTaskIfNeeded();
return; // Well, no metadata for us then...
}
auto meta = qobject_cast<KIMAP::GetMetaDataJob *>(job);
QMap<QByteArray, QByteArray> rawAnnotations = meta->allMetaData();
// filter out unused and annoying Cyrus annotation /vendor/cmu/cyrus-imapd/lastupdate
// which contains the current date and time and thus constantly changes for no good
// reason which triggers a change notification and thus a bunch of Akonadi operations
rawAnnotations.remove("/shared/vendor/cmu/cyrus-imapd/lastupdate");
rawAnnotations.remove("/private/vendor/cmu/cyrus-imapd/lastupdate");
// Store the mailbox metadata
auto annotationsAttribute = m_collection.attribute<Akonadi::CollectionAnnotationsAttribute>(Akonadi::Collection::AddIfMissing);
const QMap<QByteArray, QByteArray> oldAnnotations = annotationsAttribute->annotations();
if (oldAnnotations != rawAnnotations) {
annotationsAttribute->setAnnotations(rawAnnotations);
}
endTaskIfNeeded();
}
void RetrieveCollectionMetadataTask::onGetAclDone(KJob *job)
{
m_pendingMetaDataJobs--;
if (job->error()) {
qCWarning(IMAPRESOURCE_LOG) << "GetACL failed: " << job->errorString();
endTaskIfNeeded();
return; // Well, no metadata for us then...
}
auto acl = qobject_cast<KIMAP::GetAclJob *>(job);
// Store the mailbox ACLs
auto const aclAttribute = m_collection.attribute<Akonadi::ImapAclAttribute>(Akonadi::Collection::AddIfMissing);
const QMap<QByteArray, KIMAP::Acl::Rights> oldRights = aclAttribute->rights();
if (oldRights != acl->allRights()) {
aclAttribute->setRights(acl->allRights());
}
endTaskIfNeeded();
}
void RetrieveCollectionMetadataTask::onRightsReceived(KJob *job)
{
m_pendingMetaDataJobs--;
if (job->error()) {
qCWarning(IMAPRESOURCE_LOG) << "MyRights failed: " << job->errorString();
endTaskIfNeeded();
return; // Well, no metadata for us then...
}
auto rightsJob = qobject_cast<KIMAP::MyRightsJob *>(job);
const KIMAP::Acl::Rights imapRights = rightsJob->rights();
// Default value in case we have nothing better available
KIMAP::Acl::Rights parentRights = KIMAP::Acl::CreateMailbox | KIMAP::Acl::Create;
// FIXME I don't think we have the parent's acl's available
if (collection().parentCollection().attribute<Akonadi::ImapAclAttribute>()) {
parentRights = myRights(collection().parentCollection());
}
// qCDebug(IMAPRESOURCE_LOG) << collection.remoteId()
// << "imapRights:" << imapRights
// << "newRights:" << newRights
// << "oldRights:" << collection.rights();
const bool isNewCollection = !m_collection.hasAttribute<Akonadi::ImapAclAttribute>();
const bool accessRevoked = CollectionMetadataHelper::applyRights(m_collection, imapRights, parentRights);
if (accessRevoked && !isNewCollection) {
// write access revoked
const QString collectionName = m_collection.displayName();
showInformationDialog(i18n("<p>Your access rights to folder <b>%1</b> have been restricted, "
"it will no longer be possible to add messages to this folder.</p>",
collectionName),
i18n("Access rights revoked"),
QStringLiteral("ShowRightsRevokedWarning"));
}
// Store the mailbox ACLs
auto aclAttribute = m_collection.attribute<Akonadi::ImapAclAttribute>(Akonadi::Collection::AddIfMissing);
const KIMAP::Acl::Rights oldRights = aclAttribute->myRights();
if (oldRights != imapRights) {
aclAttribute->setMyRights(imapRights);
}
// The a right is required to list acl's
if (imapRights & KIMAP::Acl::Admin) {
auto acl = new KIMAP::GetAclJob(m_session);
acl->setMailBox(mailBoxForCollection(m_collection));
connect(acl, &KJob::result, this, &RetrieveCollectionMetadataTask::onGetAclDone);
m_pendingMetaDataJobs++;
acl->start();
}
endTaskIfNeeded();
}
void RetrieveCollectionMetadataTask::onQuotasReceived(KJob *job)
{
m_pendingMetaDataJobs--;
const QString &mailBox = mailBoxForCollection(m_collection);
if (job->error()) {
qCWarning(IMAPRESOURCE_LOG) << "Quota retrieval for mailbox " << mailBox << " failed: " << job->errorString();
endTaskIfNeeded();
return; // Well, no metadata for us then...
}
auto quotaJob = qobject_cast<KIMAP::GetQuotaRootJob *>(job);
QList<QByteArray> allRoots = quotaJob->roots();
QList<QByteArray> newRoots;
QList<QMap<QByteArray, qint64>> newLimits;
QList<QMap<QByteArray, qint64>> newUsages;
qint64 newCurrent = -1;
qint64 newMax = -1;
newRoots.reserve(allRoots.count());
newLimits.reserve(allRoots.count());
newUsages.reserve(allRoots.count());
for (const QByteArray &root : std::as_const(allRoots)) {
const QMap<QByteArray, qint64> limit = quotaJob->allLimits(root);
const QMap<QByteArray, qint64> usage = quotaJob->allUsages(root);
// Process IMAP Quota roots with associated quotas only
if (!limit.isEmpty() && !usage.isEmpty()) {
newRoots << root;
newLimits << limit;
newUsages << usage;
const QString &decodedRoot = QString::fromUtf8(KIMAP::decodeImapFolderName(root));
if (decodedRoot == mailBox) {
newCurrent = newUsages.last()["STORAGE"] * 1024;
newMax = newLimits.last()["STORAGE"] * 1024;
}
}
}
// If usage and limit were not set, retrieve them from the first root, if exists
if ((newCurrent == -1 && newMax == -1) && !newRoots.isEmpty()) {
newCurrent = newUsages.first()["STORAGE"] * 1024;
newMax = newLimits.first()["STORAGE"] * 1024;
}
// Store the mailbox IMAP Quotas
auto imapQuotaAttribute = m_collection.attribute<Akonadi::ImapQuotaAttribute>(Akonadi::Collection::AddIfMissing);
const QList<QByteArray> oldRoots = imapQuotaAttribute->roots();
const QList<QMap<QByteArray, qint64>> oldLimits = imapQuotaAttribute->limits();
const QList<QMap<QByteArray, qint64>> oldUsages = imapQuotaAttribute->usages();
if (oldRoots != newRoots || oldLimits != newLimits || oldUsages != newUsages) {
imapQuotaAttribute->setQuotas(newRoots, newLimits, newUsages);
}
// Store the collection Quota
auto quotaAttribute = m_collection.attribute<Akonadi::CollectionQuotaAttribute>(Akonadi::Collection::AddIfMissing);
qint64 oldCurrent = quotaAttribute->currentValue();
qint64 oldMax = quotaAttribute->maximumValue();
if (oldCurrent != newCurrent || oldMax != newMax) {
quotaAttribute->setCurrentValue(newCurrent);
quotaAttribute->setMaximumValue(newMax);
}
endTaskIfNeeded();
}
void RetrieveCollectionMetadataTask::endTaskIfNeeded()
{
if (m_pendingMetaDataJobs <= 0) {
collectionAttributesRetrieved(m_collection);
}
}
#include "moc_retrievecollectionmetadatatask.cpp"
|