Allow to update borgbase repositories. By @stroobl (#53)
This commit is contained in:
parent
f6a01fc7f3
commit
a241c9378a
@ -82,6 +82,41 @@ def add_repo(key_id):
|
|||||||
res = client.execute(REPO_ADD, new_repo_vars)
|
res = client.execute(REPO_ADD, new_repo_vars)
|
||||||
return res
|
return res
|
||||||
|
|
||||||
|
def get_repo_id(name):
|
||||||
|
res = client.execute(REPO_DETAILS)
|
||||||
|
for repo in res['data']['repoList']:
|
||||||
|
if repo['name'] == name:
|
||||||
|
repo_id = repo['id']
|
||||||
|
return repo_id
|
||||||
|
return None
|
||||||
|
|
||||||
|
def edit_repo(repo_id, key_id):
|
||||||
|
if module.params['append_only']:
|
||||||
|
access_level = 'appendOnlyKeys'
|
||||||
|
else:
|
||||||
|
access_level = 'fullAccessKeys'
|
||||||
|
|
||||||
|
if not module.params['quota_enable']:
|
||||||
|
repo_vars = {
|
||||||
|
'id': repo_id,
|
||||||
|
'name': module.params['repository_name'],
|
||||||
|
access_level: [key_id],
|
||||||
|
'alertDays': module.params['alertdays'],
|
||||||
|
'region': module.params['region']
|
||||||
|
}
|
||||||
|
else:
|
||||||
|
repo_vars = {
|
||||||
|
'id': repo_id,
|
||||||
|
'name': module.params['repository_name'],
|
||||||
|
'quotaEnabled': module.params['quota_enable'],
|
||||||
|
'quota': 1000*module.params['quota'],
|
||||||
|
access_level: [key_id],
|
||||||
|
'alertDays': module.params['alertdays'],
|
||||||
|
'region': module.params['region']
|
||||||
|
}
|
||||||
|
res = client.execute(REPO_EDIT, repo_vars)
|
||||||
|
return res
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
global module
|
global module
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
@ -140,9 +175,17 @@ def main():
|
|||||||
else:
|
else:
|
||||||
key_id = get_key_id(module.params['ssh_key'])
|
key_id = get_key_id(module.params['ssh_key'])
|
||||||
|
|
||||||
|
# Check if repo with given name exists
|
||||||
|
repo_id = get_repo_id(module.params['repository_name'])
|
||||||
|
|
||||||
|
if repo_id is None:
|
||||||
# Add new repo using the key
|
# Add new repo using the key
|
||||||
res = add_repo(key_id)
|
res = add_repo(key_id)
|
||||||
|
|
||||||
|
else:
|
||||||
|
# Edit the repo
|
||||||
|
res = edit_repo(repo_id, key_id)
|
||||||
|
|
||||||
# Setup information for Ansible
|
# Setup information for Ansible
|
||||||
result = dict(
|
result = dict(
|
||||||
changed = False,
|
changed = False,
|
||||||
@ -154,6 +197,9 @@ def main():
|
|||||||
# Test for success and change info
|
# Test for success and change info
|
||||||
if type(res) == dict:
|
if type(res) == dict:
|
||||||
result['changed'] = True
|
result['changed'] = True
|
||||||
|
if repo_exist:
|
||||||
|
result['data'] = res["data"]["repoEdit"]["repoEdited"]
|
||||||
|
else:
|
||||||
result['data'] = res['data']['repoAdd']['repoAdded']
|
result['data'] = res['data']['repoAdd']['repoAdded']
|
||||||
result['key_id'] = key_id
|
result['key_id'] = key_id
|
||||||
module.exit_json(**result)
|
module.exit_json(**result)
|
||||||
|
Loading…
Reference in New Issue
Block a user