Page Menu
Home
GnuPG
Search
Configure Global Search
Log In
Files
F34601797
prepencryptcommand.cpp
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Size
5 KB
Subscribers
None
prepencryptcommand.cpp
View Options
/* -*- mode: c++; c-basic-offset:4 -*-
uiserver/prepencryptcommand.cpp
This file is part of Kleopatra, the KDE keymanager
Copyright (c) 2007 Klarälvdalens Datakonsult AB
Kleopatra is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Kleopatra 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
In addition, as a special exception, the copyright holders give
permission to link the code of this program with any edition of
the Qt library by Trolltech AS, Norway (or with modified versions
of Qt that use the same license as Qt), and distribute linked
combinations including the two. You must obey the GNU General
Public License in all respects for all of the code used other than
Qt. If you modify this file, you may extend this exception to
your version of the file, but you are not obligated to do so. If
you do not wish to do so, delete this exception statement from
your version.
*/
#include
<config-kleopatra.h>
#include
"prepencryptcommand.h"
#include
<crypto/encryptemailcontroller.h>
#include
<utils/exception.h>
#include
<KLocale>
#include
<QPointer>
using
namespace
Kleo
;
using
namespace
Kleo
::
Crypto
;
using
namespace
boost
;
class
PrepEncryptCommand
::
Private
:
public
QObject
{
Q_OBJECT
private
:
friend
class
::
Kleo
::
PrepEncryptCommand
;
PrepEncryptCommand
*
const
q
;
public
:
explicit
Private
(
PrepEncryptCommand
*
qq
)
:
q
(
qq
),
controller
()
{}
private
:
void
checkForErrors
()
const
;
public
Q_SLOTS
:
void
slotRecipientsResolved
();
void
slotError
(
int
,
const
QString
&
);
private
:
shared_ptr
<
EncryptEMailController
>
controller
;
};
PrepEncryptCommand
::
PrepEncryptCommand
()
:
AssuanCommandMixin
<
PrepEncryptCommand
>
(),
d
(
new
Private
(
this
)
)
{
}
PrepEncryptCommand
::~
PrepEncryptCommand
()
{}
void
PrepEncryptCommand
::
Private
::
checkForErrors
()
const
{
if
(
!
q
->
inputs
().
empty
()
||
!
q
->
outputs
().
empty
()
||
!
q
->
messages
().
empty
()
)
throw
Exception
(
makeError
(
GPG_ERR_CONFLICT
),
i18n
(
"INPUT/OUTPUT/MESSAGE may only be given after PREP_ENCRYPT"
)
);
if
(
q
->
numFiles
()
)
throw
Exception
(
makeError
(
GPG_ERR_CONFLICT
),
i18n
(
"PREP_ENCRYPT is an email mode command, connection seems to be in filemanager mode"
)
);
if
(
!
q
->
senders
().
empty
()
&&
!
q
->
informativeSenders
()
)
throw
Exception
(
makeError
(
GPG_ERR_CONFLICT
),
i18n
(
"SENDER may not be given prior to PREP_ENCRYPT, except with --info"
)
);
if
(
q
->
recipients
().
empty
()
||
q
->
informativeRecipients
()
)
throw
Exception
(
makeError
(
GPG_ERR_MISSING_VALUE
),
i18n
(
"No recipients given, or only with --info"
)
);
}
int
PrepEncryptCommand
::
doStart
()
{
removeMemento
(
EncryptEMailController
::
mementoName
()
);
d
->
checkForErrors
();
d
->
controller
.
reset
(
new
EncryptEMailController
(
shared_from_this
(),
EncryptEMailController
::
GpgOLMode
)
);
if
(
hasOption
(
"protocol"
)
)
// --protocol is optional for PREP_ENCRYPT
d
->
controller
->
setProtocol
(
checkProtocol
(
EMail
)
);
QObject
::
connect
(
d
->
controller
.
get
(),
SIGNAL
(
recipientsResolved
()),
d
.
get
(),
SLOT
(
slotRecipientsResolved
())
);
QObject
::
connect
(
d
->
controller
.
get
(),
SIGNAL
(
error
(
int
,
QString
)),
d
.
get
(),
SLOT
(
slotError
(
int
,
QString
))
);
d
->
controller
->
startResolveRecipients
(
recipients
()
);
return
0
;
}
void
PrepEncryptCommand
::
Private
::
slotRecipientsResolved
()
{
//hold local shared_ptr to member as q->done() deletes *this
const
shared_ptr
<
EncryptEMailController
>
cont
=
controller
;
QPointer
<
Private
>
that
(
this
);
try
{
q
->
sendStatus
(
"PROTOCOL"
,
controller
->
protocolAsString
()
);
q
->
registerMemento
(
EncryptEMailController
::
mementoName
(),
make_typed_memento
(
controller
)
);
q
->
done
();
return
;
}
catch
(
const
Exception
&
e
)
{
q
->
done
(
e
.
error
(),
e
.
message
()
);
}
catch
(
const
std
::
exception
&
e
)
{
q
->
done
(
makeError
(
GPG_ERR_UNEXPECTED
),
i18n
(
"Caught unexpected exception in PrepEncryptCommand::Private::slotRecipientsResolved: %1"
,
QString
::
fromLocal8Bit
(
e
.
what
()
)
)
);
}
catch
(
...
)
{
q
->
done
(
makeError
(
GPG_ERR_UNEXPECTED
),
i18n
(
"Caught unknown exception in PrepEncryptCommand::Private::slotRecipientsResolved"
)
);
}
if
(
that
)
// isn't this always deleted here and thus unnecessary?
q
->
removeMemento
(
EncryptEMailController
::
mementoName
()
);
cont
->
cancel
();
}
void
PrepEncryptCommand
::
Private
::
slotError
(
int
err
,
const
QString
&
details
)
{
q
->
done
(
err
,
details
);
}
void
PrepEncryptCommand
::
doCanceled
()
{
if
(
d
->
controller
)
d
->
controller
->
cancel
();
}
#include
"prepencryptcommand.moc"
File Metadata
Details
Attached
Mime Type
text/x-c++
Expires
Sun, Jan 18, 4:04 PM (2 h, 5 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
ad/9d/6321dfb4eca297bffb7bfe318c38
Attached To
rKLEOPATRA Kleopatra
Event Timeline
Log In to Comment