diff options
| author | hagbard <vyosdev@derith.de> | 2019-10-09 09:24:40 -0700 |
|---|---|---|
| committer | hagbard <vyosdev@derith.de> | 2019-10-09 09:24:40 -0700 |
| commit | f8be18fbc549bc574746991bd0bb1de9b424745e (patch) | |
| tree | 681026f10f4a02f707a1cec037935e20716fdb51 /python/vyos/remote.py | |
| parent | c4dbaa158c9b5c6e3c4ff3fe2f9f17d095732547 (diff) | |
| parent | 21fe962befb2ebd1625eb7a6c28cb3e9005fe37e (diff) | |
| download | veeos-1x-f8be18fbc549bc574746991bd0bb1de9b424745e.tar.gz veeos-1x-f8be18fbc549bc574746991bd0bb1de9b424745e.zip | |
Merge branch 'current' into equuleus
Diffstat (limited to 'python/vyos/remote.py')
| -rw-r--r-- | python/vyos/remote.py | 26 |
1 files changed, 22 insertions, 4 deletions
diff --git a/python/vyos/remote.py b/python/vyos/remote.py index 49936ec08..f8a21f068 100644 --- a/python/vyos/remote.py +++ b/python/vyos/remote.py @@ -121,16 +121,34 @@ def get_remote_config(remote_file): if request['protocol'] in ('scp', 'sftp'): check_and_add_host_key(request['host']) + redirect_opt = '' + + if request['protocol'] in ('http', 'https'): + redirect_opt = '-L' + # Try header first, and look for 'OK' or 'Moved' codes: + curl_cmd = 'curl {0} -q -I {1}'.format(redirect_opt, remote_file) + try: + curl_output = subprocess.check_output(curl_cmd, shell=True, + universal_newlines=True) + except subprocess.CalledProcessError: + sys.exit(1) + + return_vals = re.findall(r'^HTTP\/\d+\.?\d\s+(\d+)\s+(.*)$', + curl_output, re.MULTILINE) + for val in return_vals: + if int(val[0]) not in [200, 301, 302]: + print('HTTP error: {0} {1}'.format(*val)) + sys.exit(1) + if request['user'] and not request['passwd']: curl_cmd = 'curl -# -u {0} {1}'.format(request['user'], remote_file) else: - curl_cmd = 'curl -# {0}'.format(remote_file) + curl_cmd = 'curl {0} -# {1}'.format(redirect_opt, remote_file) - config_file = None try: config_file = subprocess.check_output(curl_cmd, shell=True, universal_newlines=True) - except subprocess.CalledProcessError as err: - print("Called process error: {}.".format(err)) + except subprocess.CalledProcessError: + config_file = None return config_file |
