Merge "Fuelclient version 10 handled"

This commit is contained in:
Jenkins 2016-10-03 15:21:26 +00:00 committed by Gerrit Code Review
commit 8b6046f787
1 changed files with 17 additions and 11 deletions

View File

@ -19,7 +19,13 @@ from cliff import command
from cliff import lister
from git import Repo
from fuelclient.client import APIClient
from fuelclient import client
if hasattr(client, 'DefaultAPIClient'):
# Handling python-fuelclient version >= 10.0
fc_client = client.DefaultAPIClient
else:
# Handling python-fuelclient version <= 9.0
fc_client = client.APIClient
from fuelclient.common import data_utils
from fuel_external_git.settings import GitExtensionSettings
@ -41,7 +47,7 @@ class GitRepoList(lister.Lister, command.Command):
return parser
def take_action(self, parsed_args):
data = APIClient.get_request('/clusters/git-repos/')
data = fc_client.get_request('/clusters/git-repos/')
if parsed_args.env:
data = [entry for entry in data
if entry['env_id'] == parsed_args.env]
@ -118,7 +124,7 @@ class AddRepo(command.Command):
with open(parsed_args.key) as key_file:
data['user_key'] = key_file.read()
APIClient.post_request('/clusters/git-repos/', data)
fc_client.post_request('/clusters/git-repos/', data)
return (self.columns, data)
@ -145,12 +151,12 @@ class DeleteRepo(command.Command):
if parsed_args.env:
env = parsed_args.env
else:
repos = APIClient.get_request('/clusters/git-repos/')
repos = fc_client.get_request('/clusters/git-repos/')
env = [repo['env_id'] for repo in repos
if repo['id'] == parsed_args.repo][0]
del_path = "/clusters/{0}/git-repos/{1}"
APIClient.delete_request(del_path.format(env, repo_id))
fc_client.delete_request(del_path.format(env, repo_id))
return (self.columns, {})
@ -221,7 +227,7 @@ class UpdateRepo(command.Command):
for param, value in parsed_args.__dict__.items():
if value is not None and param in param_mapping.keys():
data[param_mapping[param]] = value
repos = APIClient.get_request('/clusters/git-repos/')
repos = fc_client.get_request('/clusters/git-repos/')
env = [repo['env_id'] for repo in repos
if repo['id'] == parsed_args.repo][0]
path = "/clusters/{0}/git-repos/{1}"
@ -230,7 +236,7 @@ class UpdateRepo(command.Command):
with open(parsed_args.key) as key_file:
data['user_key'] = key_file.read()
APIClient.put_request(path.format(env, parsed_args.repo), data)
fc_client.put_request(path.format(env, parsed_args.repo), data)
return (self.columns, data)
@ -249,12 +255,12 @@ class InitRepo(command.Command):
def take_action(self, parsed_args):
repo_id = parsed_args.repo
repos = APIClient.get_request('/clusters/git-repos/')
repos = fc_client.get_request('/clusters/git-repos/')
env = [repo['env_id'] for repo in repos
if repo['id'] == parsed_args.repo][0]
init_path = "/clusters/{0}/git-repos/{1}/init"
APIClient.put_request(init_path.format(env, repo_id), {})
fc_client.put_request(init_path.format(env, repo_id), {})
return (self.columns, {})
@ -285,8 +291,8 @@ class DownloadConfgs(command.Command):
from nailgun.settings import settings
key = settings.SHOTGUN_SSH_KEY
nodes = APIClient.get_request('nodes/')
repos = APIClient.get_request('/clusters/git-repos/')
nodes = fc_client.get_request('nodes/')
repos = fc_client.get_request('/clusters/git-repos/')
if parsed_args.env:
repos = [repo for repo in repos
if repo['env_id'] == parsed_args.env]