Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

review更改 #91

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 16 additions & 1 deletion lib/ansible/module_utils/alicloud_ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
import footmark.vpc
import footmark.rds
import footmark.ess
import footmark.ram
HAS_FOOTMARK = True
except ImportError:
HAS_FOOTMARK = False
Expand Down Expand Up @@ -155,4 +156,18 @@ def ess_connect(module):
except AnsibleACSError as e:
module.fail_json(msg=str(e))
# Otherwise, no region so we fallback to the old connection method
return ess
return ess


def ram_connect(module):
""" Return an ram connection"""

region, ram_params = get_acs_connection_info(module)
# If we have a region specified, connect to its endpoint.
if region:
try:
ram = connect_to_acs(footmark.ram, region, **ram_params)
except AnsibleACSError as e:
module.fail_json(msg=str(e))
# Otherwise, no region so we fallback to the old connection method
return ram
195 changes: 195 additions & 0 deletions lib/ansible/modules/cloud/alicloud/alicloud_access_key.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,195 @@
#!/usr/bin/python
# coding=utf-8
# Copyright (c) 2017 Alibaba Group Holding Limited. Zhuwei <[email protected]>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see http://www.gnu.org/licenses/.

from __future__ import absolute_import, division, print_function
metaclass = type

ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

在metadata中要加上“'supported_by': 'community'”

'supported_by': 'community'}

DOCUMENTATION = '''
---
module: alicloud_access_key
short_description: ansible can manage aliyun access_key through this module
version_added: "2.6"
description:
- This module allows the user to manage access-keys. Includes those commands:'present', 'absent'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

格式问题,commands:后应该有一个空格

options:
state:
description:
- Create, delete or update the access_key of the user.
default: 'present'
choices: [ 'present', 'absent']
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

state 统一改为optional,然后default设置为present

user_name:
description:
- The user name. A name is created from the specified user.
required: true
aliases: [ 'name' ]
access_key_id:
description:
- The symbol to identity the access_key.
is_active:
description:
- The access_key's status can be True or False.
type: bool
default: 'True'
extends_documentation_fragment:
- alicloud
author:
- Zhu Wei (@zhuweif)
'''

EXAMPLES = '''
#
# AccessKey Management
#

# basic provisioning example to manage access_key
- name: basic provisioning example
hosts: localhost
connection: local
vars:
alicloud_access_key: <your-alicloud-access-key-id>
alicloud_secret_key: <your-alicloud-access-secret-key>
alicloud_region: cn-beijing

tasks:
- name: create access_key
alicloud_ram_access_key:
alicloud_access_key: '{{ alicloud_access_key }}'
alicloud_secret_key: '{{ alicloud_secret_key }}'
alicloud_region: '{{ alicloud_region }}'
user_name: '{{ user_name }}'
state: 'present'
register: result
- debug: var=result

- name: delete access_key
alicloud_ram_access_key:
alicloud_access_key: '{{ alicloud_access_key }}'
alicloud_secret_key: '{{ alicloud_secret_key }}'
alicloud_region: '{{ alicloud_region }}'
user_name:'{{ user_name }}'
access_key_ids:'{{ access_key_ids }}'
state: 'absent'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

变量跟变量值之间应该有一个空格,所以90行应该是 user_name: '{{ user_name }}'; 91行应该是:access_key_ids: '{{ access_key_ids }}' 烦请检查其他的地方

register: result
- debug: var=result
'''

RETURN = '''
access_key:
description: the access_key's headers after create access_key
returned: on present
type: dict
sample: {
"access_key_id": "abc12345",
"access_key_secret": "abc12345",
"status": "Active",
"create_status": "2015-01-23T12:33:18Z"
}
'''

from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.alicloud_ecs import ecs_argument_spec,ram_connect

HAS_FOOTMARK = False

try:
from footmark.exception import ECSResponseError
HAS_FOOTMARK = True
except ImportError:
HAS_FOOTMARK = False

def ali_access_key_create(module,ram):
#user_name
required_vars = ['user_name']
valid_vars = ['access_key_id','is_active']
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

两个item之间,应该保留一个空格:valid_vars = ['access_key_id', 'is_active'],烦请检查其他的地方

params=validate_parameters(required_vars, valid_vars, module)
changed = False
try:
if params['access_key_id']:
changed=ram.update_access_key(user_name=module.params.get('user_name'), access_key_id=params['access_key_id'],is_active=params['is_active'])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

125,129 格式问题

module.exit_json(changed=changed)
else:
result = ram.create_access_key(user_name=module.params.get('user_name'))
module.exit_json(changed=changed, msg=result)
except Exception as e:
module.fail_json(msg="Create or update access_key got an error: {0}".format(e))


def ali_access_key_del(module,ram):
required_vars = ['user_name','access_key_id']
valid_vars = ['']
validate_parameters(required_vars, valid_vars, module)
changed = False
try:
changed=ram.delete_access_key(user_name=module.params.get('user_name'),access_key_id=module.params.get('access_key_id'))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

145格式问题

except Exception as e:
module.fail_json(msg="Failed to delete access_key {0} with error {1}".format(module.params.get('access_key_id'),e))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

格式问题,最后e之前应该有一个空格

module.exit_json(changed=changed)


def validate_parameters(required_vars, valid_vars, module):
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

函数与函数之间有且只有两个空行

state = module.params.get('state')
for v in required_vars:
if not module.params.get(v):
module.fail_json(msg="Parameter %s required for %s state" % (v, state))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

message和error的统一为:{}, line 154: 改为:module.fail_json(msg="Parameter {0} required for {1} state".format((v, state))

optional_params = {
'access_key_id' : 'access_key_id',
'is_active' : 'is_active'
}

params = {}
for (k, v) in optional_params.items():
if module.params.get(k) is not None and k not in required_vars:
if k in valid_vars:
params[v] = module.params[k]
else:
if module.params.get(k) is False:
pass
else:
module.fail_json(msg="Parameter {0} is not valid for {1} command".format(k, state))
return params


def main():
argument_spec = ecs_argument_spec()
argument_spec.update(dict(
state=dict(default='present', choices=[
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

请申明type='str'

'present', 'absent'
]),
user_name = dict(type='str', required=True),
access_key_id = dict(type='str', required=False),
is_active = dict(type='bool', default=True, required=False),
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

required=False 没必要申明,默认的

))
if HAS_FOOTMARK is False:
module.fail_json(msg="Package 'footmark' required for the module alicloud_access_key.")
invocations = {
'present': ali_access_key_create,
'absent': ali_access_key_del,
}
module = AnsibleModule(argument_spec=argument_spec)
ram = ram_connect(module)
invocations[module.params.get('state')](module, ram)


if __name__ == '__main__':
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

create和delete实现的逻辑没什么大的问题,由于这个module本身功能不是很大,逻辑不复杂,所以个人认为直接在main中实现create和delete就可以了,不用单独定义三个函数,可以避免重复多次的取值和判断的逻辑,同时整体代码看起来也很整洁。

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

两个函数之间有且只有两个空行

main()
144 changes: 144 additions & 0 deletions lib/ansible/modules/cloud/alicloud/alicloud_access_key_facts.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
#!/usr/bin/python
# coding=utf-8
# Copyright (c) 2017 Alibaba Group Holding Limited. Zhuwei <[email protected]>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see http://www.gnu.org/licenses/.


from __future__ import absolute_import, division, print_function
__metaclass__ = type

ANSIBLE_METADATA = {'metadata_version': '1.1',
'status': ['preview'],
'supported_by': 'community'}

DOCUMENTATION = '''
---
module: alicloud_access_key_facts
version_added: "2.5"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

change it to 2.6

short_description: Gather facts on access_keys of Alibaba Cloud Ram User.
description:
- This module fetches data from the Open API in Alicloud.
The module must be called by a user name.

options:
user_name:
description:
- A name of a ram user.
author:
- Zhu Wei (@zhuweif)
requirements:
- "python >= 2.6"
- "footmark"
extends_documentation_fragment:
- alicloud
'''

EXAMPLES = '''
# Fetch disk details according to setting different filters
- name: Fetch access_key details example
hosts: localhost
vars:
alicloud_access_key: <your-alicloud-access-key>
alicloud_secret_key: <your-alicloud-secret-key>
alicloud_region: cn-beijing
user_name:
- [email protected]
tasks:
- name: Find all access_keys of a ram user
alicloud_access_key_facts:
alicloud_access_key: '{{ alicloud_access_key }}'
alicloud_secret_key: '{{ alicloud_secret_key }}'
alicloud_region: '{{ alicloud_region }}'
register: access_keys_by_user
- debug: var=access_keys_by_user

'''

RETURN = '''
access_keys:
description: Details about the access_key.
returned: when success
type: list
sample: [
{
"access_key_id": "0wNEpMMlzy7szvai",
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

敏感信息记得脱敏

"status": "Active",
"create_date": "2015-01-23T12:33:18Z"
},
{
"access_key_id": "WnIWUruvfaDT37vQ",
"status": "Inactive",
"create_date": "2015-03-24T21:12:21Z"
}
]
total:
description: The number of all access_keys of the ram user.
returned: when success
type: int
sample: 2
'''

from ansible.module_utils.basic import AnsibleModule
from ansible.module_utils.alicloud_ecs import ecs_argument_spec,ram_connect

HAS_FOOTMARK = False

try:
from footmark.exception import ECSResponseError
HAS_FOOTMARK = True
except ImportError:
HAS_FOOTMARK = False


def get_info(accesskey):
"""
Retrieves information from an access_key
ID and returns it as a dictionary
"""
return {
'access_key_id': accesskey.access_key_id,
'access_key_secret': accesskey.access_key_secret,
'status': accesskey.status,
'create_date': accesskey.create_date
}


def main():
argument_spec = ecs_argument_spec()
argument_spec.update(dict(
user_name=dict(required=True),
)
)
module = AnsibleModule(argument_spec=argument_spec)
if HAS_FOOTMARK is False:
module.fail_json(msg="Package 'footmark' required for this module.")

user_name = module.params['user_name']
result = []
ids = []
try:
ram = ram_connect(module)
for accesskey in ram.list_access_keys(user_name=user_name):
result.append(get_info(accesskey))
module.exit_json(changed=False, access_keys=result, total=len(result))
except ECSResponseError as e:
module.fail_json(msg='Error in describe access_keys: %s' % str(e))
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

format格式



if __name__ == '__main__':
main()