mirror of https://github.com/ansible/ansible.git
Add shared connection code for mysql modules
parent
9e52a7c769
commit
9f69b6b585
@ -0,0 +1,66 @@
|
|||||||
|
# This code is part of Ansible, but is an independent component.
|
||||||
|
# This particular file snippet, and this file snippet only, is BSD licensed.
|
||||||
|
# Modules you write using this snippet, which is embedded dynamically by Ansible
|
||||||
|
# still belong to the author of the module, and may assign their own license
|
||||||
|
# to the complete work.
|
||||||
|
#
|
||||||
|
# Copyright (c), Jonathan Mainguy <jon@soh.re>, 2015
|
||||||
|
# Most of this was originally added by Sven Schliesing @muffl0n in the mysql_user.py module
|
||||||
|
# All rights reserved.
|
||||||
|
#
|
||||||
|
# Redistribution and use in source and binary forms, with or without modification,
|
||||||
|
# are permitted provided that the following conditions are met:
|
||||||
|
#
|
||||||
|
# * Redistributions of source code must retain the above copyright
|
||||||
|
# notice, this list of conditions and the following disclaimer.
|
||||||
|
# * Redistributions in binary form must reproduce the above copyright notice,
|
||||||
|
# this list of conditions and the following disclaimer in the documentation
|
||||||
|
# and/or other materials provided with the distribution.
|
||||||
|
#
|
||||||
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
||||||
|
# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
||||||
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
||||||
|
# IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
||||||
|
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
||||||
|
# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
||||||
|
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
||||||
|
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def mysql_connect(module, login_user=None, login_password=None, config_file='', ssl_cert=None, ssl_key=None, ssl_ca=None, db=None, cursor_class=None):
|
||||||
|
config = {
|
||||||
|
'host': module.params['login_host'],
|
||||||
|
'ssl': {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if module.params['login_unix_socket']:
|
||||||
|
config['unix_socket'] = module.params['login_unix_socket']
|
||||||
|
else:
|
||||||
|
config['port'] = module.params['login_port']
|
||||||
|
|
||||||
|
if os.path.exists(config_file):
|
||||||
|
config['read_default_file'] = config_file
|
||||||
|
|
||||||
|
# If login_user or login_password are given, they should override the
|
||||||
|
# config file
|
||||||
|
if login_user is not None:
|
||||||
|
config['user'] = login_user
|
||||||
|
if login_password is not None:
|
||||||
|
config['passwd'] = login_password
|
||||||
|
if ssl_cert is not None:
|
||||||
|
config['ssl']['cert'] = ssl_cert
|
||||||
|
if ssl_key is not None:
|
||||||
|
config['ssl']['key'] = ssl_key
|
||||||
|
if ssl_ca is not None:
|
||||||
|
config['ssl']['ca'] = ssl_ca
|
||||||
|
if db is not None:
|
||||||
|
config['db'] = db
|
||||||
|
|
||||||
|
db_connection = MySQLdb.connect(**config)
|
||||||
|
if cursor_class is not None:
|
||||||
|
return db_connection.cursor(cursorclass=MySQLdb.cursors.DictCursor)
|
||||||
|
else:
|
||||||
|
return db_connection.cursor()
|
@ -0,0 +1,84 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright (c) 2015 Jonathan Mainguy <jon@soh.re>
|
||||||
|
#
|
||||||
|
# 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/>.
|
||||||
|
|
||||||
|
|
||||||
|
class ModuleDocFragment(object):
|
||||||
|
|
||||||
|
# Standard mysql documentation fragment
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
options:
|
||||||
|
login_user:
|
||||||
|
description:
|
||||||
|
- The username used to authenticate with
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
login_password:
|
||||||
|
description:
|
||||||
|
- The password used to authenticate with
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
login_host:
|
||||||
|
description:
|
||||||
|
- Host running the database
|
||||||
|
required: false
|
||||||
|
default: localhost
|
||||||
|
login_port:
|
||||||
|
description:
|
||||||
|
- Port of the MySQL server. Requires login_host be defined as other then localhost if login_port is used
|
||||||
|
required: false
|
||||||
|
default: 3306
|
||||||
|
login_unix_socket:
|
||||||
|
description:
|
||||||
|
- The path to a Unix domain socket for local connections
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
config_file:
|
||||||
|
description:
|
||||||
|
- Specify a config file from which user and password are to be read
|
||||||
|
required: false
|
||||||
|
default: '~/.my.cnf'
|
||||||
|
version_added: "2.0"
|
||||||
|
ssl_ca:
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
version_added: "2.0"
|
||||||
|
description:
|
||||||
|
- The path to a Certificate Authority (CA) certificate. This option, if used, must specify the same certificate as used by the server.
|
||||||
|
ssl_cert:
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
version_added: "2.0"
|
||||||
|
description:
|
||||||
|
- The path to a client public key certificate.
|
||||||
|
ssl_key:
|
||||||
|
required: false
|
||||||
|
default: null
|
||||||
|
version_added: "2.0"
|
||||||
|
description:
|
||||||
|
- The path to the client private key.
|
||||||
|
requirements:
|
||||||
|
- MySQLdb
|
||||||
|
notes:
|
||||||
|
- Requires the MySQLdb Python package on the remote host. For Ubuntu, this
|
||||||
|
is as easy as apt-get install python-mysqldb. (See M(apt).) For CentOS/Fedora, this
|
||||||
|
is as easy as yum install MySQL-python. (See M(yum).)
|
||||||
|
- Both C(login_password) and C(login_user) are required when you are
|
||||||
|
passing credentials. If none are present, the module will attempt to read
|
||||||
|
the credentials from C(~/.my.cnf), and finally fall back to using the MySQL
|
||||||
|
default login of 'root' with no password.
|
||||||
|
'''
|
Loading…
Reference in New Issue