2008-10-30 03:20:28 -05:00
|
|
|
# Authors:
|
|
|
|
# Jason Gerard DeRose <jderose@redhat.com>
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
|
|
|
"""
|
|
|
|
Misc frontend plugins.
|
|
|
|
"""
|
|
|
|
|
2008-11-14 22:58:39 -06:00
|
|
|
from ipalib import api, LocalOrRemote
|
2008-10-30 03:20:28 -05:00
|
|
|
|
|
|
|
|
2008-11-12 01:46:04 -06:00
|
|
|
# FIXME: We should not let env return anything in_server
|
|
|
|
# when mode == 'production'. This would allow an attacker to see the
|
|
|
|
# configuration of the server, potentially revealing compromising
|
|
|
|
# information. However, it's damn handy for testing/debugging.
|
2008-11-14 22:58:39 -06:00
|
|
|
class env(LocalOrRemote):
|
2008-10-30 03:20:28 -05:00
|
|
|
"""Show environment variables"""
|
|
|
|
|
2008-11-12 02:47:37 -06:00
|
|
|
takes_args = ('variables*',)
|
|
|
|
|
2008-11-14 22:58:39 -06:00
|
|
|
def __find_keys(self, variables):
|
2008-11-12 02:47:37 -06:00
|
|
|
for key in variables:
|
|
|
|
if key in self.env:
|
|
|
|
yield (key, self.env[key])
|
2008-11-12 01:46:04 -06:00
|
|
|
|
2008-11-14 22:58:39 -06:00
|
|
|
def execute(self, variables, **options):
|
2008-11-12 02:47:37 -06:00
|
|
|
if variables is None:
|
|
|
|
return tuple(
|
|
|
|
(key, self.env[key]) for key in self.env
|
|
|
|
)
|
2008-11-14 22:58:39 -06:00
|
|
|
return tuple(self.__find_keys(variables))
|
2008-10-30 03:20:28 -05:00
|
|
|
|
2008-11-12 10:55:11 -06:00
|
|
|
def output_for_cli(self, textui, result, variables, **options):
|
2008-11-12 02:47:37 -06:00
|
|
|
if len(result) == 0:
|
|
|
|
return
|
2008-11-14 22:58:39 -06:00
|
|
|
if len(result) == 1:
|
|
|
|
textui.print_keyval(result)
|
|
|
|
return
|
2008-11-12 01:46:04 -06:00
|
|
|
textui.print_name(self.name)
|
|
|
|
textui.print_keyval(result)
|
|
|
|
textui.print_count(result, '%d variable', '%d variables')
|
2008-10-30 03:20:28 -05:00
|
|
|
|
2008-11-12 01:46:04 -06:00
|
|
|
api.register(env)
|