From e1e1db9c9fc71c88e847aba8a9a02bc383317c18 Mon Sep 17 00:00:00 2001 From: Pavel Zuna Date: Tue, 16 Jun 2009 13:44:37 +0200 Subject: Rename plugins2 files (remove '2' suffix'). --- ipalib/plugins/config.py | 183 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 183 insertions(+) create mode 100644 ipalib/plugins/config.py (limited to 'ipalib/plugins/config.py') diff --git a/ipalib/plugins/config.py b/ipalib/plugins/config.py new file mode 100644 index 00000000..c97c5759 --- /dev/null +++ b/ipalib/plugins/config.py @@ -0,0 +1,183 @@ +# Authors: +# Rob Crittenden +# Pavel Zuna +# +# Copyright (C) 2008 Red Hat +# see file 'COPYING' for use and warranty information +# +# This program 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; version 2 only +# +# This program 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 this program; if not, write to the Free Software +# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + +""" +IPA configuration. +""" + +from ipalib import api, errors +from ipalib import Command +from ipalib import Int, Str + +_search_options = { + 'ipaSearchTimeLimit': 'Time limit (in seconds)', + 'ipaSearchRecordsLimit': 'Record limit', + 'ipaUserSearchFields': 'User search fields', + 'ipaGroupSearchFields': 'Group search fields', +} + +_user_options = { + 'ipaMaxUsernameLength': 'Maximum name length', + 'ipaHomesRootDir': 'Root for home directories', + 'ipaDefaultLoginShell': 'Default shell', + 'ipaDefaultPrimaryGroup': 'Default group', + 'ipaDefaultEmailDomain': 'Default e-mail domain', +} + +_options = { + 'Search': _search_options, + 'User': _user_options, +} + + +class config2_mod(Command): + """ + Modify IPA configuration options. + """ + takes_options = ( + Int('ipamaxusernamelength?', + cli_name='maxusername', + doc='Max. Username length', + minvalue=1, + attribute=True, + ), + Str('ipahomesrootdir?', + cli_name='homedirectory', + doc='Default location of home directories', + attribute=True, + ), + Str('ipadefaultloginshell?', + cli_name='defaultshell', + doc='Default shell for new users', + attribute=True, + ), + Str('ipadefaultprimarygroup?', + cli_name='defaultgroup', + doc='Default group for new users', + attribute=True, + ), + Str('ipadefaultemaildomain?', + cli_name='emaildomain', + doc='Default e-mail domain new users', + attribute=True, + ), + Int('ipasearchtimelimit?', + cli_name='searchtimelimit', + doc='Max. amount of time (sec.) for a search (-1 is unlimited)', + minvalue=-1, + attribute=True, + ), + Int('ipasearchrecordslimit?', + cli_name='searchrecordslimit', + doc='Max. number of records to search (-1 is unlimited)', + minvalue=-1, + attribute=True, + ), + Str('ipausersearchfields?', + cli_name='usersearch', + doc='A comma-separated list of fields to search when searching for users', + attribute=True, + ), + Str('ipagroupsearchfields?', + cli_name='groupsearch', + doc='A comma-separated list of fields to search when searching for groups', + attribute=True, + ), + ) + + def execute(self, *args, **options): + """ + Execute the config-mod operation. + + The dn should not be passed as a keyword argument as it is constructed + by this method. + + Returns the entry + + :param args: This function takes no positional arguments + :param kw: Keyword arguments for the other LDAP attributes. + """ + assert 'dn' not in options + ldap = self.api.Backend.ldap2 + + (dn, entry_attrs) = ldap.get_ipa_config() + entry_attrs = self.args_options_2_entry(*args, **options) + + try: + ldap.update_entry(dn, entry_attrs) + except errors.EmptyModlist: + pass + + return ldap.get_entry(dn, entry_attrs.keys()) + + def output_for_cli(self, textui, result, *args, **options): + (dn, entry_attrs) = result + + for p in self.params: + textui.print_plain(p) + textui.print_name(self.name) + for (name, options) in _options.iteritems(): + textui.print_plain('%s options:' % name) + for (k, v) in options.iteritems(): + k = k.lower() + if k in entry_attrs: + textui.print_attribute(v, entry_attrs[k]) + textui.print_plain('') + textui.print_dashed('Modified IPA configuration options.') + +api.register(config2_mod) + + +class config2_show(Command): + """ + Display IPA configuration options. + """ + + def execute(self, *args, **options): + """ + Execute the config-show operation. + + The dn should not be passed as a keyword argument as it is constructed + by this method. + + Returns the entry + + :param args: Not used. + :param kw: Not used. + """ + ldap = self.api.Backend.ldap2 + return ldap.get_ipa_config() + + def output_for_cli(self, textui, result, *args, **options): + (dn, entry_attrs) = result + count = 0 + + textui.print_name(self.name) + for (name, options) in _options.iteritems(): + textui.print_plain('%s options:' % name) + for (k, v) in options.iteritems(): + if k in entry_attrs: + textui.print_attribute(v, entry_attrs[k]) + count += 1 + textui.print_plain('') + textui.print_count(count, '%d option', '%d options') + +api.register(config2_show) + -- cgit