1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
|
#!/usr/bin/python
##
## SecurePass CLI tools utilities
## Modify application
##
## (c) 2013 Giuseppe Paterno' (gpaterno@gpaterno.com)
## GARL Sagl (www.garl.ch)
##
from argparse import ArgumentParser
from securepass import utils
from securepass import securepass
import logging
import sys
parser = ArgumentParser(
description="Modify an application in SecurePass",
prog="sp-app-mod",
)
parser.add_argument('-D', '--debug',
action='store_true', dest="debug_flag",
help="Enable debug output",)
parser.add_argument('-l', '--label',
default=None,
action='store', dest="label",
help="Label",)
parser.add_argument('-4', '--ipv4',
default=None,
action='store', dest="ipv4",
help="Restrict to IPv4 network",)
parser.add_argument('-6', '--ipv6',
default=None,
action='store', dest="ipv6",
help="Restrict to IPv6 network",)
parser.add_argument('-g', '--group',
default=None,
action='store', dest="group",
help="Group name (restriction)",)
parser.add_argument('-w', '--write',
action='store_true', dest="write",
default=False,
help="Write capabilites",)
parser.add_argument('-r', '--read',
action='store_true', dest="read",
default=False,
help="Readonly capabiliteies",)
parser.add_argument('appid', action='store')
values = parser.parse_args()
## Set debug
FORMAT = '%(asctime)-15s %(levelname)s: %(message)s'
if values.debug_flag:
logging.basicConfig(format=FORMAT, level=logging.DEBUG)
else:
logging.basicConfig(format=FORMAT, level=logging.INFO)
## Load config
config = utils.loadConfig()
## Config the handler
sp_handler = securepass.SecurePass(app_id=config['app_id'],
app_secret=config['app_secret'],
endpoint=config['endpoint'])
## Add the user
logging.debug("Modifying application %s" % values.appid)
try:
## Grabbing previous configuration
myapp = sp_handler.app_info(values.appid)
if values.label is not None:
myapp['label'] = values.label
if values.ipv4 is not None:
myapp['allow_network_ipv4'] = values.ipv4
if values.ipv6 is not None:
myapp['allow_network_ipv6'] = values.ipv6
if values.group is not None:
myapp['group'] = values.group.strip()
if values.write:
myapp['write'] = True
if values.read:
myapp['write'] = False
result = sp_handler.app_modify(
app_id=values.appid,
label=myapp['label'],
allow_network_ipv4=myapp['allow_network_ipv4'],
allow_network_ipv6=myapp['allow_network_ipv6'],
write=myapp['write'],
group=myapp['group']
)
sys.exit(0)
except Exception as e:
sys.exit(e)
|