-
Notifications
You must be signed in to change notification settings - Fork 87
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
base: master
Are you sure you want to change the base?
review更改 #91
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,189 @@ | ||
#!/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/. | ||
|
||
|
||
ANSIBLE_METADATA = {'metadata_version': '1.1', | ||
'status': ['preview'], | ||
'supported_by': 'community'} | ||
|
||
DOCUMENTATION = ''' | ||
--- | ||
module: alicloud_access_key | ||
short_description: ansible can manage aliyun access_key through this module | ||
version_added: "2.5" | ||
description: | ||
- "This module allows the user to manage access-keys. Includes those commands:'present', 'absent' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Line 32行不需要用双引号引起来(况且只有一个双引号),另外,英文介绍最好可以稍微正式点儿 |
||
options: | ||
state: | ||
description: | ||
- Create,delete or update the access_key of the user. List all access_keys of a user. | ||
choices: [ 'present','list','absent'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. state的description要跟它的module的功能相对应,这里应该去掉list的部分;choices也一样 |
||
user_name: | ||
description: | ||
- The user name. A name is created from the specified user. | ||
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. | ||
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' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 = ''' | ||
changed: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 变量changed 不用暴露在RETURN中 |
||
description: current operation whether changed the resource | ||
returned: when success | ||
type: bool | ||
sample: true | ||
access_key: | ||
description: the access_key's headers after create access_key | ||
returned: on present | ||
type: dict | ||
sample: { | ||
"access_key_id": "0wNEpMMlzy7szvai", | ||
"access_key_secret": "PupkTg8jdmau1cXxYacgE736PJj4cA", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 敏感信息不要暴露在开源代码中,用“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'] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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']) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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')) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 变量之间应该有一个空格进行分割,不然无法通过CI,所以145行应该是:module.fail_json(msg="Failed to delete access_key {0} with error {1}".format(module.params.get('access_key_id'), e)) |
||
module.exit_json(changed=changed) | ||
|
||
def validate_parameters(required_vars, valid_vars, module): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 %s is not valid for %s command" % (k, state)) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. fail_json的msg应该使用format,而不是% |
||
return params | ||
|
||
|
||
def main(): | ||
argument_spec = ecs_argument_spec() | ||
argument_spec.update(dict( | ||
state=dict( | ||
choices=['present', 'absent'],required=True), | ||
user_name = dict(required=True), | ||
access_key_ids = dict(required=False), | ||
is_active = dict(required=False), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. argument_spec 中的参数的定义要跟DOCUMENTATION中的保持一致,如果是required=True,要进行声明,否则不用;如果有choices,要声明,用于做参数合法性校验,如果有default,要声明,为其指定一个初始化的default value;所有的变量的类型要进行声明,具体可参考:https://github.com/ansible/ansible/pull/36898/files#diff-7e74fd025d257f404dbd79c735e2cdd3 这是一个已经提交到官方的并且被官方review过多次的PR |
||
)) | ||
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__': | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. create和delete实现的逻辑没什么大的问题,由于这个module本身功能不是很大,逻辑不复杂,所以个人认为直接在main中实现create和delete就可以了,不用单独定义三个函数,可以避免重复多次的取值和判断的逻辑,同时整体代码看起来也很整洁。 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 两个函数之间有且只有两个空行 |
||
main() |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
#!/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" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 敏感信息记得脱敏 |
||
"status": "Active", | ||
"create_date": "2015-01-23T12:33:18Z" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 参数上下要对齐 |
||
}, | ||
{ | ||
"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 = [] | ||
|
||
if user_name: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 有了124行的required=True,135行的逻辑可以省略 |
||
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)) | ||
else: | ||
module.fail_json(msg='user_name is needed') | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
在metadata中要加上“'supported_by': 'community'”