| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import base64 | 5 import base64 |
| 6 | 6 |
| 7 from appengine_wrappers import urlfetch | 7 from appengine_wrappers import urlfetch |
| 8 from future import Future | 8 from future import Future |
| 9 | 9 |
| 10 class _AsyncFetchDelegate(object): | 10 class _AsyncFetchDelegate(object): |
| 11 def __init__(self, rpc): | 11 def __init__(self, rpc): |
| 12 self._rpc = rpc | 12 self._rpc = rpc |
| 13 | 13 |
| 14 def Get(self): | 14 def Get(self): |
| 15 return self._rpc.get_result() | 15 return self._rpc.get_result() |
| 16 | 16 |
| 17 def _MakeHeaders(username, password): | 17 def _MakeHeaders(username, password): |
| 18 headers = { 'Cache-Control': 'max-age=0' } | 18 headers = { 'Cache-Control': 'max-age=0' } |
| 19 if username is not None and password is not None: | 19 if username is not None and password is not None: |
| 20 headers['Authorization'] = 'Basic %s' % base64.encodestring( | 20 headers['Authorization'] = 'Basic %s' % base64.encodestring( |
| 21 '%s:%s' % (username, password)) | 21 '%s:%s' % (username, password)) |
| 22 return headers | 22 return headers |
| 23 | 23 |
| 24 class AppEngineUrlFetcher(object): | 24 class AppEngineUrlFetcher(object): |
| 25 """A wrapper around the App Engine urlfetch module that allows for easy | 25 """A wrapper around the App Engine urlfetch module that allows for easy |
| 26 async fetches. | 26 async fetches. |
| 27 """ | 27 """ |
| 28 def __init__(self, base_path): | 28 def __init__(self, base_path=None): |
| 29 self._base_path = base_path | 29 self._base_path = base_path |
| 30 | 30 |
| 31 def Fetch(self, url, username=None, password=None): | 31 def Fetch(self, url, username=None, password=None): |
| 32 """Fetches a file synchronously. | 32 """Fetches a file synchronously. |
| 33 """ | 33 """ |
| 34 headers = _MakeHeaders(username, password) | 34 headers = _MakeHeaders(username, password) |
| 35 if self._base_path is not None: | 35 if self._base_path is not None: |
| 36 return urlfetch.fetch('%s/%s' % (self._base_path, url), headers=headers) | 36 return urlfetch.fetch('%s/%s' % (self._base_path, url), headers=headers) |
| 37 else: | 37 else: |
| 38 return urlfetch.fetch(url, headers={ 'Cache-Control': 'max-age=0' }) | 38 return urlfetch.fetch(url, headers={ 'Cache-Control': 'max-age=0' }) |
| 39 | 39 |
| 40 def FetchAsync(self, url, username=None, password=None): | 40 def FetchAsync(self, url, username=None, password=None): |
| 41 """Fetches a file asynchronously, and returns a Future with the result. | 41 """Fetches a file asynchronously, and returns a Future with the result. |
| 42 """ | 42 """ |
| 43 rpc = urlfetch.create_rpc() | 43 rpc = urlfetch.create_rpc() |
| 44 headers = _MakeHeaders(username, password) | 44 headers = _MakeHeaders(username, password) |
| 45 if self._base_path is not None: | 45 if self._base_path is not None: |
| 46 urlfetch.make_fetch_call(rpc, | 46 urlfetch.make_fetch_call(rpc, |
| 47 '%s/%s' % (self._base_path, url), | 47 '%s/%s' % (self._base_path, url), |
| 48 headers=headers) | 48 headers=headers) |
| 49 else: | 49 else: |
| 50 urlfetch.make_fetch_call(rpc, url, headers=headers) | 50 urlfetch.make_fetch_call(rpc, url, headers=headers) |
| 51 return Future(delegate=_AsyncFetchDelegate(rpc)) | 51 return Future(delegate=_AsyncFetchDelegate(rpc)) |
| OLD | NEW |