htpasswd 6.9 KB
Newer Older
1
#!/usr/bin/python
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
# -*- coding: utf-8 -*-

# (c) 2013, Nimbis Services, Inc.
#
# 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/>.
#
Lorin Hochstein committed
21 22
DOCUMENTATION = """
module: htpasswd
23
version_added: "1.3"
Lorin Hochstein committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
short_description: manage user files for basic authentication
description:
  - Add and remove username/password entries in a password file using htpasswd.
  - This is used by web servers such as Apache and Nginx for basic authentication.
options:
  path:
    required: true
    aliases: [ dest, destfile ]
    description:
      - Path to the file that contains the usernames and passwords
  name:
    required: true
    aliases: [ username ]
    description:
      - User name to add or remove
  password:
    required: false
    description:
42
      - Password associated with user.
43
      - Must be specified if user does not exist yet.
44 45
  crypt_scheme:
    required: false
46
    choices: ["apr_md5_crypt", "des_crypt", "ldap_sha1", "plaintext"]
47 48
    default: "apr_md5_crypt"
    description:
49
      - Encryption scheme to be used.
Lorin Hochstein committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63
  state:
    required: false
    choices: [ present, absent ]
    default: "present"
    description:
      - Whether the user entry should be present or not
  create:
    required: false
    choices: [ "yes", "no" ]
    default: "yes"
    description:
      - Used with C(state=present). If specified, the file will be created
        if it does not already exist. If set to "no", will fail if the
        file does not exist
64
notes:
65 66 67
  - "This module depends on the I(passlib) Python library, which needs to be installed on all target systems."
  - "On Debian, Ubuntu, or Fedora: install I(python-passlib)."
  - "On RHEL or CentOS: Enable EPEL, then install I(python-passlib)."
Lorin Hochstein committed
68 69 70 71 72 73 74 75 76 77 78 79 80
requires: [ passlib>=1.6 ]
author: Lorin Hochstein
"""

EXAMPLES = """
# Add a user to a password file and ensure permissions are set
- htpasswd: path=/etc/nginx/passwdfile name=janedoe password=9s36?;fyNp owner=root group=www-data mode=0640
# Remove a user from a password file
- htpasswd: path=/etc/apache2/passwdfile name=foobar state=absent
"""


import os
81
from distutils.version import StrictVersion
Lorin Hochstein committed
82 83 84

try:
    from passlib.apache import HtpasswdFile
85
    import passlib
Lorin Hochstein committed
86 87 88 89 90 91 92 93 94 95 96 97
except ImportError:
    passlib_installed = False
else:
    passlib_installed = True


def create_missing_directories(dest):
    destpath = os.path.dirname(dest)
    if not os.path.exists(destpath):
        os.makedirs(destpath)


98
def present(dest, username, password, crypt_scheme, create, check_mode):
Lorin Hochstein committed
99 100 101 102 103 104 105 106 107
    """ Ensures user is present

    Returns (msg, changed) """
    if not os.path.exists(dest):
        if not create:
            raise ValueError('Destination %s does not exist' % dest)
        if check_mode:
            return ("Create %s" % dest, True)
        create_missing_directories(dest)
108
        if StrictVersion(passlib.__version__) >= StrictVersion('1.6'):
109
            ht = HtpasswdFile(dest, new=True, default_scheme=crypt_scheme)
110 111
        else:
            ht = HtpasswdFile(dest, autoload=False, default=crypt_scheme)
112 113 114 115
        if getattr(ht, 'set_password', None):
            ht.set_password(username, password)
        else:
            ht.update(username, password)
Lorin Hochstein committed
116 117 118
        ht.save()
        return ("Created %s and added %s" % (dest, username), True)
    else:
119
        if StrictVersion(passlib.__version__) >= StrictVersion('1.6'):
120
            ht = HtpasswdFile(dest, new=False, default_scheme=crypt_scheme)
121 122
        else:
            ht = HtpasswdFile(dest, default=crypt_scheme)
123

124 125 126 127 128 129 130
        found = None
        if getattr(ht, 'check_password', None):
            found = ht.check_password(username, password)
        else:
            found = ht.verify(username, password)

        if found:
Lorin Hochstein committed
131 132 133
            return ("%s already present" % username, False)
        else:
            if not check_mode:
134 135 136 137
                if getattr(ht, 'set_password', None):
                    ht.set_password(username, password)
                else:
                    ht.update(username, password)
Lorin Hochstein committed
138 139 140 141 142 143 144 145 146 147 148
                ht.save()
            return ("Add/update %s" % username, True)


def absent(dest, username, check_mode):
    """ Ensures user is absent

    Returns (msg, changed) """
    if not os.path.exists(dest):
        raise ValueError("%s does not exists" % dest)

149
    if StrictVersion(passlib.__version__) >= StrictVersion('1.6'):
150
        ht = HtpasswdFile(dest, new=False)
151
    else:
152 153
        ht = HtpasswdFile(dest)

Lorin Hochstein committed
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
    if username not in ht.users():
        return ("%s not present" % username, False)
    else:
        if not check_mode:
            ht.delete(username)
            ht.save()
        return ("Remove %s" % username, True)


def check_file_attrs(module, changed, message):

    file_args = module.load_file_common_arguments(module.params)
    if module.set_file_attributes_if_different(file_args, False):

        if changed:
            message += " and "
        changed = True
        message += "ownership, perms or SE linux context changed"

    return message, changed


def main():
    arg_spec = dict(
        path=dict(required=True, aliases=["dest", "destfile"]),
        name=dict(required=True, aliases=["username"]),
        password=dict(required=False, default=None),
181
        crypt_scheme=dict(required=False, default=None),
Lorin Hochstein committed
182
        state=dict(required=False, default="present"),
183
        create=dict(type='bool', default='yes'),
Lorin Hochstein committed
184 185 186 187 188 189 190 191 192

    )
    module = AnsibleModule(argument_spec=arg_spec,
                           add_file_common_args=True,
                           supports_check_mode=True)

    path = module.params['path']
    username = module.params['name']
    password = module.params['password']
193
    crypt_scheme = module.params['crypt_scheme']
Lorin Hochstein committed
194 195 196 197 198 199 200 201 202
    state = module.params['state']
    create = module.params['create']
    check_mode = module.check_mode

    if not passlib_installed:
        module.fail_json(msg="This module requires the passlib Python library")

    try:
        if state == 'present':
203
            (msg, changed) = present(path, username, password, crypt_scheme, create, check_mode)
Lorin Hochstein committed
204 205 206 207 208 209 210 211 212 213 214
        elif state == 'absent':
            (msg, changed) = absent(path, username, check_mode)
        else:
            module.fail_json(msg="Invalid state: %s" % state)

        check_file_attrs(module, changed, msg)
        module.exit_json(msg=msg, changed=changed)
    except Exception, e:
        module.fail_json(msg=str(e))


215
# import module snippets
216
from ansible.module_utils.basic import *
Lorin Hochstein committed
217 218 219

if __name__ == '__main__':
    main()