ansible/library/mysql_db

85 lines
2.4 KiB
Text
Raw Normal View History

2012-07-12 01:00:55 +02:00
#!/usr/bin/python
# (c) 2012, Mark Theunissen <mark.theunissen@gmail.com>
# Sponsored by Four Kitchens http://fourkitchens.com.
#
# 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/>.
try:
2012-07-22 01:02:34 +02:00
import MySQLdb
2012-07-12 01:00:55 +02:00
except ImportError:
2012-07-22 01:02:34 +02:00
mysqldb_found = False
else:
mysqldb_found = True
2012-07-12 01:00:55 +02:00
# ===========================================
# MySQL module specific support methods.
#
2012-07-22 01:02:34 +02:00
def db_exists(cursor, db):
2012-07-12 01:00:55 +02:00
res = cursor.execute("SHOW DATABASES LIKE %s", (db,))
return bool(res)
2012-07-22 01:02:34 +02:00
def db_delete(cursor, db):
2012-07-12 01:00:55 +02:00
query = "DROP DATABASE %s" % db
cursor.execute(query)
return True
2012-07-22 01:02:34 +02:00
def db_create(cursor, db):
2012-07-12 01:00:55 +02:00
query = "CREATE DATABASE %s" % db
res = cursor.execute(query)
return True
# ===========================================
# Module execution.
#
2012-07-22 01:02:34 +02:00
def main():
module = AnsibleModule(
argument_spec = dict(
loginuser=dict(default="root"),
loginpass=dict(default=""),
2012-07-22 01:02:34 +02:00
loginhost=dict(default="localhost"),
db=dict(required=True),
state=dict(default="present", choices=["absent", "present"]),
2012-07-22 01:02:34 +02:00
)
)
if not mysqldb_found:
module.fail_json(msg="the python mysqldb module is required")
db = module.params["db"]
state = module.params["state"]
2012-07-12 01:00:55 +02:00
changed = False
try:
2012-07-22 01:02:34 +02:00
db_connection = MySQLdb.connect(host=module.params["loginhost"], user=module.params["loginuser"], passwd=module.params["loginpass"], db="mysql")
2012-07-12 01:00:55 +02:00
cursor = db_connection.cursor()
except Exception as e:
2012-07-22 01:02:34 +02:00
module.fail_json(msg="unable to connect to database")
2012-07-12 01:00:55 +02:00
2012-07-22 01:02:34 +02:00
if db_exists(cursor, db):
2012-07-12 01:00:55 +02:00
if state == "absent":
2012-07-22 01:02:34 +02:00
changed = db_delete(cursor, db)
2012-07-12 01:00:55 +02:00
else:
if state == "present":
2012-07-22 01:02:34 +02:00
changed = db_create(cursor, db)
module.exit_json(changed=changed, db=db)
2012-07-12 01:00:55 +02:00
2012-07-22 01:02:34 +02:00
# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
main()