3849f60814e96ac2c30de464c1253a2f7a85d941
[idra/samba.git] / source4 / scripting / python / samba / netcmd / enableaccount.py
1 #!/usr/bin/python
2 #
3 # Enables an user account on a Samba4 server
4 # Copyright Jelmer Vernooij 2008
5 #
6 # Based on the original in EJS:
7 # Copyright Andrew Tridgell 2005
8 #
9 # This program is free software; you can redistribute it and/or modify
10 # it under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # This program is distributed in the hope that it will be useful,
15 # but WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
21 #
22
23 import samba.getopt as options
24
25 from samba.auth import system_session
26 from samba.netcmd import Command, CommandError, Option
27 from samba.samdb import SamDB
28
29 class cmd_enableaccount(Command):
30     """Enables a user"""
31
32     synopsis = "enableaccount [username] [options]"
33
34     takes_optiongroups = {
35         "sambaopts": options.SambaOptions,
36         "versionopts": options.VersionOptions,
37         "credopts": options.CredentialsOptions,
38     }
39
40     takes_options = [
41         Option("-H", help="LDB URL for database or target server", type=str),
42         Option("--filter", help="LDAP Filter to set password on", type=str),
43         ]
44
45     takes_args = ["username?"]
46
47     def run(self, username=None, sambaopts=None, credopts=None,
48             versionopts=None, filter=None, H=None):
49         if username is None and filter is None:
50             raise CommandError("Either the username or '--filter' must be specified!")
51
52         if filter is None:
53             filter = "(&(objectClass=user)(sAMAccountName=%s))" % (username)
54
55         lp = sambaopts.get_loadparm()
56         creds = credopts.get_credentials(lp)
57
58         samdb = SamDB(url=H, session_info=system_session(),
59             credentials=creds, lp=lp)
60         samdb.enable_account(filter)