summaryrefslogtreecommitdiffstats
path: root/base/server/python/pki/server/cli/subsystem.py
diff options
context:
space:
mode:
authorEndi S. Dewata <edewata@redhat.com>2015-01-20 22:11:50 -0500
committerEndi S. Dewata <edewata@redhat.com>2015-01-28 14:13:06 -0500
commit3294ac64d9e71f76309d2cc12a2c256838fe8666 (patch)
tree8756d115624ed0a62ef0b70d3928f626a4feb3ef /base/server/python/pki/server/cli/subsystem.py
parenta578cf649c0c41676677cf0a6ede03ea8d6fedb7 (diff)
downloadpki-3294ac64d9e71f76309d2cc12a2c256838fe8666.tar.gz
pki-3294ac64d9e71f76309d2cc12a2c256838fe8666.tar.xz
pki-3294ac64d9e71f76309d2cc12a2c256838fe8666.zip
Added server management CLI.
A new pki-server CLI has been added to manage the instances and subsystems using the server management library. This CLI manages the system files directly, so it can only be run locally on the server by the system administrator. The autoDeploy setting in server.xml has been enabled by default. An upgrade script has been added to enable the autoDeploy setting in existing instances. https://fedorahosted.org/pki/ticket/1183
Diffstat (limited to 'base/server/python/pki/server/cli/subsystem.py')
-rw-r--r--base/server/python/pki/server/cli/subsystem.py309
1 files changed, 309 insertions, 0 deletions
diff --git a/base/server/python/pki/server/cli/subsystem.py b/base/server/python/pki/server/cli/subsystem.py
new file mode 100644
index 000000000..3aad00a05
--- /dev/null
+++ b/base/server/python/pki/server/cli/subsystem.py
@@ -0,0 +1,309 @@
+#!/usr/bin/python
+# Authors:
+# Endi S. Dewata <edewata@redhat.com>
+#
+# 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 of the License.
+#
+# 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.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+#
+# Copyright (C) 2015 Red Hat, Inc.
+# All rights reserved.
+#
+
+import getopt
+import os
+import sys
+
+import pki.cli
+import pki.server
+
+
+class SubsystemCLI(pki.cli.CLI):
+
+ def __init__(self):
+ super(SubsystemCLI, self).__init__('subsystem', 'Subsystem management commands')
+
+ self.add_module(SubsystemDisableCLI())
+ self.add_module(SubsystemEnableCLI())
+ self.add_module(SubsystemFindCLI())
+ self.add_module(SubsystemShowCLI())
+
+ @staticmethod
+ def print_subsystem(subsystem):
+ print ' Subsystem ID: %s' % subsystem.name
+ print ' Instance ID: %s' % subsystem.instance.name
+ print ' Enabled: %s' % subsystem.is_enabled()
+
+
+class SubsystemFindCLI(pki.cli.CLI):
+
+ def __init__(self):
+ super(SubsystemFindCLI, self).__init__('find', 'Find subsystems')
+
+ def usage(self):
+ print 'Usage: pki-server subsystem-find [OPTIONS]'
+ print
+ print ' -i, --instance <instance ID> Instance ID.'
+ print ' -v, --verbose Run in verbose mode.'
+ print ' --help Show help message.'
+ print
+
+ def execute(self, args):
+
+ try:
+ opts, _ = getopt.getopt(args, 'i:v', [
+ 'instance=',
+ 'verbose', 'help'])
+
+ except getopt.GetoptError as e:
+ print 'ERROR: ' + str(e)
+ self.usage()
+ sys.exit(1)
+
+ instance_name = None
+
+ for o, a in opts:
+ if o in ('-i', '--instance'):
+ instance_name = a
+
+ elif o in ('-v', '--verbose'):
+ self.set_verbose(True)
+
+ elif o == '--help':
+ self.print_help()
+ sys.exit()
+
+ else:
+ print 'ERROR: unknown option ' + o
+ self.usage()
+ sys.exit(1)
+
+ if not instance_name:
+ print 'ERROR: missing instance ID'
+ self.usage()
+ sys.exit(1)
+
+ instance = pki.server.PKIInstance(instance_name)
+ instance.load()
+
+ results = []
+
+ for name in os.listdir(instance.base_dir):
+
+ subsystem = pki.server.PKISubsystem(instance, name)
+ if not subsystem.is_valid():
+ continue
+
+ results.append(subsystem)
+
+ self.print_message('%s entries matched' % len(results))
+
+ first = True
+ for subsystem in results:
+ if first:
+ first = False
+ else:
+ print
+
+ SubsystemCLI.print_subsystem(subsystem)
+
+
+class SubsystemShowCLI(pki.cli.CLI):
+
+ def __init__(self):
+ super(SubsystemShowCLI, self).__init__('show', 'Show subsystem')
+
+ def usage(self):
+ print 'Usage: pki-server subsystem-show [OPTIONS] <subsystem ID>'
+ print
+ print ' -i, --instance <instance ID> Instance ID.'
+ print ' -v, --verbose Run in verbose mode.'
+ print ' --help Show help message.'
+ print
+
+ def execute(self, argv):
+
+ try:
+ opts, args = getopt.getopt(argv, 'i:v', [
+ 'instance=',
+ 'verbose', 'help'])
+
+ except getopt.GetoptError as e:
+ print 'ERROR: ' + str(e)
+ self.usage()
+ sys.exit(1)
+
+ if len(args) != 1:
+ print 'ERROR: missing subsystem ID'
+ self.usage()
+ sys.exit(1)
+
+ subsystem_name = args[0]
+ instance_name = None
+
+ for o, a in opts:
+ if o in ('-i', '--instance'):
+ instance_name = a
+
+ elif o in ('-v', '--verbose'):
+ self.set_verbose(True)
+
+ elif o == '--help':
+ self.print_help()
+ sys.exit()
+
+ else:
+ print 'ERROR: unknown option ' + o
+ self.usage()
+ sys.exit(1)
+
+ if not instance_name:
+ print 'ERROR: missing instance ID'
+ self.usage()
+ sys.exit(1)
+
+ instance = pki.server.PKIInstance(instance_name)
+ instance.load()
+
+ subsystem = pki.server.PKISubsystem(instance, subsystem_name)
+
+ SubsystemCLI.print_subsystem(subsystem)
+
+
+class SubsystemEnableCLI(pki.cli.CLI):
+
+ def __init__(self):
+ super(SubsystemEnableCLI, self).__init__('enable', 'Enable subsystem')
+
+ def usage(self):
+ print 'Usage: pki-server subsystem-enable [OPTIONS] <subsystem ID>'
+ print
+ print ' -i, --instance <instance ID> Instance ID.'
+ print ' -v, --verbose Run in verbose mode.'
+ print ' --help Show help message.'
+ print
+
+ def execute(self, argv):
+
+ try:
+ opts, args = getopt.getopt(argv, 'i:v', [
+ 'instance=',
+ 'verbose', 'help'])
+
+ except getopt.GetoptError as e:
+ print 'ERROR: ' + str(e)
+ self.usage()
+ sys.exit(1)
+
+ if len(args) != 1:
+ print 'ERROR: missing subsystem ID'
+ self.usage()
+ sys.exit(1)
+
+ subsystem_name = args[0]
+ instance_name = None
+
+ for o, a in opts:
+ if o in ('-i', '--instance'):
+ instance_name = a
+
+ elif o in ('-v', '--verbose'):
+ self.set_verbose(True)
+
+ elif o == '--help':
+ self.print_help()
+ sys.exit()
+
+ else:
+ print 'ERROR: unknown option ' + o
+ self.usage()
+ sys.exit(1)
+
+ if not instance_name:
+ print 'ERROR: missing instance ID'
+ self.usage()
+ sys.exit(1)
+
+ instance = pki.server.PKIInstance(instance_name)
+ instance.load()
+
+ subsystem = pki.server.PKISubsystem(instance, subsystem_name)
+ subsystem.enable()
+
+ self.print_message('Enabled "%s" subsystem' % subsystem_name)
+
+ SubsystemCLI.print_subsystem(subsystem)
+
+
+class SubsystemDisableCLI(pki.cli.CLI):
+
+ def __init__(self):
+ super(SubsystemDisableCLI, self).__init__('disable', 'Disable subsystem')
+
+ def usage(self):
+ print 'Usage: pki-server subsystem-disable [OPTIONS] <subsystem ID>'
+ print
+ print ' -i, --instance <instance ID> Instance ID.'
+ print ' -v, --verbose Run in verbose mode.'
+ print ' --help Show help message.'
+ print
+
+ def execute(self, argv):
+
+ try:
+ opts, args = getopt.getopt(argv, 'i:v', [
+ 'instance=',
+ 'verbose', 'help'])
+
+ except getopt.GetoptError as e:
+ print 'ERROR: ' + str(e)
+ self.usage()
+ sys.exit(1)
+
+ if len(args) != 1:
+ print 'ERROR: missing subsystem ID'
+ self.usage()
+ sys.exit(1)
+
+ subsystem_name = args[0]
+ instance_name = None
+
+ for o, a in opts:
+ if o in ('-i', '--instance'):
+ instance_name = a
+
+ elif o in ('-v', '--verbose'):
+ self.set_verbose(True)
+
+ elif o == '--help':
+ self.print_help()
+ sys.exit()
+
+ else:
+ print 'ERROR: unknown option ' + o
+ self.usage()
+ sys.exit(1)
+
+ if not instance_name:
+ print 'ERROR: missing instance ID'
+ self.usage()
+ sys.exit(1)
+
+ instance = pki.server.PKIInstance(instance_name)
+ instance.load()
+
+ subsystem = pki.server.PKISubsystem(instance, subsystem_name)
+ subsystem.disable()
+
+ self.print_message('Disabled "%s" subsystem' % subsystem_name)
+
+ SubsystemCLI.print_subsystem(subsystem)