]> git.phdru.name Git - bookmarks_db.git/blob - Robots/bkmk_rsimple.py
399cf064900be84c7a29e2d43ded5df7aeb7dd47
[bookmarks_db.git] / Robots / bkmk_rsimple.py
1 """
2    Simple, strightforward robot
3
4    Written by Oleg BroytMann. Copyright (C) 2000-2007 PhiloSoft Design.
5 """
6
7 import sys, os
8 import time, urllib
9 from base64 import b64encode
10 from urlparse import urljoin
11
12 from m_lib.net.www.util import parse_time
13 from m_lib.md5wrapper import md5wrapper
14
15 from bkmk_objects import Robot
16 from parse_html import parse_html
17
18
19 class RedirectException(Exception):
20    reloc_dict = {
21       301: "perm.",
22       302: "temp.",
23       "html": "html"
24    }
25    def __init__(self, errcode, newurl):
26       Exception.__init__(self, "(%s) to %s" % (self.reloc_dict[errcode], newurl))
27       self.url = newurl
28
29
30 class MyURLopener(urllib.URLopener):
31    # Error 302 -- relocated (temporarily)
32    def http_error_302(self, url, fp, errcode, errmsg, headers, data=None): 
33       if headers.has_key('location'):
34          newurl = headers['location']
35       elif headers.has_key('uri'):
36          newurl = headers['uri']
37       else:
38          newurl = "Nowhere"
39       raise RedirectException(errcode, newurl)
40
41    # Error 301 -- also relocated (permanently)
42    http_error_301 = http_error_302
43
44    # Error 401 -- authentication required
45    def http_error_401(self, url, fp, errcode, errmsg, headers, data=None): 
46       raise IOError, ('http error', errcode, "Authentication required ", headers)
47
48
49 urllib._urlopener = MyURLopener()
50
51 # Fake headers to pretend this is a real browser
52 _version = "Mozilla/5.0 (X11; U; Linux 2.6 i686; en) Gecko/20001221 Firefox/2.0.0"
53 urllib._urlopener.addheaders[0] = ('User-Agent', _version)
54 _version = "bookmarks_db (Python %d.%d.%d; urllib/%s)" % (
55    sys.version_info[0], sys.version_info[1], sys.version_info[2], urllib.__version__)
56 urllib._urlopener.addheader('X-User-Agent', _version)
57 urllib._urlopener.addheader('Referer', '')
58
59 urllib._urlopener.addheader('Connection', 'close')
60 urllib._urlopener.addheader('Accept', '*/*')
61 urllib._urlopener.addheader('Accept-Language', 'ru,en')
62 urllib._urlopener.addheader('Cache-Control', 'max-age=300')
63
64
65 def get_error(msg):
66    if isinstance(msg, str):
67       return msg
68
69    else:
70       s = []
71       for i in msg:
72          s.append("'%s'" % str(i).replace('\n', "\\n"))
73       return "(%s)" % ' '.join(s)
74
75
76 urllib_ftpwrapper = urllib.ftpwrapper
77 ftpcache_key = None
78
79 class myftpwrapper(urllib_ftpwrapper):
80    def __init__(self, user, passwd, host, port, dirs):
81       urllib_ftpwrapper.__init__(self, user, passwd, host, port, dirs)
82       global ftpcache_key
83       ftpcache_key = (user, host, port, tuple(dirs))
84
85 urllib.ftpwrapper = myftpwrapper
86
87 def get_welcome():
88    global ftpcache_key
89    _welcome = urllib._urlopener.ftpcache[ftpcache_key].ftp.welcome
90    ftpcache_key = None # I am assuming there are no duplicate ftp URLs in db.
91                        # If there are - ftpcache_key in prev line is invalid.
92    return _welcome
93
94
95 class robot_simple(Robot):
96    def check_url(self, bookmark):
97       if not self.tempfname:
98          self.tempfname = bookmark.tempfname
99
100       try:
101          try:
102             self.start = int(time.time())
103             bookmark.icon = None
104
105             url_type, url_rest = urllib.splittype(bookmark.href)
106             url_host, url_path = urllib.splithost(url_rest)
107             url_path, url_tag  = urllib.splittag(url_path)
108
109             urllib._urlopener.addheaders[2] = ('Referer', "%s://%s%s" % (url_type, url_host, url_path))
110             if bookmark.charset: urllib._urlopener.addheader('Accept-Charset', bookmark.charset)
111             fname, headers = urllib.urlretrieve("%s://%s%s" % (url_type, url_host, url_path), self.tempfname)
112             if bookmark.charset: del urllib._urlopener.addheaders[-1]
113
114             size = 0
115             last_modified = None
116
117             if headers:
118                try:
119                   size = headers["Content-Length"]
120                except KeyError:
121                   pass
122
123                try:
124                   last_modified = headers["Last-Modified"]
125                except KeyError:
126                   pass
127
128                if last_modified:
129                   last_modified = parse_time(last_modified)
130
131             if last_modified:
132                last_modified = str(int(last_modified))
133             else:
134                last_modified = bookmark.last_visit
135
136             bookmark.size = size
137             bookmark.last_modified = last_modified
138
139             md5 = md5wrapper()
140             if urllib._urlopener.type == "ftp": # Pass welcome message through MD5
141                md5.update(get_welcome())
142
143             md5.md5file(self.tempfname)
144             bookmark.md5 = str(md5)
145
146             if headers:
147                try:
148                   content_type = headers["Content-Type"]
149                   try:
150                      content_type, charset = content_type.split(';')
151                      content_type = content_type.strip()
152                      charset = charset.split('=')[1].strip()
153                      self.log("   HTTP charset   : %s" % charset)
154                   except (ValueError, IndexError):
155                      charset = None
156                      self.log("   no charset in Content-Type header")
157                   if content_type == "text/html":
158                      parser = parse_html(fname, charset, self.log)
159                      bookmark.real_title = parser.title
160                      if parser.refresh:
161                         refresh = parser.refresh
162                         try:
163                            url = refresh.split('=', 1)[1]
164                         except IndexError:
165                            url = "self"
166                         try:
167                            timeout = float(refresh.split(';')[0])
168                         except (IndexError, ValueError):
169                            raise RedirectException("html", "Bad redirect to %s (%s)" % (url, refresh))
170                         else:
171                            try:
172                               timeout = int(refresh.split(';')[0])
173                            except ValueError:
174                               pass # float timeout
175                            raise RedirectException("html", "%s (%s sec)" % (url, timeout))
176
177                      # Get favicon.ico
178                      icon = parser.icon
179                      if not icon:
180                         icon = "/favicon.ico"
181                      icon = urljoin("%s://%s%s" % (url_type, url_host, url_path), icon)
182                      self.log("   looking for icon at: %s" % icon)
183                      try:
184                         for i in range(8):
185                            try:
186                               fname, headers = urllib.urlretrieve(icon)
187                            except RedirectException, e:
188                               icon = e.url
189                               self.log("       redirect to : %s" % icon)
190                            else:
191                               break
192                         else:
193                            raise IOError("Too many redirects")
194                      except:
195                         etype, emsg, tb = sys.exc_info()
196                         self.log("   no icon        : %s %s" % (etype, emsg))
197                         etype = None
198                         emsg = None
199                         tb = None
200                      else:
201                         content_type = headers["Content-Type"]
202                         if content_type.startswith("image/"):
203                            icon_file = open(fname, "rb")
204                            icon = icon_file.read()
205                            icon_file.close()
206                            bookmark.icon = "data:%s;base64,%s" % (content_type, b64encode(icon))
207                            self.log("   got icon       : %s" % content_type)
208                         else:
209                            self.log("   no icon        : bad content type '%s'" % content_type)
210                         os.remove(fname)
211
212                except KeyError:
213                   pass
214
215          except IOError, msg:
216             if (msg[0] == "http error") and (msg[1] == -1):
217                bookmark.no_error = "The server did not return any header - it is not an error, actually"
218             else:
219                bookmark.error = get_error(msg)
220
221          except EOFError:
222             bookmark.error = "Unexpected EOF (FTP server closed connection)"
223
224          except RedirectException, msg:
225             bookmark.moved = str(msg)
226
227          except KeyboardInterrupt:
228             return 0
229
230       finally:
231          self.finish_check_url(bookmark)
232
233       # Tested
234       return 1
235
236
237    def finish_check_url(self, bookmark):
238       # Calculate these attributes even in case of an error
239       if os.path.exists(self.tempfname):
240          size = str(os.path.getsize(self.tempfname))
241          if size[-1] == 'L':
242             size = size[:-1]
243          bookmark.size = size
244
245       start = self.start
246       bookmark.last_tested = str(start)
247
248       now = int(time.time())
249       bookmark.test_time = str(now - start)