123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155 |
- // -*- mode: c++; tab-width: 4; indent-tabs-mode: t; eval: (progn (c-set-style "stroustrup") (c-set-offset 'innamespace 0)); -*-
- // vi:set ts=4 sts=4 sw=4 noet :
- //
- // Copyright 2010-2020 wkhtmltopdf authors
- //
- // This file is part of wkhtmltopdf.
- //
- // wkhtmltopdf is free software: you can redistribute it and/or modify
- // it under the terms of the GNU Lesser General Public License as published by
- // the Free Software Foundation, either version 3 of the License, or
- // (at your option) any later version.
- //
- // wkhtmltopdf 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 Lesser General Public License
- // along with wkhtmltopdf. If not, see <http://www.gnu.org/licenses/>.
- #ifndef __MULTIPAGELOADER_P_HH__
- #define __MULTIPAGELOADER_P_HH__
- #include "multipageloader.hh"
- #include "tempfile.hh"
- #include <QAtomicInt>
- #include <QAuthenticator>
- #include <QFile>
- #include <QFileInfo>
- #include <QNetworkAccessManager>
- #include <QNetworkCookieJar>
- #include <QNetworkReply>
- #include <QWebFrame>
- #include "dllbegin.inc"
- namespace wkhtmltopdf {
- class DLL_LOCAL MyNetworkProxyFactory: public QObject, public QNetworkProxyFactory {
- Q_OBJECT
- private:
- QList<QString> bypassHosts;
- QList<QNetworkProxy> originalProxy, noProxy;
- public:
- MyNetworkProxyFactory(QNetworkProxy defaultProxy, QList<QString> bypassHosts);
- QList<QNetworkProxy> queryProxy (const QNetworkProxyQuery & query);
- };
- class DLL_LOCAL MyNetworkAccessManager: public QNetworkAccessManager {
- Q_OBJECT
- private:
- bool disposed;
- QSet<QString> allowed;
- const settings::LoadPage & settings;
- public:
- void dispose();
- void allow(QString path);
- MyNetworkAccessManager(const settings::LoadPage & s);
- QNetworkReply * createRequest(Operation op, const QNetworkRequest & req, QIODevice * outgoingData = 0);
- signals:
- void warning(const QString & text);
- void error(const QString & text);
- };
- class DLL_LOCAL MultiPageLoaderPrivate;
- class DLL_LOCAL ResourceObject;
- class DLL_LOCAL MyQWebPage: public QWebPage {
- Q_OBJECT ;
- private:
- ResourceObject & resource;
- public:
- MyQWebPage(ResourceObject & res);
- virtual void javaScriptAlert(QWebFrame * frame, const QString & msg);
- virtual bool javaScriptConfirm(QWebFrame * frame, const QString & msg);
- virtual bool javaScriptPrompt(QWebFrame * frame, const QString & msg, const QString & defaultValue, QString * result);
- virtual void javaScriptConsoleMessage(const QString & message, int lineNumber, const QString & sourceID);
- public slots:
- bool shouldInterruptJavaScript();
- };
- class DLL_LOCAL ResourceObject: public QObject {
- Q_OBJECT
- private:
- MyNetworkAccessManager networkAccessManager;
- QUrl url;
- int loginTry;
- int progress;
- bool finished;
- bool signalPrint;
- MultiPageLoaderPrivate & multiPageLoader;
- public:
- ResourceObject(MultiPageLoaderPrivate & mpl, const QUrl & u, const settings::LoadPage & s);
- MyQWebPage webPage;
- LoaderObject lo;
- int httpErrorCode;
- const settings::LoadPage settings;
- public slots:
- void load();
- void loadStarted();
- void loadProgress(int progress);
- void loadFinished(bool ok);
- void waitWindowStatus();
- void printRequested(QWebFrame * frame);
- void loadDone();
- void handleAuthenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator);
- void warning(const QString & str);
- void error(const QString & str);
- void sslErrors(QNetworkReply *reply, const QList<QSslError> &);
- void amfinished(QNetworkReply * reply);
- };
- class DLL_LOCAL MyCookieJar: public QNetworkCookieJar {
- private:
- QList<QNetworkCookie> extraCookies;
- public:
- void clearExtraCookies();
- void useCookie(const QUrl & url, const QString & name, const QString & value);
- QList<QNetworkCookie> cookiesForUrl(const QUrl & url) const;
- void loadFromFile(const QString & path);
- void saveToFile(const QString & path);
- };
- class DLL_LOCAL MultiPageLoaderPrivate: public QObject {
- Q_OBJECT
- public:
- MyCookieJar * cookieJar;
- MultiPageLoader & outer;
- const settings::LoadGlobal settings;
- QList<ResourceObject *> resources;
- int loading;
- int progressSum;
- bool isMainLoader;
- bool loadStartedEmitted;
- bool hasError;
- bool finishedEmitted;
- TempFile tempIn;
- int dpi;
- MultiPageLoaderPrivate(const settings::LoadGlobal & settings, int dpi, MultiPageLoader & o);
- ~MultiPageLoaderPrivate();
- LoaderObject * addResource(const QUrl & url, const settings::LoadPage & settings);
- void load();
- void clearResources();
- void cancel();
- public slots:
- void fail();
- void loadDone();
- };
- }
- #include "dllend.inc"
- #endif //__MULTIPAGELOADER_P_HH__
|