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
|
/* 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 "XcaWarningCore.h"
#pragma message ("drop UI dependencies")
#include "widgets/NewX509.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;
}
return insertPKI(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->current(),
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::exportItem(const QModelIndex &index,
const pki_export *xport, XFile &file) const
{
pki_x509req *req = fromIndex<pki_x509req>(index);
if (!req)
return;
if (xport->match_all(F_CONFIG)) {
req->opensslConf(file);
} else {
req->writeReq(file, xport->match_all(F_PEM));
}
}
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");
}
|