KIMAP2

setacljob.cpp
1/*
2 Copyright (c) 2009 Andras Mantia <amantia@kde.org>
3
4 This library is free software; you can redistribute it and/or modify it
5 under the terms of the GNU Library General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or (at your
7 option) any later version.
8
9 This library is distributed in the hope that it will be useful, but WITHOUT
10 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
12 License for more details.
13
14 You should have received a copy of the GNU Library General Public License
15 along with this library; see the file COPYING.LIB. If not, write to the
16 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 02110-1301, USA.
18*/
19
20#include "setacljob.h"
21
22#include "acljobbase_p.h"
23#include "message_p.h"
24#include "session_p.h"
25#include "rfccodecs.h"
26
27namespace KIMAP2
28{
29class SetAclJobPrivate : public AclJobBasePrivate
30{
31public:
32 SetAclJobPrivate(Session *session, const QString &name) : AclJobBasePrivate(session, name) {}
33 ~SetAclJobPrivate() { }
34};
35}
36
37using namespace KIMAP2;
38
39SetAclJob::SetAclJob(Session *session)
40 : AclJobBase(*new SetAclJobPrivate(session, "SetAcl"))
41{
42}
43
44SetAclJob::~SetAclJob()
45{
46}
47
48void SetAclJob::doStart()
49{
51 QByteArray r = Acl::rightsToString(d->rightList);
52 if (d->modifier == Add) {
53 r.prepend('+');
54 } else if (d->modifier == Remove) {
55 r.prepend('-');
56 }
57 d->sendCommand("SETACL", '\"' + KIMAP2::encodeImapFolderName(d->mailBox.toUtf8()) + "\" \"" + d->id + "\" \"" + r + '\"');
58}
59
61{
63 d->setRights(modifier, rights);
64}
65
66void SetAclJob::setIdentifier(const QByteArray &identifier)
67{
69 d->setIdentifier(identifier);
70}
71
73{
75 return d->identifier();
76}
Base class for jobs that operate on mailbox ACLs.
Definition acljobbase.h:45
AclModifier
Used when subclassing to specify how the ACL will be modified.
Definition acljobbase.h:58
Sets the rights that correspond to an identifier on a mailbox.
Definition setacljob.h:45
void setRights(AclModifier modifier, Acl::Rights rights)
Sets the rights that will be changed for the identifier.
Definition setacljob.cpp:60
void setIdentifier(const QByteArray &identifier)
Sets the identifier the rights will be modified for.
Definition setacljob.cpp:66
QByteArray identifier()
The identifier that rights will be associated with.
Definition setacljob.cpp:72
KIMAP2_EXPORT QByteArray rightsToString(Rights rights)
Convert a set of rights into text format.
Definition acl.cpp:91
QString name(StandardShortcut id)
QByteArray & prepend(QByteArrayView ba)
This file is part of the IMAP support library and defines the RfcCodecs class.
Q_D(Todo)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:21:18 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.