xca/lib/db_x509req.cpp
Christian Hohnstaedt ff7704ff0b Add context sensitive documentation
All dialogs get the "Qt::WindowModal" modality to
operate the Help window in parallel
while also blocking the dialog parent windows.

The manageRevocations() moved from model to view

The Details dialogs become more self-sufficient.
There is a statc start method that shows the dialog and
updates name and comment after accept().
This allows recursive starts of certificate details and
independence of mainwin.
It is necessary to set the current toplevel widget as parent
for the next dialog to not block the application.
2021-04-23 15:50:13 +02:00

158 lines
3.4 KiB
C++

/* vi: set sw=4 ts=4:
*
* Copyright (C) 2001 - 2014 Christian Hohnstaedt.
*
* All rights reserved.
*/
#include "db_x509req.h"
#include "pki_x509req.h"
#include "pki_temp.h"
#include "widgets/NewX509.h"
#include "widgets/XcaWarning.h"
db_x509req::db_x509req() : db_x509super("requests")
{
sqlHashTable = "requests";
pkitype << x509_req;
pkitype_depends << x509;
updateHeaders();
loadContainer();
}
dbheaderList db_x509req::getHeaders()
{
dbheaderList h = db_x509super::getHeaders();
h << new dbheader(HD_req_signed, true, tr("Signed"),
tr("whether the request is already signed or not")) <<
new dbheader(HD_req_unstr_name, false, tr("Unstructured name"),
QString(OBJ_nid2ln(NID_pkcs9_unstructuredName))) <<
new dbheader(HD_req_chall_pass, false, tr("Challenge password"),
QString(OBJ_nid2ln(NID_pkcs9_challengePassword))) <<
new num_dbheader(HD_req_certs, false, tr("Certificate count"),
tr("Number of certificates in the database with the same public key"));
return h;
}
pki_base *db_x509req::newPKI(enum pki_type type)
{
(void)type;
return new pki_x509req();
}
pki_base *db_x509req::insert(pki_base *item)
{
pki_x509req *oldreq, *req;
req = (pki_x509req *)item;
oldreq = (pki_x509req *)getByReference(req);
if (oldreq) {
XCA_INFO(tr("The certificate signing request already exists in the database as\n'%1'\nand thus was not stored").arg(oldreq->getIntName()));
delete req;
return NULL;
}
insertPKI(req);
return req;
}
void db_x509req::newItem()
{
newItem(NULL, NULL);
}
void db_x509req::newItem(pki_temp *temp, pki_x509req *orig)
{
pki_x509req *req = NULL;
NewX509 *dlg = new NewX509();
if (temp) {
dlg->defineTemplate(temp);
} else if (orig) {
dlg->fromX509super(orig, true);
}
dlg->setRequest();
if (!dlg->exec()){
delete dlg;
return;
}
try {
pki_key *key = dlg->getSelectedKey();
x509name xn = dlg->getX509name();
req = new pki_x509req();
req->pkiSource = dlg->getPkiSource();
req->setIntName(dlg->description->text());
dlg->getReqAttributes(req);
req->createReq(key, xn, dlg->hashAlgo->currentHash(), dlg->getAllExt());
// set the comment field
req->setComment(dlg->comment->toPlainText());
createSuccess(insert(req));
}
catch (errorEx &err) {
XCA_ERROR(err);
delete req;
}
}
void db_x509req::load(void)
{
load_req l;
load_default(l);
}
void db_x509req::store(QModelIndex index)
{
QList<exportType> types;
pki_x509req *req = fromIndex<pki_x509req>(index);
if (!req)
return;
types << exportType(exportType::PEM, "pem", "PEM") <<
exportType(exportType::DER, "der", "DER");
ExportDialog *dlg = new ExportDialog(NULL,
tr("Certificate request export"),
tr("Certificate request ( *.pem *.der *.csr )"), req,
QPixmap(":csrImg"), types, "csrexport");
if (!dlg->exec()) {
delete dlg;
return;
}
try {
XFile file(dlg->filename->text());
pki_base::pem_comment = dlg->pemComment->isChecked();
file.open_write();
req->writeReq(file, dlg->type() == exportType::PEM);
}
catch (errorEx &err) {
XCA_ERROR(err);
}
pki_base::pem_comment = false;
delete dlg;
}
void db_x509req::setSigned(QModelIndex index, bool signe)
{
pki_x509req *req = fromIndex<pki_x509req>(index);
if (!req)
return;
req->markSigned(signe);
emit columnsContentChanged();
}
void db_x509req::resetX509count()
{
foreach(pki_x509req *r, getAllRequests())
r->resetX509count();
}
QList<pki_x509req *> db_x509req::getAllRequests()
{
return Store.sqlSELECTpki<pki_x509req>("SELECT item FROM requests");
}