Skip to content
Snippets Groups Projects
Commit 8e14aa0f authored by Seblu's avatar Seblu
Browse files

Add profile support

parent c530ed29
No related branches found
No related tags found
No related merge requests found
======
Config
======
cc-cli support FreeDesktop BaseDirectory specifications (http://standards.freedesktop.org/basedir-spec/0.6/)
Your main config is stored in ~/.config/cc-cli/cli (ini file format with section cli)
You can configure all parameter in this file
You will find an example in examples subdirectory in git.
You can set default behaviour with environment variables. The following are recognised:
CC_SERVER, CC_PORT, CC_LOGIN, CC_PASS, CC_DEBUG, CC_PROFILE
To quickly connect to mulptiple servers, you can define profiles.
A profile is an ini config file in ~/.config/cc-cli/ directory with suffix .profile and section profile.
Profiles file are loaded exactly like the main config file.
You can load toto profile by calling cc-cli -P toto
You have to play with the following loading order to do worderful things.
You configuration is loaded in this order:
1 load default config file settings
2 load default config file profile
2 load environment profile
3 load environment settings
4 load argline profile
5 load argline settings
=====
Alias
=====
CLI support aliasing. This is a very useful command substitution
You can use the alias command to set alias.
Setting an alias w, which list online client
alias w "list a&con!=offline&role=client"
Setting an alias vm, which list running vm (and show cpu)
alias vm "list vm&status=running$cpu"
===
TQL
===
You can look in TQL file to see the power of tql.
=========== ===========
New release New release
=========== ===========
Update version in cccli/__init__.py Update version in cccli/__init__.py
Update version in debian/control Update version in debian/control
Update version in debian/changelog Update version in debian/changelog
\ No newline at end of file
...@@ -19,25 +19,41 @@ from cccli.cli import Cli ...@@ -19,25 +19,41 @@ from cccli.cli import Cli
from cccli.printer import Printer from cccli.printer import Printer
from cccli.exception import * from cccli.exception import *
canonical_name="cc-cli"
settings = { settings = {
"port": "1984", "port": "1984",
"timeout": "5", "timeout": "30",
"hsize": "100", "hsize": "100",
"config": "%s/cli"%BaseDirectory.save_config_path(canonical_name), "config": "%s/cli"%BaseDirectory.save_config_path(cccli.canonical_name),
"alias": "%s/alias"%BaseDirectory.save_config_path(canonical_name), "alias": "%s/alias"%BaseDirectory.save_config_path(cccli.canonical_name),
"history": "%s/history"%BaseDirectory.save_data_path(canonical_name), "history": "%s/history"%BaseDirectory.save_data_path(cccli.canonical_name),
} }
printer = Printer(False) def load_config_file(config, filename, section):
'''Update a dict with param from an ini file '''
if os.access(filename, os.R_OK):
fparser = ConfigParser.SafeConfigParser()
fparser.read(filename)
if fparser.has_section(section):
config.update(fparser.items(section))
else:
printer.warn("Unable to load file %s"%filename)
def get_profile_path(profile):
'''Force a profile path from a profile name'''
return "%s/%s/%s.profile"%(BaseDirectory.xdg_config_home, cccli.canonical_name, profile)
try: try:
# load a printer
printer = Printer(False)
# parse config file # parse config file
if os.access(settings["config"], os.R_OK): if os.access(settings["config"], os.R_OK):
fparser = ConfigParser.SafeConfigParser() load_config_file(settings, settings["config"], "cli")
fparser.read(settings["config"])
if fparser.has_section("cli"): # parse config file profile
settings.update(fparser.items("cli")) if "profile" in settings:
load_config_file(settings, get_profile_path(settings["profile"]), "profile")
del settings["profile"]
# parse env # parse env
if "CC_SERVER" in os.environ: if "CC_SERVER" in os.environ:
...@@ -51,65 +67,51 @@ try: ...@@ -51,65 +67,51 @@ try:
if "CC_DEBUG" in os.environ: if "CC_DEBUG" in os.environ:
settings["debug"] = "True" settings["debug"] = "True"
# parse env profile
if "CC_PROFILE" in os.environ:
load_config_file(settings, get_profile_path(os.environ["CC_PROFILE"]), "profile")
# Parse line argument # Parse line argument
oparser = optparse.OptionParser(usage="usage: %prog [options] [commands]", oparser = optparse.OptionParser(usage="usage: %prog [options] [commands]",
version=cccli.version) version=cccli.version)
oparser.add_option("-d", "--debug", oparser.add_option("-d", "--debug", action="store_true",dest="debug",
action="store_true", help="Debug mode")
dest="debug", oparser.add_option("-l", "--login",action="store",dest="login",
default="", help="Server login")
help="debug mode") oparser.add_option("-H", "--hostname",action="store",dest="server",
oparser.add_option("-l", "--login", help="Server hostname")
action="store", oparser.add_option("-P", "--port",action="store",dest="port",
dest="login", help="Server port")
default="", oparser.add_option("-t", "--timeout",action="store",dest="timeout",
help="server login") help="Connection timeout")
oparser.add_option("-s", "--server", oparser.add_option("-p", "--profile",action="store",dest="profile",
action="store", help="Profile name")
dest="server", oparser.add_option("--history-file",action="store",dest="history",
default="",
help="server address")
oparser.add_option("-p", "--port",
action="store",
dest="port",
default="1984",
help="server port")
oparser.add_option("-t", "--timeout",
action="store",
dest="timeout",
default="10",
help="connection timeout")
oparser.add_option("--history-file",
action="store",
dest="history",
default="",
help="History file") help="History file")
oparser.add_option("--history-size", oparser.add_option("--history-size",action="store",dest="hsize",
action="store",
dest="hsize",
default="",
help="History max entry count") help="History max entry count")
oparser.add_option("--force-yes", oparser.add_option("--force-yes",action="store_true",dest="forceyes",
action="store_true", help="Answer Yes to all questions (Dangerous)")
dest="forceyes",
default="",
help="Answer yes to yes/no question")
(options, args) = oparser.parse_args() (options, args) = oparser.parse_args()
# options handling # options handling
for i in ("debug", "login", "server", "port", "timeout", "history", "hsize", "forceyes"): for i in [ x.dest for x in oparser.option_list if x.dest ]:
if hasattr(options, i): if hasattr(options, i):
o = getattr(options, i) o = getattr(options, i)
if o: if o:
settings[i] = o settings[i] = o
# parse argline file profile
if "profile" in settings:
load_config_file(settings, get_profile_path(settings["profile"]), "profile")
del settings["profile"]
# debug stuff # debug stuff
if "debug" in settings: if "debug" in settings:
cccli.debug = bool(settings["debug"]) cccli.debug = bool(settings["debug"])
else: else:
warnings.filterwarnings("ignore") warnings.filterwarnings("ignore")
printer.debug("Debugging on") printer.debug("Debugging on")
printer.debug("Settings: %s"%settings)
# checking server name # checking server name
if "server" not in settings: if "server" not in settings:
...@@ -131,6 +133,9 @@ try: ...@@ -131,6 +133,9 @@ try:
printer.setinteractive() printer.setinteractive()
settings["pass"] = printer.getpass("Password: ") settings["pass"] = printer.getpass("Password: ")
# print settings
printer.debug("Settings: %s"%settings)
# start cli # start cli
cli = Cli(settings) cli = Cli(settings)
cli.start(" ".join(args)) cli.start(" ".join(args))
......
...@@ -5,5 +5,6 @@ ...@@ -5,5 +5,6 @@
CloudControl CLI CloudControl CLI
''' '''
canonical_name="cc-cli"
version = "1~dev" version = "1~dev"
debug = False debug = False
[alias]
lt = list -t
ls = list
w = list a&con!=offline&role=client
vm = list vm&status=running$cpu
[cli]
hsize = 1000
profile = lab
[profile]
login = sluttrin
pass = toto42sh
server = 192.168.0.162
[profile]
login = seblu
pass = iloveseblu
server = 192.168.0.41
debug = true
[cli] [profile]
server = 10.15.255.42
port = 1984
login = sluttrin login = sluttrin
server = 10.15.255.42
[alias]
ls = list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment