2011-03-02 16:57:41 +01:00
|
|
|
/* ============================================================
|
2011-03-03 18:29:20 +01:00
|
|
|
* QupZilla - WebKit based browser
|
2012-01-01 15:29:55 +01:00
|
|
|
* Copyright (C) 2010-2012 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
|
|
|
*
|
|
|
|
* Copyright (C) 2009 by Benjamin C. Meyer <ben@meyerhome.net>
|
|
|
|
* Copyright (C) 2010 by Matthieu Gicquel <matgic78@gmail.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/>.
|
|
|
|
*
|
|
|
|
* ============================================================ */
|
|
|
|
#include "clicktoflash.h"
|
|
|
|
#include "clickablelabel.h"
|
|
|
|
#include "mainapplication.h"
|
|
|
|
#include "pluginproxy.h"
|
2011-08-27 17:52:44 +02:00
|
|
|
#include "squeezelabelv2.h"
|
2011-10-27 14:26:40 +02:00
|
|
|
#include "webpage.h"
|
2013-01-22 19:04:22 +01:00
|
|
|
#include "qztools.h"
|
2011-10-27 14:26:40 +02:00
|
|
|
#include "qupzilla.h"
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QToolButton>
|
|
|
|
#include <QFormLayout>
|
|
|
|
#include <QMenu>
|
|
|
|
#include <QTimer>
|
2012-07-01 12:07:00 +02:00
|
|
|
#include <QWebView>
|
2012-06-24 23:46:32 +02:00
|
|
|
#include <QNetworkRequest>
|
2012-02-29 18:33:50 +01:00
|
|
|
#include <QWebHitTestResult>
|
|
|
|
|
2011-12-21 20:58:02 +01:00
|
|
|
QUrl ClickToFlash::acceptedUrl;
|
|
|
|
QStringList ClickToFlash::acceptedArgNames;
|
|
|
|
QStringList ClickToFlash::acceptedArgValues;
|
|
|
|
|
2011-10-27 14:26:40 +02:00
|
|
|
ClickToFlash::ClickToFlash(const QUrl &pluginUrl, const QStringList &argumentNames, const QStringList &argumentValues, WebPage* parentPage)
|
2011-11-06 17:01:23 +01:00
|
|
|
: QWidget()
|
|
|
|
, m_argumentNames(argumentNames)
|
|
|
|
, m_argumentValues(argumentValues)
|
|
|
|
, m_toolButton(0)
|
|
|
|
, m_layout1(0)
|
|
|
|
, m_layout2(0)
|
|
|
|
, m_frame(0)
|
|
|
|
, m_url(pluginUrl)
|
|
|
|
, m_page(parentPage)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-10-09 14:51:25 +02:00
|
|
|
m_layout1 = new QHBoxLayout(this);
|
|
|
|
m_frame = new QFrame(this);
|
|
|
|
m_frame->setObjectName("click2flash-frame");
|
2011-11-06 17:01:23 +01:00
|
|
|
m_frame->setContentsMargins(0, 0, 0, 0);
|
2011-10-09 14:51:25 +02:00
|
|
|
m_layout2 = new QHBoxLayout(m_frame);
|
|
|
|
m_toolButton = new QToolButton(this);
|
|
|
|
m_toolButton->setObjectName("click2flash-toolbutton");
|
|
|
|
|
|
|
|
m_toolButton->setSizePolicy(QSizePolicy::Expanding, QSizePolicy::Expanding);
|
|
|
|
m_toolButton->setCursor(Qt::PointingHandCursor);
|
|
|
|
m_layout2->addWidget(m_toolButton);
|
|
|
|
m_layout1->addWidget(m_frame);
|
2011-11-06 17:01:23 +01:00
|
|
|
m_layout1->setContentsMargins(0, 0, 0, 0);
|
|
|
|
m_layout2->setContentsMargins(0, 0, 0, 0);
|
2011-10-09 14:51:25 +02:00
|
|
|
|
|
|
|
connect(m_toolButton, SIGNAL(clicked()), this, SLOT(load()));
|
2011-11-06 17:01:23 +01:00
|
|
|
setMinimumSize(27, 27);
|
2011-03-02 16:57:41 +01:00
|
|
|
|
|
|
|
setContextMenuPolicy(Qt::CustomContextMenu);
|
|
|
|
connect(this, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(customContextMenuRequested(QPoint)));
|
2011-10-27 14:26:40 +02:00
|
|
|
|
|
|
|
QTimer::singleShot(0, this, SLOT(ensurePluginVisible()));
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
|
2011-12-21 20:58:02 +01:00
|
|
|
bool ClickToFlash::isAlreadyAccepted(const QUrl &url, const QStringList &argumentNames, const QStringList &argumentValues)
|
|
|
|
{
|
|
|
|
return (url == acceptedUrl &&
|
|
|
|
argumentNames == acceptedArgNames &&
|
|
|
|
argumentValues == acceptedArgValues);
|
|
|
|
}
|
|
|
|
|
2011-10-27 14:26:40 +02:00
|
|
|
void ClickToFlash::ensurePluginVisible()
|
|
|
|
{
|
|
|
|
// Well, kind of a dirty workaround, but it works.
|
|
|
|
// I don't know any other method how to show our plugin
|
|
|
|
// and adjust it on the proper position in page
|
|
|
|
|
2011-10-30 16:32:36 +01:00
|
|
|
// Scheduling adjustingPage rather than actually changing zoomFactor
|
|
|
|
// right now, as it is CPU intensive when there is lot of click2flash
|
|
|
|
// objects on page
|
|
|
|
|
|
|
|
m_page->scheduleAdjustPage();
|
2011-10-27 14:26:40 +02:00
|
|
|
}
|
2011-10-30 16:32:36 +01:00
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
void ClickToFlash::customContextMenuRequested(const QPoint &pos)
|
|
|
|
{
|
|
|
|
QMenu menu;
|
2011-07-11 22:53:32 +02:00
|
|
|
menu.addAction(tr("Object blocked by ClickToFlash"));
|
2012-01-21 18:16:47 +01:00
|
|
|
menu.addAction(tr("Show more information about object"), this, SLOT(showInfo()));
|
2011-03-02 16:57:41 +01:00
|
|
|
menu.addSeparator();
|
2012-07-01 12:07:00 +02:00
|
|
|
menu.addAction(tr("Delete object"), this, SLOT(hideObject()));
|
2011-03-02 16:57:41 +01:00
|
|
|
menu.addAction(tr("Add %1 to whitelist").arg(m_url.host()), this, SLOT(toWhitelist()));
|
|
|
|
menu.actions().at(0)->setEnabled(false);
|
|
|
|
menu.exec(mapToGlobal(pos));
|
|
|
|
}
|
|
|
|
|
|
|
|
void ClickToFlash::toWhitelist()
|
|
|
|
{
|
2011-03-04 13:59:07 +01:00
|
|
|
mApp->plugins()->c2f_addWhitelist(m_url.host());
|
2011-03-02 16:57:41 +01:00
|
|
|
load();
|
|
|
|
}
|
|
|
|
|
2012-07-01 12:07:00 +02:00
|
|
|
void ClickToFlash::hideObject()
|
2011-04-21 13:28:07 +02:00
|
|
|
{
|
|
|
|
findElement();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!m_element.isNull()) {
|
2012-01-23 17:30:34 +01:00
|
|
|
m_element.setStyleProperty("visibility", "hidden");
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-11-04 22:34:45 +01:00
|
|
|
else {
|
2011-10-09 14:57:13 +02:00
|
|
|
hide();
|
2011-11-04 22:34:45 +01:00
|
|
|
}
|
2011-05-05 16:27:48 +02:00
|
|
|
|
|
|
|
//deleteLater(); //Well, it should be there, but therefore it sometimes crashes
|
2011-04-21 13:28:07 +02:00
|
|
|
}
|
|
|
|
|
2011-04-18 21:35:57 +02:00
|
|
|
void ClickToFlash::findElement()
|
|
|
|
{
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!m_toolButton) {
|
2011-10-09 14:51:25 +02:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-10-09 14:51:25 +02:00
|
|
|
|
2011-04-18 21:35:57 +02:00
|
|
|
QWidget* parent = parentWidget();
|
|
|
|
QWebView* view = 0;
|
2011-03-02 16:57:41 +01:00
|
|
|
while (parent) {
|
2011-04-18 21:35:57 +02:00
|
|
|
if (QWebView* aView = qobject_cast<QWebView*>(parent)) {
|
2011-03-02 16:57:41 +01:00
|
|
|
view = aView;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
parent = parent->parentWidget();
|
|
|
|
}
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!view) {
|
2011-03-02 16:57:41 +01:00
|
|
|
return;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2011-12-21 20:58:02 +01:00
|
|
|
QPoint objectPos = view->mapFromGlobal(m_toolButton->mapToGlobal(m_toolButton->pos()));
|
|
|
|
QWebFrame* objectFrame = view->page()->frameAt(objectPos);
|
2011-12-28 23:25:40 +01:00
|
|
|
QWebHitTestResult hitResult;
|
|
|
|
QWebElement hitElement;
|
|
|
|
|
|
|
|
if (objectFrame) {
|
|
|
|
hitResult = objectFrame->hitTestContent(objectPos);
|
|
|
|
hitElement = hitResult.element();
|
|
|
|
}
|
2011-12-21 20:58:02 +01:00
|
|
|
|
2012-01-06 17:31:44 +01:00
|
|
|
if (!hitElement.isNull() && (hitElement.tagName().compare("embed", Qt::CaseInsensitive) == 0 ||
|
2012-01-07 10:26:52 +01:00
|
|
|
hitElement.tagName().compare("object", Qt::CaseInsensitive) == 0)) {
|
2011-12-21 20:58:02 +01:00
|
|
|
m_element = hitElement;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// HitTestResult failed, trying to find element by src
|
|
|
|
// attribute in elements at all frames on page (less accurate)
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
QList<QWebFrame*> frames;
|
2011-12-21 20:58:02 +01:00
|
|
|
frames.append(objectFrame);
|
2011-04-18 21:35:57 +02:00
|
|
|
m_mainFrame = view->page()->mainFrame();
|
|
|
|
frames.append(m_mainFrame);
|
|
|
|
|
2011-03-02 16:57:41 +01:00
|
|
|
while (!frames.isEmpty()) {
|
2011-04-18 21:35:57 +02:00
|
|
|
QWebFrame* frame = frames.takeFirst();
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!frame) {
|
2011-05-05 16:27:48 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
QWebElement docElement = frame->documentElement();
|
|
|
|
|
|
|
|
QWebElementCollection elements;
|
2011-04-15 20:44:57 +02:00
|
|
|
elements.append(docElement.findAll(QLatin1String("embed")));
|
2011-04-18 21:35:57 +02:00
|
|
|
elements.append(docElement.findAll(QLatin1String("object")));
|
2011-04-15 20:44:57 +02:00
|
|
|
|
2012-01-24 19:12:31 +01:00
|
|
|
foreach(const QWebElement & element, elements) {
|
2011-11-06 17:01:23 +01:00
|
|
|
if (!checkElement(element) && !checkUrlOnElement(element)) {
|
2011-04-15 20:44:57 +02:00
|
|
|
continue;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-18 21:35:57 +02:00
|
|
|
m_element = element;
|
2011-04-15 20:44:57 +02:00
|
|
|
return;
|
2011-03-02 16:57:41 +01:00
|
|
|
}
|
|
|
|
frames += frame->childFrames();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-04-18 21:35:57 +02:00
|
|
|
void ClickToFlash::load()
|
|
|
|
{
|
|
|
|
findElement();
|
|
|
|
if (m_element.isNull()) {
|
2011-04-21 13:28:07 +02:00
|
|
|
qWarning("Click2Flash: Cannot find Flash object.");
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
else {
|
2012-04-15 15:44:08 +02:00
|
|
|
/*
|
|
|
|
Old code caused sometimes flashing of the whole browser window and then somehow
|
|
|
|
ruined rendering of opacity effects, etc.. in the window on X11.
|
|
|
|
|
|
|
|
QWebElement substitute = m_element.clone();
|
|
|
|
substitute.setAttribute(QLatin1String("type"), "application/futuresplash");
|
|
|
|
m_element.replace(substitute);
|
|
|
|
|
|
|
|
So asynchronous JavaScript code is used to remove element from page and then substitute
|
|
|
|
it with unblocked Flash. The JavaScript code is:
|
|
|
|
|
2013-01-22 19:04:22 +01:00
|
|
|
var QzTools::c2f_clone = this.cloneNode(true);
|
|
|
|
var QzTools::c2f_parentNode = this.parentNode;
|
|
|
|
var QzTools::c2f_substituteElement = document.createElement(this.tagName);
|
2012-04-15 15:44:08 +02:00
|
|
|
|
2013-01-22 19:04:22 +01:00
|
|
|
QzTools::c2f_substituteElement.width = this.width;
|
|
|
|
QzTools::c2f_substituteElement.height = this.height;
|
2012-04-15 15:44:08 +02:00
|
|
|
|
2013-01-22 19:04:22 +01:00
|
|
|
this.parentNode.replaceChild(QzTools::c2f_substituteElement, this);
|
2012-04-17 15:11:26 +02:00
|
|
|
|
|
|
|
setTimeout(function(){
|
2013-01-22 19:04:22 +01:00
|
|
|
QzTools::c2f_parentNode.replaceChild(QzTools::c2f_clone, QzTools::c2f_substituteElement);
|
2012-04-17 15:11:26 +02:00
|
|
|
}, 250);
|
2012-04-15 15:44:08 +02:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2012-04-15 15:52:10 +02:00
|
|
|
acceptedUrl = m_url;
|
|
|
|
acceptedArgNames = m_argumentNames;
|
|
|
|
acceptedArgValues = m_argumentValues;
|
|
|
|
|
2012-04-15 15:44:08 +02:00
|
|
|
m_element.setAttribute("type", "application/futuresplash");
|
2012-04-15 15:52:10 +02:00
|
|
|
|
2013-01-22 19:04:22 +01:00
|
|
|
QString js = "var QzTools::c2f_clone=this.cloneNode(true);var QzTools::c2f_parentNode=this.parentNode;"
|
|
|
|
"var QzTools::c2f_substituteElement=document.createElement(this.tagName);"
|
|
|
|
"QzTools::c2f_substituteElement.width=this.width;QzTools::c2f_substituteElement.height=this.height;"
|
|
|
|
"this.parentNode.replaceChild(QzTools::c2f_substituteElement,this);setTimeout(function(){"
|
|
|
|
"QzTools::c2f_parentNode.replaceChild(QzTools::c2f_clone,QzTools::c2f_substituteElement);},250);";
|
2012-04-15 15:44:08 +02:00
|
|
|
|
2012-04-15 15:52:10 +02:00
|
|
|
m_element.evaluateJavaScript(js);
|
2011-04-18 21:35:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool ClickToFlash::checkUrlOnElement(QWebElement el)
|
2011-03-02 16:57:41 +01:00
|
|
|
{
|
2011-10-27 14:26:40 +02:00
|
|
|
QString checkString = el.attribute("src");
|
2011-11-06 17:01:23 +01:00
|
|
|
if (checkString.isEmpty()) {
|
2011-10-27 14:26:40 +02:00
|
|
|
checkString = el.attribute("data");
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
|
|
|
if (checkString.isEmpty()) {
|
2011-10-27 14:26:40 +02:00
|
|
|
checkString = el.attribute("value");
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
|
2012-07-01 12:07:00 +02:00
|
|
|
checkString = m_page->url().resolved(QUrl(checkString)).toString(QUrl::RemoveQuery);
|
2011-10-27 14:26:40 +02:00
|
|
|
|
2011-12-04 16:54:57 +01:00
|
|
|
return m_url.toEncoded().contains(checkString.toUtf8());
|
2011-04-18 21:35:57 +02:00
|
|
|
}
|
2011-04-15 20:44:57 +02:00
|
|
|
|
2011-04-18 21:35:57 +02:00
|
|
|
bool ClickToFlash::checkElement(QWebElement el)
|
|
|
|
{
|
|
|
|
if (m_argumentNames == el.attributeNames()) {
|
2012-01-24 19:12:31 +01:00
|
|
|
foreach(const QString & name, m_argumentNames) {
|
2011-11-06 17:01:23 +01:00
|
|
|
if (m_argumentValues.indexOf(el.attribute(name)) == -1) {
|
2011-04-18 21:35:57 +02:00
|
|
|
return false;
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-04-18 21:35:57 +02:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2011-03-02 16:57:41 +01:00
|
|
|
return false;
|
|
|
|
}
|
2011-07-11 22:53:32 +02:00
|
|
|
|
|
|
|
void ClickToFlash::showInfo()
|
|
|
|
{
|
|
|
|
QWidget* widg = new QWidget();
|
|
|
|
widg->setAttribute(Qt::WA_DeleteOnClose);
|
|
|
|
widg->setWindowTitle(tr("Flash Object"));
|
|
|
|
QFormLayout* lay = new QFormLayout(widg);
|
|
|
|
|
|
|
|
lay->addRow(new QLabel(tr("<b>Attribute Name</b>")), new QLabel(tr("<b>Value</b>")));
|
|
|
|
|
|
|
|
int i = 0;
|
2012-01-24 19:12:31 +01:00
|
|
|
foreach(const QString & name, m_argumentNames) {
|
2011-07-11 22:53:32 +02:00
|
|
|
QString value = m_argumentValues.at(i);
|
2011-11-27 15:43:54 +01:00
|
|
|
SqueezeLabelV2* valueLabel = new SqueezeLabelV2(value);
|
|
|
|
valueLabel->setTextInteractionFlags(Qt::TextSelectableByMouse | Qt::LinksAccessibleByMouse);
|
|
|
|
|
|
|
|
lay->addRow(new SqueezeLabelV2(name), valueLabel);
|
2011-07-11 22:53:32 +02:00
|
|
|
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
2011-11-06 17:01:23 +01:00
|
|
|
if (i == 0) {
|
2012-01-21 18:16:47 +01:00
|
|
|
lay->addRow(new QLabel(tr("No more information available.")));
|
2011-11-06 17:01:23 +01:00
|
|
|
}
|
2011-07-11 22:53:32 +02:00
|
|
|
|
2011-08-27 17:52:44 +02:00
|
|
|
widg->setMaximumHeight(500);
|
2013-01-22 19:04:22 +01:00
|
|
|
QzTools::centerWidgetToParent(widg, m_page->view());
|
2011-07-11 22:53:32 +02:00
|
|
|
widg->show();
|
|
|
|
}
|