summaryrefslogtreecommitdiff
path: root/src/urlbar/sslwidget.cpp
blob: 99e778c39564bdc1988421f92a24fabe4acd0f34 (plain)
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
135
136
137
/* ============================================================
*
* This file is a part of the rekonq project
*
* Copyright (C) 2011 by Andrea Diamantini <adjam7 at gmail dot com>
*
*
* This program 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) version 3 or any later version
* accepted by the membership of KDE e.V. (or its successor approved
* by the membership of KDE e.V.), which shall act as a proxy
* defined in Section 14 of version 3 of the license.
*
* This program 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, see <http://www.gnu.org/licenses/>.
*
* ============================================================ */


// Auto Includes
#include "sslwidget.h"
#include "sslwidget.moc"

// Local includes
#include "application.h"
#include "iconmanager.h"
#include "mainwindow.h"
#include "webtab.h"

// KDE Includes

// Qt Includes
#include <QtGui/QDialogButtonBox>
#include <QtGui/QFormLayout>
#include <QtGui/QLabel>
#include <QtGui/QPushButton>


SSLWidget::SSLWidget(const QUrl &url, const WebSslInfo &info, QWidget *parent)
    : QMenu(parent)
{
    setAttribute(Qt::WA_DeleteOnClose);
    setMinimumWidth(500);

    QFormLayout *layout = new QFormLayout(this);

    QLabel *l;
    
    // Title
    QLabel *title = new QLabel(this);
    title->setText( QL1S("<h4>") + url.toString() + QL1S("</h4>") );
    title->setAlignment(Qt::AlignCenter);
    layout->addRow(title);

    QLabel *u = new QLabel(this);
    u->setText( info.url().toString() );
    layout->addRow(u);
    
    QLabel *hAdd = new QLabel(this);
    hAdd->setText( QL1S("Peer Address: ") + info.peerAddress().toString() );
    layout->addRow(hAdd);

    QLabel *pAdd = new QLabel(this);
    pAdd->setText( QL1S("Parent Address: ") + info.parentAddress().toString() );
    layout->addRow(pAdd);

    QLabel *cip = new QLabel(this);
    cip->setText( QL1S("Cipher: ") + info.ciphers() );
    layout->addRow(cip);

    QLabel *pr = new QLabel(this);
    pr->setText( QL1S("Protocol: ") + info.protocol() );
    layout->addRow(pr);

    QLabel *epr = new QLabel(this);
    epr->setText( QL1S("CA errors: ") + info.certificateErrors() );
    layout->addRow(epr);

    QList<QSslCertificate> caList = info.certificateChain();
    Q_FOREACH(const QSslCertificate &cert, caList)
    {
        QLabel *a = new QLabel(this);
        a->setText( QL1S("ORGANIZATION: ") + cert.issuerInfo(QSslCertificate::Organization) );
        layout->addRow(a);
        
        QLabel *b = new QLabel(this);
        b->setText( QL1S("CN: ") + cert.issuerInfo(QSslCertificate::CommonName) );
        layout->addRow(b);
        
        QLabel *c = new QLabel(this);
        c->setText( QL1S("LOCALITY NAME: ") + cert.issuerInfo(QSslCertificate::LocalityName) );
        layout->addRow(c);
        
        QLabel *d = new QLabel(this);
        d->setText( QL1S("ORGANIZATION UNIT NAME: ") + cert.issuerInfo(QSslCertificate::OrganizationalUnitName) );
        layout->addRow(d);
        
        QLabel *e = new QLabel(this);
        e->setText( QL1S("COUNTRY NAME: ") + cert.issuerInfo(QSslCertificate::CountryName) );
        layout->addRow(e);
        
        QLabel *f = new QLabel(this);
        f->setText( QL1S("STATE OR PROVINCE NAME: ") + cert.issuerInfo(QSslCertificate::StateOrProvinceName) );
        layout->addRow(f);
    }

// ----------------------------------------------------------------
    l = new QLabel(this);
    l->setText( QL1S("<h4>") + i18n("Site Information") + QL1S("</h4>") );
    layout->addRow(l);
    
    setLayout(layout);
}


void SSLWidget::showAt(const QPoint &pos)
{
    adjustSize();

    QPoint p(pos.x() - width(), pos.y() + 10);
    move(p);
    show();
}


void SSLWidget::accept()
{

    close();
}