mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
a313d1befd
Refactored most of functionalities to WebPage object WebPage object can have settings Support different HTTP operations for loading a page Simplify buffer handling in render() Refactor render(), split the buffer rendering to its own function Render the web page using the tiling approach WebPage callback for it's console message Make exit() synchronous WebPage callback for its JS alert Updated all examples
86 lines
3.2 KiB
Python
86 lines
3.2 KiB
Python
'''
|
|
This file is part of the PyPhantomJS project.
|
|
|
|
Copyright (C) 2011 James Roe <roejames12@hotmail.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 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/>.
|
|
'''
|
|
|
|
from PyQt4.QtGui import QDesktopServices
|
|
from PyQt4.QtCore import qDebug, qWarning
|
|
from PyQt4.QtNetwork import QNetworkAccessManager, QNetworkDiskCache, \
|
|
QNetworkRequest
|
|
|
|
from plugincontroller import Bunch, do_action
|
|
|
|
|
|
class NetworkAccessManager(QNetworkAccessManager):
|
|
def __init__(self, diskCacheEnabled, ignoreSslErrors, parent=None):
|
|
QNetworkAccessManager.__init__(self, parent)
|
|
self.m_ignoreSslErrors = ignoreSslErrors
|
|
|
|
if parent.m_verbose:
|
|
self.finished.connect(self.handleFinished)
|
|
|
|
if diskCacheEnabled == 'yes':
|
|
m_networkDiskCache = QNetworkDiskCache()
|
|
m_networkDiskCache.setCacheDirectory(QDesktopServices.storageLocation(QDesktopServices.CacheLocation))
|
|
self.setCache(m_networkDiskCache)
|
|
|
|
do_action('NetworkAccessManagerInit', Bunch(locals()))
|
|
|
|
def createRequest(self, op, req, outgoingData):
|
|
if op == QNetworkAccessManager.GetOperation:
|
|
qDebug('HTTP/1.1 GET Request')
|
|
elif op == QNetworkAccessManager.PostOperation:
|
|
qDebug('HTTP/1.1 POST Request')
|
|
elif op == QNetworkAccessManager.HeadOperation:
|
|
qDebug('HTTP/1.1 HEAD Request')
|
|
elif op == QNetworkAccessManager.PutOperation:
|
|
qDebug('HTTP/1.1 PUT Request')
|
|
elif op == QNetworkAccessManager.DeleteOperation:
|
|
qDebug('HTTP/1.1 DELETE Request')
|
|
elif op == QNetworkAccessManager.CustomOperation:
|
|
qDebug('HTTP/1.1 CUSTOM Request')
|
|
else:
|
|
qWarning('Unexpected HTTP Operation Type')
|
|
|
|
qDebug('URL %s' % req.url().toString())
|
|
|
|
do_action('NetworkAccessManagerCreateRequestPre', Bunch(locals()))
|
|
|
|
reply = QNetworkAccessManager.createRequest(self, op, req, outgoingData)
|
|
|
|
if self.m_ignoreSslErrors == 'yes':
|
|
reply.ignoreSslErrors()
|
|
|
|
do_action('NetworkAccessManagerCreateRequestPost', Bunch(locals()))
|
|
|
|
return reply
|
|
|
|
def handleFinished(self, reply):
|
|
qDebug('HTTP/1.1 Response')
|
|
qDebug('URL %s' % reply.url().toString())
|
|
code = reply.attribute(QNetworkRequest.HttpStatusCodeAttribute)
|
|
if code:
|
|
qDebug('Status code: %d' % code)
|
|
|
|
do_action('NetworkAccessManagerHandleFinished', Bunch(locals()))
|
|
|
|
headerPairs = reply.rawHeaderPairs()
|
|
for pair in headerPairs:
|
|
qDebug('"%s" = "%s"' % (pair[0], pair[1]))
|
|
|
|
do_action('NetworkAccessManager', Bunch(locals()))
|