1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 18:22:10 +02:00
falkonOfficial/src/webview/siteinfo.cpp

153 lines
5.6 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
* Copyright (C) 2010-2011 nowrep
*
* 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 3 of the License, or
* (at your option) any later version.
*
* 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/>.
* ============================================================ */
2011-03-02 16:57:41 +01:00
#include "siteinfo.h"
#include "ui_siteinfo.h"
#include "qupzilla.h"
#include "webview.h"
#include "webpage.h"
#include "downloaditem.h"
2011-03-02 16:57:41 +01:00
2011-03-17 17:03:04 +01:00
SiteInfo::SiteInfo(QupZilla* mainClass, QWidget* parent) :
2011-03-02 16:57:41 +01:00
QDialog(parent)
,ui(new Ui::SiteInfo)
,p_QupZilla(mainClass)
{
ui->setupUi(this);
WebView* view = p_QupZilla->weView();
QWebFrame* frame = view->page()->mainFrame();
QString title = view->title();
QSslCertificate cert = view->webPage()->sslCertificate();
2011-03-02 16:57:41 +01:00
//GENERAL
ui->heading->setText(QString("<b>%1</b>:").arg(title));
2011-03-02 16:57:41 +01:00
ui->siteAddress->setText(frame->baseUrl().toString());
ui->sizeLabel->setText( DownloadItem::fileSizeToString(view->webPage()->totalBytes()) );
QString encoding;
//Meta
2011-03-02 16:57:41 +01:00
QWebElementCollection meta = frame->findAllElements("meta");
for (int i = 0; i<meta.count(); i++) {
QWebElement element = meta.at(i);
QString content = element.attribute("content");
QString name = element.attribute("name");
if (name.isEmpty())
name = element.attribute("http-equiv");
if (!element.attribute("charset").isEmpty())
encoding = element.attribute("charset");
if (content.contains("charset="))
encoding = content.mid(content.indexOf("charset=")+8);
2011-03-02 16:57:41 +01:00
if (content.isEmpty() || name.isEmpty())
continue;
QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeTags);
item->setText(0, name);
item->setText(1, content);
ui->treeTags->addTopLevelItem(item);
}
if (encoding.isEmpty())
encoding = mApp->webSettings()->defaultTextEncoding();
ui->encodingLabel->setText(encoding.toUpper());
2011-03-02 16:57:41 +01:00
//MEDIA
2011-03-02 16:57:41 +01:00
QWebElementCollection img = frame->findAllElements("img");
for (int i = 0; i<img.count(); i++) {
QWebElement element = img.at(i);
QString src = element.attribute("src");
QString alt = element.attribute("alt");
if (alt.isEmpty()) {
if (src.indexOf("/") == -1)
alt = src;
else{
int pos = src.lastIndexOf("/");
alt = src.mid(pos);
alt.remove("/");
}
}
if (src.isEmpty() || alt.isEmpty())
continue;
QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeImages);
item->setText(0, alt);
item->setText(1, src);
ui->treeImages->addTopLevelItem(item);
}
//SECURITY
if (cert.isValid()) {
ui->securityLabel->setText(tr("<b>Connection is Encrypted.</b>"));
ui->certLabel->setText(tr("<b>Your connection to this page is secured with this certificate: </b>"));
//Issued to
ui->issuedToCN->setText( cert.subjectInfo(QSslCertificate::CommonName) );
ui->issuedToO->setText( cert.subjectInfo(QSslCertificate::Organization) );
ui->issuedToOU->setText( cert.subjectInfo(QSslCertificate::OrganizationalUnitName) );
ui->issuedToSN->setText( cert.serialNumber() );
//Issued By
ui->issuedByCN->setText( cert.issuerInfo(QSslCertificate::CommonName) );
ui->issuedByO->setText( cert.issuerInfo(QSslCertificate::Organization) );
ui->issuedByOU->setText( cert.issuerInfo(QSslCertificate::OrganizationalUnitName) );
//Validity
ui->validityIssuedOn->setText( cert.effectiveDate().toString("dddd d. MMMM yyyy") );
ui->validityExpiresOn->setText( cert.expiryDate().toString("dddd d. MMMM yyyy") );
} else {
ui->securityLabel->setText(tr("<b>Connection Not Encrypted.</b>"));
ui->certFrame->setVisible(false);
ui->certLabel->setText(tr("<b>Your connection to this page is not secured!</b>"));
}
connect(ui->listWidget, SIGNAL(currentItemChanged(QListWidgetItem*,QListWidgetItem*)), this, SLOT(itemChanged(QListWidgetItem*)));
connect(ui->secDetailsButton, SIGNAL(clicked()), this, SLOT(securityDetailsClicked()));
connect(ui->treeImages, SIGNAL(currentItemChanged(QTreeWidgetItem*,QTreeWidgetItem*)), this, SLOT(showImagePreview(QTreeWidgetItem*)));
}
void SiteInfo::showImagePreview(QTreeWidgetItem *item)
{
if (!item)
return;
QUrl imageUrl = item->text(1);
QIODevice* cacheData = mApp->networkCache()->data(imageUrl);
QPixmap pixmap;
if (!cacheData)
pixmap.load(":/icons/qupzilla.png");
else
pixmap.loadFromData(cacheData->readAll());
QGraphicsScene* scene = new QGraphicsScene(ui->mediaPreview);
scene->addPixmap(pixmap);
ui->mediaPreview->setScene(scene);
}
void SiteInfo::securityDetailsClicked()
{
ui->listWidget->setCurrentRow(2);
}
void SiteInfo::itemChanged(QListWidgetItem *item)
{
if (!item)
return;
int index = item->whatsThis().toInt();
ui->stackedWidget->setCurrentIndex(index);
2011-03-02 16:57:41 +01:00
}
SiteInfo::~SiteInfo()
{
delete ui;
}