-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgoodiffmonitor.py
659 lines (560 loc) · 26.1 KB
/
goodiffmonitor.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
"""
This module provides the core functionality of the GooDiff monitor application.
"""
__version__ = "2.1"
__author__ = "Michael G. Noll (http://www.quuxlabs.com/), Alexandre Dulaunoy (http://www.quuxlabs.com/)"
__copyright__ = "(C) 2006-2010 Michael G. Noll, Alexandre Dulaunoy"
__license__ = "AGPL 3.0"
__email__ = "[email protected]"
import ConfigParser
import datetime
import htmlentitydefs
import httplib
import os
import re
import socket
import sys
import time
import unittest
import urlparse
import urllib
from xml.sax import make_parser
# external dependencies
try:
from BeautifulSoup import BeautifulSoup
except:
print "Could not import BeautifulSoup. Get it from http://www.crummy.com/software/BeautifulSoup/."
raise
try:
import pysvn
except:
print "Could not import pysvn. Get it from http://pysvn.tigris.org/."
raise
from includes.ConfigReader import ConfigReader
from includes.GooDiffProvider import GooDiffProvider
from includes.GooDiffService import GooDiffService
import includes.html2text
class GooDiffMonitor(object):
"""The heart of GooDiff.org: an automated web document monitoring script with a Subversion interface.
"""
def __init__(self,
configuration_global="config/goodiffmonitor.ini",
configuration_providers="config/providers.xml",
archive_source=None,
archive_text=None,
name=None,
http_proxy=None,
verbosity=None,
commit=None,
default_replace_with=None,
user_agent=None,
tries=None,
max_depth=None,
wait_seconds=None,
):
"""
Parameters:
archive_source:
Absolute path to SVN repository for (raw) document sources
archive_text:
Absolute path to SVN repository for textified documents
name (optional, default: 'GooDiffMonitor')
Name of the script; used for verbose output
http_proxy (optional, default: None)
If set, the specified HTTP proxy is used.
verbosity (optional, default: 1)
Verbosity level for output of status information.
Set to 0 to disable.
commit (optional, default: True)
Whether to commit or not commit changes to the repositories.
default_replace_with (optional, default: 'REMOVED BY GOODIFF')
Used to replace content specified by replace patterns in
provider configuration file.
user_agent (optional, default: 'Mozilla/5.0 (compatible; GooDiff/2.0; http://www.goodiff.org/wiki/GooDiffMonitor)')
The user agent HTTP header to use when downloading
documents from the WWW. Can be configured in the
configuration file.
tries (optional, default: 5):
Try the specified number of times when downloading a
monitored document fails. tries must be >= 1.
See also wait_seconds.
max_depth (optional, default: 3):
Follow up to max_depth redirects for a url.
max_depth must be >= 1.
wait_seconds (optional, default: 2):
Wait the specified number of seconds before re-trying to
download a monitored document. wait_seconds must be >= 0.
See also tries.
"""
self.configuration_global = configuration_global
self.configuration_providers = configuration_providers
self.name = None
self.archive_source = None
self.archive_text = None
self.http_proxy = None
self.verbosity = None
self.commit = None
self.default_replace_with = None
self.user_agent = None
self.tries = None
self.max_depth = None
self.wait_seconds = None
# load configuration files
self._load()
# overwrite configuration settings with parameters if they are set;
# use default values for settings missing in configuration file AND
# not specified via parameters
if archive_source is not None:
self.archive_source = archive_source
if archive_text is not None:
self.archive_text = archive_text
if name is None:
if self.name is None:
self.name = 'GooDiffMonitor'
else:
self.name = name
if http_proxy is not None:
self.http_proxy = http_proxy
if verbosity is None:
if self.verbosity is None:
self.verbosity = 1
else:
self.verbosity = verbosity
if commit is None:
if self.commit is None:
self.commit = True
else:
self.commit = commit
if default_replace_with is None:
if self.default_replace_with is None:
self.default_replace_with = "REMOVED_BY_GOODIFF"
else:
self.default_replace_with = default_replace_with
if user_agent is None:
if self.user_agent is None:
self.user_agent = 'Mozilla/5.0 (compatible; GooDiff/2.0; http://www.goodiff.org/wiki/GooDiffMonitor)'
else:
self.user_agent = user_agent
if tries is None:
if self.tries is None:
self.tries = 5
else:
self.tries = tries
if max_depth is None:
if self.max_depth is None:
self.max_depth = 3
else:
self.max_depth = max_depth
if wait_seconds is None:
if self.wait_seconds is None:
self.wait_seconds = 2
else:
self.wait_seconds = wait_seconds
# sanity checks
assert self.archive_source is not None
assert self.archive_text is not None
assert self.commit is not None
assert self.default_replace_with is not None
assert self.user_agent is not None
assert self.tries >= 1
assert self.max_depth >= 1
assert self.wait_seconds >= 0
self.svnclient = pysvn.Client()
def download(self, url):
"""Download url from the Internet.
Returns:
a tuple of (http_code, source)
If a networking error occurs, (-1, "") will be returned.
"""
# see http://www.goodiff.org/wiki/FAQ why GooDiffMonitor
# is not a robot, and thus does not care for robots.txt
user_agent = self.user_agent
method = "GET"
request_headers = { 'User-agent' : user_agent }
request_data = None
conn = None
if self.http_proxy:
hostname, port = self.http_proxy.split(":")
conn = httplib.HTTPConnection(hostname, port)
else:
hostname, port = self._get_hostname_and_port(url)
urlo = urlparse.urlsplit(url)
if urlo[0] == "https":
conn = httplib.HTTPSConnection(hostname, 443)
else:
conn = httplib.HTTPConnection(hostname, port)
http_code = -1
data = ""
try:
conn.request(method, url, request_data, request_headers)
response = conn.getresponse()
http_code = response.status
if self.verbosity > 1:
content_length = response.getheader('content-length', '')
if content_length:
print " Downloading", content_length, "bytes"
else:
print " Downloading ??? bytes"
raw_data = response.read()
data = unicode("", 'utf8')
try:
data = unicode(raw_data, 'utf8', errors='xmlcharrefreplace')
except TypeError:
# catches "TypeError: don't know how to handle UnicodeDecodeError in error callback"
data = unicode(raw_data, 'utf8', errors='replace')
except socket.error, msg:
print "[%s] Socket error for url '%s': %s" % (self.name, url, msg)
raise
return (http_code, data)
def _get_hostname_and_port(self, url):
"""Extract hostname and port from url and return it as a tuple.
If the port is not explicitly specified in the url, a default
value of 80 is returned for the port.
"""
result = urlparse.urlparse(url)
(scheme, netloc, path, parameters, query, fragment) = result
splitted = netloc.rsplit(":", 1)
hostname = splitted[0]
port = 80
if len(splitted) > 1 and splitted[1]:
port = int(splitted[1])
return (hostname, port)
def _load(self):
"""Load the configuration files."""
# location of the script itself; needed to make relative paths work
if not sys.path[0] == "":
SCRIPT_DIR = sys.path[0]
else:
# failback; this might not work 100% of the time though
SCRIPT_DIR = os.getcwd()
# read global configuration file
config = ConfigParser.ConfigParser()
config.read(SCRIPT_DIR + os.sep + self.configuration_global)
try:
self.name = config.get("General", "name")
except ConfigParser.NoOptionError:
pass
try:
self.http_proxy = config.get("General", "http_proxy")
except ConfigParser.NoOptionError:
pass
try:
self.verbosity = int(config.get("General", "verbosity"))
except ConfigParser.NoOptionError:
pass
except ValueError:
print 'verbosity must be an integer number'
try:
self.commit = bool(config.get("General", "commit"))
except ConfigParser.NoOptionError:
pass
try:
self.default_replace_with = config.get("General", "default_replace_with")
except ConfigParser.NoOptionError:
pass
try:
self.user_agent = config.get("General", "user_agent")
except ConfigParser.NoOptionError:
pass
try:
self.tries = int(config.get("General", "tries"))
except ConfigParser.NoOptionError:
pass
except ValueError:
print 'tries must be an integer number'
try:
self.max_depth = int(config.get("General", "max_depth"))
except ConfigParser.NoOptionError:
pass
except ValueError:
print 'max_depth must be an integer number'
try:
self.wait_seconds = int(config.get("General", "wait_seconds"))
except ConfigParser.NoOptionError:
pass
except ValueError:
print 'wait_seconds must be an integer number'
# flat-file archives (under Subversion RCS)
# no trailing slash!
self.archive_source = config.get("Archives", "source")
self.archive_text = config.get("Archives", "text")
# load the provider configuration (list of documents to be monitored)
providers = []
parser = make_parser()
configHandler = ConfigReader(providers)
parser.setContentHandler(configHandler)
parser.parse(open(SCRIPT_DIR + os.sep + self.configuration_providers))
self.providers = providers
def _url2filename(self, url):
"""Returns the safe conversion of url to a Unix filename."""
# remove leading and trailing whitespace
#
url = url.strip()
# add "index.html" suffix if we are monitoring a "directory" URL
if url.endswith("/"):
url += "index.html"
p = re.compile('(?P<prot>^https?)://(?P<filepart>.+)')
m = p.search(url)
if m:
protocol = m.group("prot")
filepart = m.group("filepart")
# replace un-safe characters in filepart with "_"
#
# it has been tested that storing and managing files with "?", "=", "&", "@", ":"
# in their names is working flawlessly on the local filesystem and on Subversion/Trac
# TODO: os.sep
filepart = re.sub(r'[^a-zA-Z0-9.,-/\?=&@:_]', '_', filepart)
# simple error checking
#
if not protocol or not filepart:
print "[%s] ERROR: Invalid url '%s' - protocol and/or filepart is/are empty" % (self.name, url)
raise GooDiffConfigurationError, "invalid url '%s' - protocol and/or filepart is/are empty" % url
# TODO: os.sep
p = re.compile('(?P<dirs>[a-zA-Z0-9.,-_/]*)/(?P<document>[a-zA-Z0-9.,-_?=&@:]+)')
m = p.search(filepart)
if m:
dirs = m.group("dirs")
document = m.group("document")
if not document:
print "[%s] ERROR: Invalid url '%s' - filename is empty" % (self.name, url)
raise GooDiffConfigurationError, "invalid url '%s' - filename is empty" % url
return filepart
else:
print "[%s] ERROR: Invalid url '%s'" % (self.name, url)
raise GooDiffConfigurationError, "invalid url '%s'" % url
else:
print "[%s] ERROR: Invalid url '%s'" % (self.name, url)
raise GooDiffConfigurationError, "invalid url '%s'" % url
def _create_directory(self, path):
"""Create directory specified by path and add it to revision control."""
if not os.access(path, os.F_OK):
os.mkdir(path)
if self.commit:
self.svnclient.add(path)
def _write_filename(self, base_dir, provider_name, filename, data):
"""Writes data to file.
The full path of the file will be composed by concatenating
base_dir, provider_name, and filename.
Any existing data in the file will be overwritten.
Parameters:
base_dir
the base directory of the file (absolute path recommended)
provider_name
name of the original provider of data (see providers.xml);
a directory named 'provider_name' will be created below base_dir
filename
the local filename to which data will be written;
generally, the filename is automatically generated by
mapping a url to local filename by calling
_url2filename()
data
the data to be written to file
"""
# we use the name of a provider as the name of the subdirectory for all documents of a provider
#
path = base_dir + os.sep + provider_name
self._create_directory(path)
# create required directories if necessary
#
directories = filename.split(os.sep)
# assumption: the part after the last os.sep is a file, not a directory
for dir in directories[:-1]:
path += os.sep + dir
self._create_directory(path)
fullpath = os.sep.join([base_dir, provider_name, filename])
# make newlines in data consistent
#data = re.sub(r'\r\n', '\n', data)
f = open(fullpath, "w")
f.write(data)
f.close()
if self.commit:
changes = self.svnclient.status(fullpath)
if fullpath in [f.path for f in changes if f.text_status == pysvn.wc_status_kind.unversioned]:
self.svnclient.add(fullpath)
def save_to_source_archive(self, provider_name, url, source, http_code):
"""Stores downloaded source of url with its http_code in mirror SVN repository."""
filename = self._url2filename(url)
encoded_source = source.encode('ascii', 'xmlcharrefreplace')
self._write_filename(self.archive_source, provider_name, filename, encoded_source)
def _strip_directory_path(self, directory, filename):
"""Remove the (leading) directory path from filename."""
return filename[len(directory):]
def commit_archive(self, directory, commit_message_footer):
"""Commit any changes in directory with commit_message_footer as footer of log message."""
if self.verbosity:
changes = self.svnclient.status(directory)
added = [f.path for f in changes if f.text_status == pysvn.wc_status_kind.added]
modified = [f.path for f in changes if f.text_status == pysvn.wc_status_kind.modified]
deleted = [f.path for f in changes if f.text_status == pysvn.wc_status_kind.deleted]
conflicted = [f.path for f in changes if f.text_status == pysvn.wc_status_kind.conflicted]
unversioned = [f.path for f in changes if f.text_status == pysvn.wc_status_kind.unversioned]
print "[%s] %s added, %s modified, %s deleted, %s conflicts, %s unversioned" % \
(self.name, len(added), len(modified), len(deleted), len(conflicted), len(unversioned))
# commit any changes
_message = ""
if added:
_message += "Added files:\n"
for file in added:
_message += " * %s\n" % self._strip_directory_path(directory, file)
_message += "\n"
if modified:
_message += "Modified files:\n"
for file in modified:
_message += " * %s\n" % self._strip_directory_path(directory, file)
_message += "\n"
if deleted:
_message += "Deleted files:\n"
for file in deleted:
_message += " * %s\n" % self._strip_directory_path(directory, file)
_message += "\n"
_message += commit_message_footer
print _message
self.svnclient.checkin([directory], _message)
def get_from_mirror(self, url, revision):
"""Returns the revision of source of url from mirror SVN repository."""
#TODO: needed only for rebuilding the archives from scratch due to changes to beautify/textify/etc.
pass
def replace(self, document, source):
"""Replace content in source of document by replacement patterns defined for document (see providers.xml)."""
for pattern, repl in document.replaces:
# empty string patterns are meaningless,
# and are the result of an error on the
# user's side in 100.0% of the cases
if pattern:
if not repl:
repl = self.default_replace_with
if self.verbosity > 1:
print " Replacing pattern '%s' with '%s'" % (pattern, repl)
source = re.sub(r'%s' % pattern, repl, source)
return source
def beautify(self, source):
"""Returns a beautified/tidied version of HTML/XHTML source."""
soup = BeautifulSoup(source)
return soup.prettify()
def textify(self, source):
"""Returns a text-only version (without markups etc.) from HTML/XHTML source."""
source = source.decode('utf8')
return includes.html2text.html2text(source)
def save_to_text_archive(self, provider_name, url, text, http_code):
"""Stores text version of url with its http_code in GooDiff SVN repository."""
filename = self._url2filename(url)
encoded_text = text.encode('ascii', 'xmlcharrefreplace')
# in contrast to save_to_mirror, we also "unescape" (="beautify")
# Unicode characters and HTML entities in the HTML source;
# e.g. "©" -> "(c)"
unicode_string = includes.html2text.unescape(encoded_text)
encoded_text = unicode_string.encode('ascii', 'xmlcharrefreplace')
self._write_filename(self.archive_text, provider_name, filename, encoded_text)
def run(self):
"""Run the monitor for all configured urls."""
print "[%s] Starting monitoring run at %s" % (self.name, datetime.datetime.now())
if self.verbosity:
documents = []
for provider in self.providers:
for service in provider.services:
for document in service.documents:
documents.append(document.url)
print "[%s] This run will monitor %s documents" % (self.name, len(documents))
# check whether the archive directories exists or not
if not os.path.exists(self.archive_source) or not os.path.isdir(self.archive_source):
print "ERROR: The source archive base directory", self.archive_source, "does not exist."
print " For safety reasons, it will not be created automatically."
print " Please create it manually via a SVN checkout of the source repository. Thanks!"
raise GooDiffInstallationError, "source archive directory '%s' does not exist" % self.archive_source
if not os.path.exists(self.archive_text) or not os.path.isdir(self.archive_text):
print "ERROR: The text archive base directory", self.archive_text, "does not exist."
print " For safety reasons, it will not be created automatically."
print " Please create it manually via a SVN checkout of the text repository. Thanks!"
raise GooDiffInstallationError, "text archive directory '%s' does not exist" % self.archive_text
# now monitor all the configured providers
for provider in self.providers:
if self.verbosity:
print "PROVIDER:", provider.name
for service in provider.services:
for document in service.documents:
if self.verbosity:
print "[", provider.name, ">", service.name, "] Processing ", document.url
self._process_document(provider.name, document)
if self.commit:
if self.verbosity:
print "[%s] Committing source archive" % (self.name)
self.commit_archive(self.archive_source, "%s run finished @ %s" % (self.name, datetime.datetime.now()))
if self.verbosity:
print "[%s] Committing text archive" % (self.name)
self.commit_archive(self.archive_text, "%s run finished @ %s" % (self.name, datetime.datetime.now()))
print "[%s] Finished monitoring run at %s" % (self.name, datetime.datetime.now())
def _preprocess_source(self, source):
"""Preprocess source of document in a way which does not change the semantics of it.
This method should be only used to ensure that processing the raw source
will not result in critical exceptions which we cannot handle via normal
means, e.g. because a malformatted source will break the Python interface
to Subversion.
"""
# pysvn doesn't like CTRL-M
source = re.sub("\015","",source)
return source
def _process_document(self, provider_name, document):
try:
tries = self.tries
max_depth = self.max_depth
depth = 0
while tries > 0:
if self.verbosity:
print " Downloading document (try %d of %d)" % (self.tries - tries + 1, self.tries)
# try to download the document
http_code, source = self.download(document.url)
if http_code != 200:
if ((http_code >= 300 and http_code <= 303) or http_code == 307) and depth <= max_depth:
# handle redirects etc.
depth += 1
if self.verbosity:
print " Redirect for document (going to depth %d, max depth is %d)" % (depth, max_depth)
#TODO: actually handle redirects ;-)
# Note: watch out that 'tries' and 'max_depth' do not interfer
# in an unwanted way (tries is decremented at the bottom
# of the while loop)
else:
# an error occurred during download (404, 403, 500, ...);
# please try again
if self.verbosity:
print " Failed download (error: %d)" % (http_code)
time.sleep(self.wait_seconds)
else:
if source:
if self.verbosity:
print " Preprocessing document"
source = self._preprocess_source(source)
if self.verbosity:
print " Saving document to source archive"
self.save_to_source_archive(provider_name, document.url, source, http_code)
# note: the simple check on 'document.replaces' is not fully correct;
# if the user entered an empty string pattern for a replace, the
# replace definition is counted here but is ignored in the
# subsequent call to replace()
if self.verbosity and document.replaces:
print " Cleaning document as configured"
replaced = self.replace(document, source)
beautified = self.beautify(replaced)
text = self.textify(beautified)
if self.verbosity:
print " Saving document to text archive"
self.save_to_text_archive(provider_name, document.url, text, http_code)
# we're done at this point
break
tries -= 1
except socket.error, msg:
# skip the document
print "[%s] Socket error for document '%s': %s" % (self.name, document.url, msg)
class GooDiffMonitorTester(unittest.TestCase):
def testMonitorRun(self):
"""Test a full monitor run."""
monitor = GooDiffMonitor()
monitor.run()
class GooDiffError(Exception):
pass
class GooDiffInstallationError(GooDiffError):
"""Indicates a problem with the installation or non-Python setup of GooDiffMonitor."""
class GooDiffConfigurationError(GooDiffError):
"""Indicates a problem with the configuration of GooDiffMonitor."""
if __name__ == "__main__":
unittest.main()