2014-11-13 01:04:59 +02:00
|
|
|
/* This file is part of the KDE project
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 Andreas Hartmetz <ahartmetz@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Library General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Library General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public License
|
|
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
|
|
* Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "ksslcertificatebox.h"
|
|
|
|
|
|
|
|
#include "ui_certificateparty.h"
|
|
|
|
|
|
|
|
#include <QtNetwork/QSslCertificate>
|
|
|
|
|
|
|
|
class KSslCertificateBoxPrivate
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Ui::CertificateParty ui;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
KSslCertificateBox::KSslCertificateBox(QWidget *parent)
|
|
|
|
: QWidget(parent),
|
|
|
|
d(new KSslCertificateBoxPrivate())
|
|
|
|
{
|
|
|
|
d->ui.setupUi(this);
|
|
|
|
// No fooling us with html tags
|
2015-10-28 05:23:15 +02:00
|
|
|
Q_FOREACH(QLabel* label, this->findChildren<QLabel *>()) {
|
2014-11-13 01:04:59 +02:00
|
|
|
label->setTextFormat(Qt::PlainText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
KSslCertificateBox::~KSslCertificateBox()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KSslCertificateBox::setCertificate(const QSslCertificate &cert, CertificateParty party)
|
|
|
|
{
|
|
|
|
if (party == Subject) {
|
|
|
|
d->ui.commonName->setText(cert.subjectInfo(QSslCertificate::CommonName));
|
|
|
|
d->ui.organization->setText(cert.subjectInfo(QSslCertificate::Organization));
|
|
|
|
d->ui.organizationalUnit
|
|
|
|
->setText(cert.subjectInfo(QSslCertificate::OrganizationalUnitName));
|
|
|
|
d->ui.country->setText(cert.subjectInfo(QSslCertificate::CountryName));
|
|
|
|
d->ui.state->setText(cert.subjectInfo(QSslCertificate::StateOrProvinceName));
|
|
|
|
d->ui.city->setText(cert.subjectInfo(QSslCertificate::LocalityName));
|
|
|
|
} else if (party == Issuer) {
|
|
|
|
d->ui.commonName->setText(cert.issuerInfo(QSslCertificate::CommonName));
|
|
|
|
d->ui.organization->setText(cert.issuerInfo(QSslCertificate::Organization));
|
|
|
|
d->ui.organizationalUnit
|
|
|
|
->setText(cert.issuerInfo(QSslCertificate::OrganizationalUnitName));
|
|
|
|
d->ui.country->setText(cert.issuerInfo(QSslCertificate::CountryName));
|
|
|
|
d->ui.state->setText(cert.issuerInfo(QSslCertificate::StateOrProvinceName));
|
|
|
|
d->ui.city->setText(cert.issuerInfo(QSslCertificate::LocalityName));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void KSslCertificateBox::clear()
|
|
|
|
{
|
|
|
|
d->ui.commonName->clear();
|
|
|
|
d->ui.organization->clear();
|
|
|
|
d->ui.organizationalUnit->clear();
|
|
|
|
d->ui.country->clear();
|
|
|
|
d->ui.state->clear();
|
|
|
|
d->ui.city->clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-02-27 07:40:26 +00:00
|
|
|
#include "moc_ksslcertificatebox.cpp"
|