Drop dependency on httplib2 in the uri module, instead using ansible.module_utils.urls
This commit is contained in:
parent
a546775172
commit
a18206355a
1 changed files with 113 additions and 158 deletions
|
@ -23,9 +23,7 @@
|
||||||
import cgi
|
import cgi
|
||||||
import shutil
|
import shutil
|
||||||
import tempfile
|
import tempfile
|
||||||
import base64
|
|
||||||
import datetime
|
import datetime
|
||||||
from distutils.version import LooseVersion
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
import json
|
import json
|
||||||
|
@ -48,7 +46,8 @@ options:
|
||||||
default: null
|
default: null
|
||||||
dest:
|
dest:
|
||||||
description:
|
description:
|
||||||
- path of where to download the file to (if desired). If I(dest) is a directory, the basename of the file on the remote server will be used.
|
- path of where to download the file to (if desired). If I(dest) is a
|
||||||
|
directory, the basename of the file on the remote server will be used.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
user:
|
user:
|
||||||
|
@ -63,12 +62,15 @@ options:
|
||||||
default: null
|
default: null
|
||||||
body:
|
body:
|
||||||
description:
|
description:
|
||||||
- The body of the http request/response to the web service. If C(body_format) is set to 'json' it will take an already formated JSON string or convert a data structure into JSON.
|
- The body of the http request/response to the web service. If C(body_format) is set
|
||||||
|
to 'json' it will take an already formated JSON string or convert a data structure
|
||||||
|
into JSON.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
body_format:
|
body_format:
|
||||||
description:
|
description:
|
||||||
- The serialization format of the body. When set to json, encodes the body argument, if needed, and automatically sets the Content-Type header accordingly.
|
- The serialization format of the body. When set to json, encodes the
|
||||||
|
body argument, if needed, and automatically sets the Content-Type header accordingly.
|
||||||
required: false
|
required: false
|
||||||
default: raw
|
default: raw
|
||||||
version_added: "2.0"
|
version_added: "2.0"
|
||||||
|
@ -80,13 +82,16 @@ options:
|
||||||
default: "GET"
|
default: "GET"
|
||||||
return_content:
|
return_content:
|
||||||
description:
|
description:
|
||||||
- Whether or not to return the body of the request as a "content" key in the dictionary result. If the reported Content-type is "application/json", then the JSON is additionally loaded into a key called C(json) in the dictionary results.
|
- Whether or not to return the body of the request as a "content" key in
|
||||||
|
the dictionary result. If the reported Content-type is
|
||||||
|
"application/json", then the JSON is additionally loaded into a key
|
||||||
|
called C(json) in the dictionary results.
|
||||||
required: false
|
required: false
|
||||||
choices: [ "yes", "no" ]
|
choices: [ "yes", "no" ]
|
||||||
default: "no"
|
default: "no"
|
||||||
force_basic_auth:
|
force_basic_auth:
|
||||||
description:
|
description:
|
||||||
- httplib2, the library used by the uri module only sends authentication information when a webservice
|
- The library used by the uri module only sends authentication information when a webservice
|
||||||
responds to an initial request with a 401 status. Since some basic auth services do not properly
|
responds to an initial request with a 401 status. Since some basic auth services do not properly
|
||||||
send a 401, logins will fail. This option forces the sending of the Basic authentication header
|
send a 401, logins will fail. This option forces the sending of the Basic authentication header
|
||||||
upon initial request.
|
upon initial request.
|
||||||
|
@ -114,7 +119,8 @@ options:
|
||||||
required: false
|
required: false
|
||||||
status_code:
|
status_code:
|
||||||
description:
|
description:
|
||||||
- A valid, numeric, HTTP status code that signifies success of the request. Can also be comma separated list of status codes.
|
- A valid, numeric, HTTP status code that signifies success of the
|
||||||
|
request. Can also be comma separated list of status codes.
|
||||||
required: false
|
required: false
|
||||||
default: 200
|
default: 200
|
||||||
timeout:
|
timeout:
|
||||||
|
@ -127,8 +133,16 @@ options:
|
||||||
- Any parameter starting with "HEADER_" is a sent with your request as a header.
|
- Any parameter starting with "HEADER_" is a sent with your request as a header.
|
||||||
For example, HEADER_Content-Type="application/json" would send the header
|
For example, HEADER_Content-Type="application/json" would send the header
|
||||||
"Content-Type" along with your request with a value of "application/json".
|
"Content-Type" along with your request with a value of "application/json".
|
||||||
|
This option is deprecated as of C(2.1) and may be removed in a future
|
||||||
|
release. Use I(headers) instead.
|
||||||
required: false
|
required: false
|
||||||
default: null
|
default: null
|
||||||
|
headers:
|
||||||
|
description:
|
||||||
|
- Add custom HTTP headers to a request in the format of a YAML hash
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
version_added: '2.1'
|
||||||
others:
|
others:
|
||||||
description:
|
description:
|
||||||
- all arguments accepted by the M(file) module also work here
|
- all arguments accepted by the M(file) module also work here
|
||||||
|
@ -142,10 +156,6 @@ options:
|
||||||
default: 'yes'
|
default: 'yes'
|
||||||
choices: ['yes', 'no']
|
choices: ['yes', 'no']
|
||||||
version_added: '1.9.2'
|
version_added: '1.9.2'
|
||||||
|
|
||||||
# informational: requirements for nodes
|
|
||||||
requirements:
|
|
||||||
- httplib2 >= 0.7.0
|
|
||||||
author: "Romeo Theriault (@romeotheriault)"
|
author: "Romeo Theriault (@romeotheriault)"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
@ -153,7 +163,8 @@ EXAMPLES = '''
|
||||||
# Check that you can connect (GET) to a page and it returns a status 200
|
# Check that you can connect (GET) to a page and it returns a status 200
|
||||||
- uri: url=http://www.example.com
|
- uri: url=http://www.example.com
|
||||||
|
|
||||||
# Check that a page returns a status 200 and fail if the word AWESOME is not in the page contents.
|
# Check that a page returns a status 200 and fail if the word AWESOME is not
|
||||||
|
# in the page contents.
|
||||||
- action: uri url=http://www.example.com return_content=yes
|
- action: uri url=http://www.example.com return_content=yes
|
||||||
register: webpage
|
register: webpage
|
||||||
|
|
||||||
|
@ -200,23 +211,6 @@ EXAMPLES = '''
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
HAS_HTTPLIB2 = False
|
|
||||||
|
|
||||||
try:
|
|
||||||
import httplib2
|
|
||||||
if LooseVersion(httplib2.__version__) >= LooseVersion('0.7'):
|
|
||||||
HAS_HTTPLIB2 = True
|
|
||||||
except ImportError, AttributeError:
|
|
||||||
# AttributeError if __version__ is not present
|
|
||||||
pass
|
|
||||||
|
|
||||||
HAS_URLPARSE = True
|
|
||||||
|
|
||||||
try:
|
|
||||||
import urlparse
|
|
||||||
import socket
|
|
||||||
except ImportError:
|
|
||||||
HAS_URLPARSE = False
|
|
||||||
|
|
||||||
def write_file(module, url, dest, content):
|
def write_file(module, url, dest, content):
|
||||||
# create a tempfile with some test content
|
# create a tempfile with some test content
|
||||||
|
@ -273,55 +267,45 @@ def url_filename(url):
|
||||||
return fn
|
return fn
|
||||||
|
|
||||||
|
|
||||||
def uri(module, url, dest, user, password, body, body_format, method, headers, redirects, socket_timeout, validate_certs):
|
def absolute_location(url, location):
|
||||||
# To debug
|
"""Attempts to create an absolute URL based on initial URL, and
|
||||||
#httplib2.debuglevel = 4
|
next URL, specifically in the case of a ``Location`` header.
|
||||||
|
"""
|
||||||
|
|
||||||
|
if '://' in location:
|
||||||
|
return location
|
||||||
|
|
||||||
|
elif location.startswith('/'):
|
||||||
|
parts = urlparse.urlsplit(url)
|
||||||
|
base = url.replace(parts[2], '')
|
||||||
|
return '%s%s' % (base, location)
|
||||||
|
|
||||||
|
elif not location.startswith('/'):
|
||||||
|
base = os.path.dirname(url)
|
||||||
|
return '%s/%s' % (base, location)
|
||||||
|
|
||||||
# Handle Redirects
|
|
||||||
if redirects == "all" or redirects == "yes":
|
|
||||||
follow_redirects = True
|
|
||||||
follow_all_redirects = True
|
|
||||||
elif redirects == "none":
|
|
||||||
follow_redirects = False
|
|
||||||
follow_all_redirects = False
|
|
||||||
else:
|
else:
|
||||||
follow_redirects = True
|
return location
|
||||||
follow_all_redirects = False
|
|
||||||
|
|
||||||
# Create a Http object and set some default options.
|
|
||||||
disable_validation = not validate_certs
|
|
||||||
h = httplib2.Http(disable_ssl_certificate_validation=disable_validation, timeout=socket_timeout)
|
|
||||||
h.follow_all_redirects = follow_all_redirects
|
|
||||||
h.follow_redirects = follow_redirects
|
|
||||||
h.forward_authorization_headers = True
|
|
||||||
|
|
||||||
# If they have a username or password verify they have both, then add them to the request
|
|
||||||
if user is not None and password is None:
|
|
||||||
module.fail_json(msg="Both a username and password need to be set.")
|
|
||||||
if password is not None and user is None:
|
|
||||||
module.fail_json(msg="Both a username and password need to be set.")
|
|
||||||
if user is not None and password is not None:
|
|
||||||
h.add_credentials(user, password)
|
|
||||||
|
|
||||||
|
def uri(module, url, dest, body, body_format, method, headers, socket_timeout):
|
||||||
# is dest is set and is a directory, let's check if we get redirected and
|
# is dest is set and is a directory, let's check if we get redirected and
|
||||||
# set the filename from that url
|
# set the filename from that url
|
||||||
redirected = False
|
redirected = False
|
||||||
resp_redir = {}
|
redir_info = {}
|
||||||
r = {}
|
r = {}
|
||||||
if dest is not None:
|
if dest is not None:
|
||||||
dest = os.path.expanduser(dest)
|
dest = os.path.expanduser(dest)
|
||||||
if os.path.isdir(dest):
|
if os.path.isdir(dest):
|
||||||
# first check if we are redirected to a file download
|
# first check if we are redirected to a file download
|
||||||
h.follow_redirects=False
|
_, redir_info = fetch_url(module, url, data=body,
|
||||||
# Try the request
|
headers=headers,
|
||||||
try:
|
method=method, follow_redirects=None,
|
||||||
resp_redir, content_redir = h.request(url, method=method, body=body, headers=headers)
|
timeout=socket_timeout)
|
||||||
# if we are redirected, update the url with the location header,
|
# if we are redirected, update the url with the location header,
|
||||||
# and update dest with the new url filename
|
# and update dest with the new url filename
|
||||||
except:
|
if redir_info['status'] in (301, 302, 303, 307):
|
||||||
pass
|
url = redir_info['location']
|
||||||
if 'status' in resp_redir and resp_redir['status'] in ["301", "302", "303", "307"]:
|
|
||||||
url = resp_redir['location']
|
|
||||||
redirected = True
|
redirected = True
|
||||||
dest = os.path.join(dest, url_filename(url))
|
dest = os.path.join(dest, url_filename(url))
|
||||||
# if destination file already exist, only download if file newer
|
# if destination file already exist, only download if file newer
|
||||||
|
@ -330,85 +314,54 @@ def uri(module, url, dest, user, password, body, body_format, method, headers, r
|
||||||
tstamp = t.strftime('%a, %d %b %Y %H:%M:%S +0000')
|
tstamp = t.strftime('%a, %d %b %Y %H:%M:%S +0000')
|
||||||
headers['If-Modified-Since'] = tstamp
|
headers['If-Modified-Since'] = tstamp
|
||||||
|
|
||||||
# do safe redirects now, including 307
|
resp, info = fetch_url(module, url, data=body, headers=headers,
|
||||||
h.follow_redirects=follow_redirects
|
method=method, timeout=socket_timeout)
|
||||||
|
r['redirected'] = redirected or info['url'] != url
|
||||||
# Make the request, or try to :)
|
r.update(redir_info)
|
||||||
|
r.update(info)
|
||||||
try:
|
try:
|
||||||
resp, content = h.request(url, method=method, body=body, headers=headers)
|
content = resp.read()
|
||||||
r['redirected'] = redirected
|
except AttributeError:
|
||||||
r.update(resp_redir)
|
content = ''
|
||||||
r.update(resp)
|
|
||||||
return r, content, dest
|
return r, content, dest
|
||||||
except httplib2.RedirectMissingLocation:
|
|
||||||
module.fail_json(msg="A 3xx redirect response code was provided but no Location: header was provided to point to the new location.")
|
|
||||||
except httplib2.RedirectLimit:
|
|
||||||
module.fail_json(msg="The maximum number of redirections was reached without coming to a final URI.")
|
|
||||||
except httplib2.ServerNotFoundError:
|
|
||||||
module.fail_json(msg="Unable to resolve the host name given.")
|
|
||||||
except httplib2.RelativeURIError:
|
|
||||||
module.fail_json(msg="A relative, as opposed to an absolute URI, was passed in.")
|
|
||||||
except httplib2.FailedToDecompressContent:
|
|
||||||
module.fail_json(msg="The headers claimed that the content of the response was compressed but the decompression algorithm applied to the content failed.")
|
|
||||||
except httplib2.UnimplementedDigestAuthOptionError:
|
|
||||||
module.fail_json(msg="The server requested a type of Digest authentication that we are unfamiliar with.")
|
|
||||||
except httplib2.UnimplementedHmacDigestAuthOptionError:
|
|
||||||
module.fail_json(msg="The server requested a type of HMACDigest authentication that we are unfamiliar with.")
|
|
||||||
except httplib2.UnimplementedHmacDigestAuthOptionError:
|
|
||||||
module.fail_json(msg="The server requested a type of HMACDigest authentication that we are unfamiliar with.")
|
|
||||||
except httplib2.CertificateHostnameMismatch:
|
|
||||||
module.fail_json(msg="The server's certificate does not match with its hostname.")
|
|
||||||
except httplib2.SSLHandshakeError:
|
|
||||||
module.fail_json(msg="Unable to validate server's certificate against available CA certs.")
|
|
||||||
except socket.error, e:
|
|
||||||
module.fail_json(msg="Socket error: %s to %s" % (e, url))
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
argument_spec = url_argument_spec()
|
||||||
module = AnsibleModule(
|
argument_spec.update(dict(
|
||||||
argument_spec = dict(
|
|
||||||
url = dict(required=True),
|
|
||||||
dest = dict(required=False, default=None, type='path'),
|
dest = dict(required=False, default=None, type='path'),
|
||||||
user = dict(required=False, default=None),
|
url_username = dict(required=False, default=None, aliases=['user']),
|
||||||
password = dict(required=False, default=None),
|
url_password = dict(required=False, default=None, aliases=['password']),
|
||||||
body = dict(required=False, default=None),
|
body = dict(required=False, default=None),
|
||||||
body_format = dict(required=False, default='raw', choices=['raw', 'json']),
|
body_format = dict(required=False, default='raw', choices=['raw', 'json']),
|
||||||
method = dict(required=False, default='GET', choices=['GET', 'POST', 'PUT', 'HEAD', 'DELETE', 'OPTIONS', 'PATCH', 'TRACE', 'CONNECT', 'REFRESH']),
|
method = dict(required=False, default='GET', choices=['GET', 'POST', 'PUT', 'HEAD', 'DELETE', 'OPTIONS', 'PATCH', 'TRACE', 'CONNECT', 'REFRESH']),
|
||||||
return_content = dict(required=False, default='no', type='bool'),
|
return_content = dict(required=False, default='no', type='bool'),
|
||||||
force_basic_auth = dict(required=False, default='no', type='bool'),
|
|
||||||
follow_redirects = dict(required=False, default='safe', choices=['all', 'safe', 'none', 'yes', 'no']),
|
follow_redirects = dict(required=False, default='safe', choices=['all', 'safe', 'none', 'yes', 'no']),
|
||||||
creates = dict(required=False, default=None, type='path'),
|
creates = dict(required=False, default=None, type='path'),
|
||||||
removes = dict(required=False, default=None, type='path'),
|
removes = dict(required=False, default=None, type='path'),
|
||||||
status_code = dict(required=False, default=[200], type='list'),
|
status_code = dict(required=False, default=[200], type='list'),
|
||||||
timeout = dict(required=False, default=30, type='int'),
|
timeout = dict(required=False, default=30, type='int'),
|
||||||
validate_certs = dict(required=False, default=True, type='bool'),
|
headers = dict(required=False, type='dict')
|
||||||
),
|
))
|
||||||
|
|
||||||
|
module = AnsibleModule(
|
||||||
|
argument_spec=argument_spec,
|
||||||
check_invalid_arguments=False,
|
check_invalid_arguments=False,
|
||||||
add_file_common_args=True
|
add_file_common_args=True
|
||||||
)
|
)
|
||||||
|
|
||||||
if not HAS_HTTPLIB2:
|
|
||||||
module.fail_json(msg="httplib2 >= 0.7 is not installed")
|
|
||||||
if not HAS_URLPARSE:
|
|
||||||
module.fail_json(msg="urlparse is not installed")
|
|
||||||
|
|
||||||
url = module.params['url']
|
url = module.params['url']
|
||||||
user = module.params['user']
|
|
||||||
password = module.params['password']
|
|
||||||
body = module.params['body']
|
body = module.params['body']
|
||||||
body_format = module.params['body_format'].lower()
|
body_format = module.params['body_format'].lower()
|
||||||
method = module.params['method']
|
method = module.params['method']
|
||||||
dest = module.params['dest']
|
dest = module.params['dest']
|
||||||
return_content = module.params['return_content']
|
return_content = module.params['return_content']
|
||||||
force_basic_auth = module.params['force_basic_auth']
|
|
||||||
redirects = module.params['follow_redirects']
|
|
||||||
creates = module.params['creates']
|
creates = module.params['creates']
|
||||||
removes = module.params['removes']
|
removes = module.params['removes']
|
||||||
status_code = [int(x) for x in list(module.params['status_code'])]
|
status_code = [int(x) for x in list(module.params['status_code'])]
|
||||||
socket_timeout = module.params['timeout']
|
socket_timeout = module.params['timeout']
|
||||||
validate_certs = module.params['validate_certs']
|
|
||||||
|
|
||||||
dict_headers = {}
|
dict_headers = module.params['headers']
|
||||||
|
|
||||||
if body_format == 'json':
|
if body_format == 'json':
|
||||||
# Encode the body unless its a string, then assume it is preformatted JSON
|
# Encode the body unless its a string, then assume it is preformatted JSON
|
||||||
|
@ -416,20 +369,20 @@ def main():
|
||||||
body = json.dumps(body)
|
body = json.dumps(body)
|
||||||
dict_headers['Content-Type'] = 'application/json'
|
dict_headers['Content-Type'] = 'application/json'
|
||||||
|
|
||||||
|
# Grab all the http headers. Need this hack since passing multi-values is
|
||||||
# Grab all the http headers. Need this hack since passing multi-values is currently a bit ugly. (e.g. headers='{"Content-Type":"application/json"}')
|
# currently a bit ugly. (e.g. headers='{"Content-Type":"application/json"}')
|
||||||
for key, value in module.params.iteritems():
|
for key, value in module.params.iteritems():
|
||||||
if key.startswith("HEADER_"):
|
if key.startswith("HEADER_"):
|
||||||
skey = key.replace("HEADER_", "")
|
skey = key.replace("HEADER_", "")
|
||||||
dict_headers[skey] = value
|
dict_headers[skey] = value
|
||||||
|
|
||||||
|
|
||||||
if creates is not None:
|
if creates is not None:
|
||||||
# do not run the command if the line contains creates=filename
|
# do not run the command if the line contains creates=filename
|
||||||
# and the filename already exists. This allows idempotence
|
# and the filename already exists. This allows idempotence
|
||||||
# of uri executions.
|
# of uri executions.
|
||||||
if os.path.exists(creates):
|
if os.path.exists(creates):
|
||||||
module.exit_json(stdout="skipped, since %s exists" % creates, changed=False, stderr=False, rc=0)
|
module.exit_json(stdout="skipped, since %s exists" % creates,
|
||||||
|
changed=False, stderr=False, rc=0)
|
||||||
|
|
||||||
if removes is not None:
|
if removes is not None:
|
||||||
# do not run the command if the line contains removes=filename
|
# do not run the command if the line contains removes=filename
|
||||||
|
@ -438,16 +391,9 @@ def main():
|
||||||
if not os.path.exists(removes):
|
if not os.path.exists(removes):
|
||||||
module.exit_json(stdout="skipped, since %s does not exist" % removes, changed=False, stderr=False, rc=0)
|
module.exit_json(stdout="skipped, since %s does not exist" % removes, changed=False, stderr=False, rc=0)
|
||||||
|
|
||||||
|
|
||||||
# httplib2 only sends authentication after the server asks for it with a 401.
|
|
||||||
# Some 'basic auth' servies fail to send a 401 and require the authentication
|
|
||||||
# up front. This creates the Basic authentication header and sends it immediately.
|
|
||||||
if force_basic_auth:
|
|
||||||
dict_headers["Authorization"] = "Basic {0}".format(base64.b64encode("{0}:{1}".format(user, password)))
|
|
||||||
|
|
||||||
|
|
||||||
# Make the request
|
# Make the request
|
||||||
resp, content, dest = uri(module, url, dest, user, password, body, body_format, method, dict_headers, redirects, socket_timeout, validate_certs)
|
resp, content, dest = uri(module, url, dest, body, body_format, method,
|
||||||
|
dict_headers, socket_timeout)
|
||||||
resp['status'] = int(resp['status'])
|
resp['status'] = int(resp['status'])
|
||||||
|
|
||||||
# Write the file out if requested
|
# Write the file out if requested
|
||||||
|
@ -466,12 +412,18 @@ def main():
|
||||||
else:
|
else:
|
||||||
changed = False
|
changed = False
|
||||||
|
|
||||||
# Transmogrify the headers, replacing '-' with '_', since variables dont work with dashes.
|
# Transmogrify the headers, replacing '-' with '_', since variables dont
|
||||||
|
# work with dashes.
|
||||||
uresp = {}
|
uresp = {}
|
||||||
for key, value in resp.iteritems():
|
for key, value in resp.iteritems():
|
||||||
ukey = key.replace("-", "_")
|
ukey = key.replace("-", "_")
|
||||||
uresp[ukey] = value
|
uresp[ukey] = value
|
||||||
|
|
||||||
|
try:
|
||||||
|
uresp['location'] = absolute_location(url, uresp['location'])
|
||||||
|
except KeyError:
|
||||||
|
pass
|
||||||
|
|
||||||
# Default content_encoding to try
|
# Default content_encoding to try
|
||||||
content_encoding = 'utf-8'
|
content_encoding = 'utf-8'
|
||||||
if 'content_type' in uresp:
|
if 'content_type' in uresp:
|
||||||
|
@ -490,7 +442,8 @@ def main():
|
||||||
u_content = unicode(content, content_encoding, errors='replace')
|
u_content = unicode(content, content_encoding, errors='replace')
|
||||||
|
|
||||||
if resp['status'] not in status_code:
|
if resp['status'] not in status_code:
|
||||||
module.fail_json(msg="Status code was not " + str(status_code), content=u_content, **uresp)
|
uresp['msg'] = 'Status code was not %s: %s' % (status_code, uresp.get('msg', ''))
|
||||||
|
module.fail_json(content=u_content, **uresp)
|
||||||
elif return_content:
|
elif return_content:
|
||||||
module.exit_json(changed=changed, content=u_content, **uresp)
|
module.exit_json(changed=changed, content=u_content, **uresp)
|
||||||
else:
|
else:
|
||||||
|
@ -499,5 +452,7 @@ def main():
|
||||||
|
|
||||||
# import module snippets
|
# import module snippets
|
||||||
from ansible.module_utils.basic import *
|
from ansible.module_utils.basic import *
|
||||||
|
from ansible.module_utils.urls import *
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
Loading…
Reference in a new issue