mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
139 lines
2.8 KiB
C++
139 lines
2.8 KiB
C++
/* vi: set sw=4 ts=4:
|
|
*
|
|
* Copyright (C) 2001 - 2014 Christian Hohnstaedt.
|
|
*
|
|
* All rights reserved.
|
|
*/
|
|
|
|
|
|
#include "db_temp.h"
|
|
#include "func.h"
|
|
#include "XcaWarningCore.h"
|
|
#include "widgets/NewX509.h"
|
|
#include "ui_NewX509.h"
|
|
#include <QFileDialog>
|
|
#include <QDir>
|
|
#include <QFileInfo>
|
|
|
|
db_temp::db_temp() : db_x509name("templates")
|
|
{
|
|
/* XCA loads templates from private space ($HOME/.local/)
|
|
* Host specific (/usr/local) and distribution (/usr)
|
|
* The first <name>.xca found avoids other <name>.xca to be loaded
|
|
*/
|
|
QSet<QString> template_files;
|
|
load_temp l;
|
|
|
|
sqlHashTable = "templates";
|
|
pkitype << tmpl;
|
|
|
|
updateHeaders();
|
|
loadContainer();
|
|
|
|
pki_temp *tmpl = new pki_temp(tr("Empty template"));
|
|
tmpl->setAsPreDefined();
|
|
predefs << tmpl;
|
|
|
|
foreach(QString d, QStandardPaths::standardLocations(
|
|
QStandardPaths::AppDataLocation))
|
|
{
|
|
QFileInfoList list = QDir(d).entryInfoList(
|
|
QStringList("*.xca"),
|
|
QDir::Files | QDir::NoSymLinks |
|
|
QDir::NoDot | QDir::Readable);
|
|
|
|
foreach(QFileInfo fileInfo, list) {
|
|
if (template_files.contains(fileInfo.fileName()))
|
|
continue;
|
|
|
|
qDebug() << "Loading template" << fileInfo.fileName()
|
|
<< fileInfo.absoluteFilePath();
|
|
try {
|
|
tmpl = dynamic_cast<pki_temp*>(l.loadItem(
|
|
fileInfo.absoluteFilePath()));
|
|
if (tmpl) {
|
|
tmpl->setAsPreDefined();
|
|
predefs << tmpl;
|
|
template_files << fileInfo.fileName();
|
|
}
|
|
} catch(errorEx &err) {
|
|
XCA_WARN(tr("Bad template: %1")
|
|
.arg(nativeSeparator(
|
|
fileInfo.absoluteFilePath())));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
db_temp::~db_temp()
|
|
{
|
|
qDeleteAll(predefs);
|
|
}
|
|
|
|
pki_base *db_temp::newPKI(enum pki_type type)
|
|
{
|
|
(void)type;
|
|
return new pki_temp("");
|
|
}
|
|
|
|
QList<pki_temp *> db_temp::getPredefs() const
|
|
{
|
|
return predefs;
|
|
}
|
|
|
|
bool db_temp::alterTemp(pki_temp *temp)
|
|
{
|
|
XSqlQuery q;
|
|
QSqlError e;
|
|
|
|
Transaction;
|
|
if (!TransBegin())
|
|
return false;
|
|
SQL_PREPARE(q, "UPDATE templates SET version=?, template=? WHERE item=?");
|
|
q.bindValue(0, TMPL_VERSION);
|
|
q.bindValue(1, temp->toB64Data());
|
|
q.bindValue(2, temp->getSqlItemId());
|
|
q.exec();
|
|
e = q.lastError();
|
|
XCA_SQLERROR(e);
|
|
if (e.isValid()) {
|
|
TransRollback();
|
|
return false;
|
|
}
|
|
updateItem(temp, temp->getIntName(), temp->getComment());
|
|
TransCommit();
|
|
return true;
|
|
}
|
|
|
|
void db_temp::load()
|
|
{
|
|
load_temp l;
|
|
load_default(l);
|
|
}
|
|
|
|
void db_temp::store(QModelIndex index)
|
|
{
|
|
pki_temp *temp = fromIndex<pki_temp>(index);
|
|
|
|
if (!index.isValid() || !temp)
|
|
return;
|
|
|
|
QString fn = Settings["workingdir"] +
|
|
temp->getUnderlinedName() + ".xca";
|
|
QString s = QFileDialog::getSaveFileName(NULL,
|
|
tr("Save template as"), fn,
|
|
tr("XCA templates ( *.xca );; All files ( * )"));
|
|
if (s.isEmpty())
|
|
return;
|
|
|
|
update_workingdir(s);
|
|
try {
|
|
XFile file(s);
|
|
file.open_key();
|
|
temp->writeTemp(file);
|
|
}
|
|
catch (errorEx &err) {
|
|
XCA_ERROR(err);
|
|
}
|
|
}
|