summaryrefslogtreecommitdiff
path: root/lorrycontroller/proxy.py
blob: 44749c97d1d65a9715de9b64a8cbbca5e6006647 (plain)
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
# Copyright (C) 2014  Codethink Limited
#
# 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; version 2 of the License.
#
# 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, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.


import json
import os
import urllib
import urllib2


def setup_proxy(config_filename):
    """Tell urllib2 to use a proxy for http action by lorry-controller.
    
    Load the proxy information from the JSON file given by proxy_def, then
    set urllib2's url opener to open urls via an authenticated proxy.
    
    """
    
    if not os.path.exists(config_filename):
        return
    
    with open(config_filename, 'r') as f:
        proxy = json.load(f)
        
    # set the required environment variables
    hostname = urllib.quote(proxy['hostname'])
    user = '%s:%s' % (proxy['username'], proxy['password'])
    url = '%s:%s' % (hostname, proxy['port'])
    os.environ['http_proxy'] = 'http://%s@%s' % (user, url)
    os.environ['https_proxy'] = 'https://%s@%s' % (user, url)
    
    # create a ProxyHandler
    proxies = {'http_proxy': 'http://%s@%s' % (user, url),
               'https_proxy': 'https://%s@%s' % (user, url)}
    proxy_handler = urllib2.ProxyHandler(proxies)
    
    # install an opener to use the proxy
    opener = urllib2.build_opener(proxy_handler)
    urllib2.install_opener(opener)