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

305 lines
10 KiB
C++
Raw Normal View History

2011-03-03 18:29:20 +01:00
/* ============================================================
* QupZilla - WebKit based browser
2014-01-11 16:11:42 +01:00
* Copyright (C) 2010-2014 David Rosca <nowrep@gmail.com>
2011-03-03 18:29:20 +01:00
*
* 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 "listitemdelegate.h"
2011-03-02 16:57:41 +01:00
#include "webview.h"
#include "webpage.h"
#include "mainapplication.h"
#include "downloaditem.h"
#include "certificateinfowidget.h"
#include "qztools.h"
#include "iconprovider.h"
2011-03-02 16:57:41 +01:00
#if QTWEBENGINE_DISABLED
#include <QMenu>
#include <QMessageBox>
#include <QFileDialog>
#include <QNetworkDiskCache>
#include <QWebEngineFrame>
#include <QClipboard>
#include <QWebSecurityOrigin>
#include <QWebDatabase>
#include <QTimer>
2011-04-26 19:47:12 +02:00
QString SiteInfo::showCertInfo(const QString &string)
{
if (string.isEmpty()) {
2011-04-26 19:47:12 +02:00
return tr("<not set in certificate>");
}
return string;
2011-04-26 19:47:12 +02:00
}
SiteInfo::SiteInfo(WebView* view, QWidget* parent)
: QDialog(parent)
, ui(new Ui::SiteInfo)
, m_certWidget(0)
, m_view(view)
2011-03-02 16:57:41 +01:00
{
setAttribute(Qt::WA_DeleteOnClose);
2011-03-02 16:57:41 +01:00
ui->setupUi(this);
ui->treeTags->setLayoutDirection(Qt::LeftToRight);
ListItemDelegate* delegate = new ListItemDelegate(24, ui->listWidget);
delegate->setUpdateParentHeight(true);
delegate->setUniformItemSizes(true);
ui->listWidget->setItemDelegate(delegate);
ui->listWidget->item(0)->setIcon(QIcon::fromTheme("document-properties", QIcon(":/icons/preferences/document-properties.png")));
ui->listWidget->item(1)->setIcon(QIcon::fromTheme("applications-graphics", QIcon(":/icons/preferences/applications-graphics.png")));
ui->listWidget->item(2)->setIcon(QIcon::fromTheme("text-x-sql", QIcon(":/icons/preferences/text-x-sql.png")));
ui->listWidget->item(3)->setIcon(QIcon::fromTheme("dialog-password", QIcon(":/icons/preferences/dialog-password.png")));
ui->listWidget->item(0)->setSelected(true);
WebPage* webPage = view->page();
QWebEngineFrame* frame = view->page()->mainFrame();
2011-03-02 16:57:41 +01:00
QString title = view->title();
QSslCertificate cert = webPage->sslCertificate();
m_baseUrl = frame->baseUrl();
2011-03-02 16:57:41 +01:00
//GENERAL
ui->heading->setText(QString("<b>%1</b>:").arg(title));
ui->siteAddress->setText(view->url().toString());
ui->sizeLabel->setText(QzTools::fileSizeToString(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++) {
2011-03-02 16:57:41 +01:00
QWebElement element = meta.at(i);
QString content = element.attribute("content");
QString name = element.attribute("name");
if (name.isEmpty()) {
2011-03-02 16:57:41 +01:00
name = element.attribute("http-equiv");
}
if (!element.attribute("charset").isEmpty()) {
encoding = element.attribute("charset");
}
if (content.contains(QLatin1String("charset="))) {
encoding = content.mid(content.indexOf(QLatin1String("charset=")) + 8);
}
2011-03-02 16:57:41 +01:00
if (content.isEmpty() || name.isEmpty()) {
2011-03-02 16:57:41 +01:00
continue;
}
2011-03-02 16:57:41 +01:00
QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeTags);
item->setText(0, name);
item->setText(1, content);
ui->treeTags->addTopLevelItem(item);
}
if (encoding.isEmpty()) {
encoding = QWebEngineSettings::globalSettings()->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++) {
2011-03-02 16:57:41 +01:00
QWebElement element = img.at(i);
QString src = element.attribute("src");
QString alt = element.attribute("alt");
if (alt.isEmpty()) {
if (src.indexOf(QLatin1Char('/')) == -1) {
2011-03-02 16:57:41 +01:00
alt = src;
}
else {
int pos = src.lastIndexOf(QLatin1Char('/'));
2011-03-02 16:57:41 +01:00
alt = src.mid(pos);
alt.remove(QLatin1Char('/'));
2011-03-02 16:57:41 +01:00
}
}
if (src.isEmpty() || alt.isEmpty()) {
2011-03-02 16:57:41 +01:00
continue;
}
2011-03-02 16:57:41 +01:00
QTreeWidgetItem* item = new QTreeWidgetItem(ui->treeImages);
item->setText(0, alt);
item->setText(1, src);
ui->treeImages->addTopLevelItem(item);
}
//DATABASES
const QList<QWebDatabase> &databases = frame->securityOrigin().databases();
int counter = 0;
foreach (const QWebDatabase &b, databases) {
QListWidgetItem* item = new QListWidgetItem(ui->databaseList);
item->setText(b.displayName());
item->setData(Qt::UserRole + 10, counter);
++counter;
}
if (counter == 0) {
QListWidgetItem* item = new QListWidgetItem(ui->databaseList);
item->setText(tr("No databases are used by this page."));
item->setFlags(item->flags() & Qt::ItemIsSelectable);
}
//SECURITY
if (QzTools::isCertificateValid(cert)) {
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>"));
m_certWidget = new CertificateInfoWidget(cert);
ui->certFrame->addWidget(m_certWidget);
}
else {
ui->securityLabel->setText(tr("<b>Connection Not Encrypted.</b>"));
ui->certLabel->setText(tr("<b>Your connection to this page is not secured!</b>"));
}
connect(ui->listWidget, SIGNAL(currentRowChanged(int)), ui->stackedWidget, SLOT(setCurrentIndex(int)));
connect(ui->secDetailsButton, SIGNAL(clicked()), this, SLOT(securityDetailsClicked()));
connect(ui->saveButton, SIGNAL(clicked(QAbstractButton*)), this, SLOT(downloadImage()));
connect(ui->databaseList, SIGNAL(currentItemChanged(QListWidgetItem*,QListWidgetItem*)), this, SLOT(databaseItemChanged(QListWidgetItem*)));
connect(ui->treeImages, SIGNAL(currentItemChanged(QTreeWidgetItem*,QTreeWidgetItem*)), this, SLOT(showImagePreview(QTreeWidgetItem*)));
connect(ui->treeImages, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(imagesCustomContextMenuRequested(QPoint)));
ui->treeImages->setContextMenuPolicy(Qt::CustomContextMenu);
ui->treeImages->sortByColumn(-1);
ui->treeTags->sortByColumn(-1);
QzTools::setWmClass("Site Info", this);
}
void SiteInfo::imagesCustomContextMenuRequested(const QPoint &p)
{
QTreeWidgetItem* item = ui->treeImages->itemAt(p);
if (!item) {
return;
}
QMenu menu;
menu.addAction(QIcon::fromTheme("edit-copy"), tr("Copy Image Location"), this, SLOT(copyActionData()))->setData(item->text(1));
menu.addAction(tr("Copy Image Name"), this, SLOT(copyActionData()))->setData(item->text(0));
menu.addSeparator();
menu.addAction(QIcon::fromTheme("document-save"), tr("Save Image to Disk"), this, SLOT(downloadImage()));
menu.exec(ui->treeImages->viewport()->mapToGlobal(p));
}
void SiteInfo::databaseItemChanged(QListWidgetItem* item)
{
if (!item) {
return;
}
int id = item->data(Qt::UserRole + 10).toInt();
const QList<QWebDatabase> &list = m_view->page()->mainFrame()->securityOrigin().databases();
if (id > list.count() - 1) {
return;
}
const QWebDatabase db = list.at(id);
ui->databaseName->setText(QString("%1 (%2)").arg(db.displayName(), db.name()));
ui->databasePath->setText(db.fileName());
ui->databaseSize->setText(QzTools::fileSizeToString(db.size()));
}
void SiteInfo::copyActionData()
{
if (QAction* action = qobject_cast<QAction*>(sender())) {
qApp->clipboard()->setText(action->data().toString());
}
}
void SiteInfo::downloadImage()
{
QTreeWidgetItem* item = ui->treeImages->currentItem();
if (!item) {
return;
}
if (m_activePixmap.isNull()) {
QMessageBox::warning(this, tr("Error!"), tr("This preview is not available!"));
return;
}
QString imageFileName = QzTools::getFileNameFromUrl(QUrl(item->text(1)));
QString filePath = QzTools::getSaveFileName("SiteInfo-DownloadImage", this, tr("Save image..."), QDir::homePath() + QDir::separator() + imageFileName);
if (filePath.isEmpty()) {
return;
}
if (!m_activePixmap.save(filePath)) {
QMessageBox::critical(this, tr("Error!"), tr("Cannot write to file!"));
return;
}
}
void SiteInfo::showImagePreview(QTreeWidgetItem* item)
{
if (!item) {
return;
}
QUrl imageUrl = QUrl::fromEncoded(item->text(1).toUtf8());
if (imageUrl.isRelative()) {
imageUrl = m_baseUrl.resolved(imageUrl);
}
QGraphicsScene* scene = new QGraphicsScene(ui->mediaPreview);
if (imageUrl.scheme() == QLatin1String("data")) {
QByteArray encodedUrl = item->text(1).toUtf8();
QByteArray imageData = encodedUrl.mid(encodedUrl.indexOf(',') + 1);
m_activePixmap = QzTools::pixmapFromByteArray(imageData);
}
else if (imageUrl.scheme() == QLatin1String("file")) {
m_activePixmap = QPixmap(imageUrl.toLocalFile());
}
else if (imageUrl.scheme() == QLatin1String("qrc")) {
m_activePixmap = QPixmap(imageUrl.toString().mid(3)); // Remove qrc from url
}
else {
QIODevice* cacheData = mApp->networkCache()->data(imageUrl);
if (!cacheData) {
m_activePixmap = QPixmap();
}
else {
m_activePixmap.loadFromData(cacheData->readAll());
}
}
if (m_activePixmap.isNull()) {
scene->addText(tr("Preview not available"));
}
else {
scene->addPixmap(m_activePixmap);
}
ui->mediaPreview->setScene(scene);
}
void SiteInfo::securityDetailsClicked()
{
ui->listWidget->setCurrentRow(3);
}
2011-03-02 16:57:41 +01:00
SiteInfo::~SiteInfo()
{
delete ui;
delete m_certWidget;
2011-03-02 16:57:41 +01:00
}
#endif