OLD | NEW |
(Empty) | |
| 1 # coding: utf-8 |
| 2 |
| 3 # This file is part of the Adblock Plus web scripts, |
| 4 # Copyright (C) 2006-2014 Eyeo GmbH |
| 5 # |
| 6 # Adblock Plus is free software: you can redistribute it and/or modify |
| 7 # it under the terms of the GNU General Public License version 3 as |
| 8 # published by the Free Software Foundation. |
| 9 # |
| 10 # Adblock Plus is distributed in the hope that it will be useful, |
| 11 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 # GNU General Public License for more details. |
| 14 # |
| 15 # You should have received a copy of the GNU General Public License |
| 16 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 17 |
| 18 import re |
| 19 import time |
| 20 import posixpath |
| 21 import urlparse |
| 22 import threading |
| 23 import traceback |
| 24 from ConfigParser import SafeConfigParser |
| 25 from sitescripts.web import url_handler |
| 26 from sitescripts.extensions.utils import getDownloadLinks |
| 27 |
| 28 links = {} |
| 29 UPDATE_INTERVAL = 10 * 60 # 10 minutes |
| 30 |
| 31 @url_handler('/latest/') |
| 32 def handle_request(environ, start_response): |
| 33 request = urlparse.urlparse(environ.get('REQUEST_URI', '')) |
| 34 basename = posixpath.splitext(posixpath.basename(request.path))[0] |
| 35 if basename in links: |
| 36 start_response('302 Found', [('Location', links[basename].encode("utf-8"))]) |
| 37 else: |
| 38 start_response('404 Not Found', []) |
| 39 return [] |
| 40 |
| 41 def _get_links(): |
| 42 parser = SafeConfigParser() |
| 43 getDownloadLinks(parser) |
| 44 result = {} |
| 45 for section in parser.sections(): |
| 46 result[section] = parser.get(section, "downloadURL") |
| 47 return result |
| 48 |
| 49 def _update_links(): |
| 50 global links |
| 51 |
| 52 while True: |
| 53 try: |
| 54 links = _get_links() |
| 55 except: |
| 56 traceback.print_exc() |
| 57 time.sleep(UPDATE_INTERVAL) |
| 58 |
| 59 t = threading.Thread(target = _update_links) |
| 60 t.daemon = True |
| 61 t.start() |
OLD | NEW |