Skip to content
Snippets Groups Projects
Commit 6607bc9b authored by jurgenhaas's avatar jurgenhaas
Browse files

Support HTTP Basic Auth for checks

parent 26b4444c
No related branches found
No related tags found
No related merge requests found
......@@ -155,11 +155,13 @@ class ActionModule(ActionBase):
def _createCheck(self, check):
display.vv(' Creating %s' % (check.get('url')))
self._cleanupCheck(check)
self._request('checks', check, 'PUT')
def _deleteCheck(self, check):
display.vv(' Deleting %s' % (check.get('url')))
self._request('checks/' + check.get('_id'), None, 'DELETE')
......@@ -185,6 +187,7 @@ class ActionModule(ActionBase):
changed = True
if changed:
display.vv(' Updating %s' % (existing.get('url')))
existing = self._cleanupCheck(existing)
self._request('checks/' + existing.get('_id'), existing, 'POST')
......@@ -198,7 +201,11 @@ class ActionModule(ActionBase):
def _buildUrl(self, item, field):
url = item.get('protocol', 'https') + '://' + item.get(field)
authPrefix = ''
auth = item.get('apache_auth')
if auth and auth.get('type') == 'Basic':
authPrefix = auth.get('user') + ':' + auth.get('password') + '@'
url = item.get('protocol', 'https') + '://' + authPrefix + item.get(field)
uptime = item.get('uptime')
if uptime:
path = uptime.get('path')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment