mirror of
https://github.com/r4sas/PBinCLI
synced 2025-01-26 06:24:36 +00:00
fix reading options from config file (#37)
Signed-off-by: R4SAS <r4sas@i2pmail.org>
This commit is contained in:
parent
d8f3c44371
commit
b35fd9f4b9
@ -10,12 +10,11 @@ def signal_handler(sig, frame):
|
|||||||
print('Keyboard interrupt received, terminating…')
|
print('Keyboard interrupt received, terminating…')
|
||||||
sys.exit(0)
|
sys.exit(0)
|
||||||
|
|
||||||
|
|
||||||
signal.signal(signal.SIGINT, signal_handler)
|
signal.signal(signal.SIGINT, signal_handler)
|
||||||
|
|
||||||
|
|
||||||
def send(args, api_client, settings=None):
|
def send(args, api_client, settings=None):
|
||||||
if args.short:
|
if settings['short']:
|
||||||
shortener = Shortener(settings)
|
shortener = Shortener(settings)
|
||||||
|
|
||||||
if not args.notext:
|
if not args.notext:
|
||||||
@ -42,7 +41,7 @@ def send(args, api_client, settings=None):
|
|||||||
if args.verbose: print("Filling paste with data…")
|
if args.verbose: print("Filling paste with data…")
|
||||||
# set compression type, works only on v2 pastes
|
# set compression type, works only on v2 pastes
|
||||||
if version == 2:
|
if version == 2:
|
||||||
paste.setCompression(args.compression)
|
paste.setCompression(settings['compression'])
|
||||||
|
|
||||||
# add text in paste (if it provided)
|
# add text in paste (if it provided)
|
||||||
paste.setText(text)
|
paste.setText(text)
|
||||||
@ -57,10 +56,10 @@ def send(args, api_client, settings=None):
|
|||||||
|
|
||||||
if args.verbose: print("Encrypting paste…")
|
if args.verbose: print("Encrypting paste…")
|
||||||
paste.encrypt(
|
paste.encrypt(
|
||||||
formatter = args.format,
|
formatter = settings['format'],
|
||||||
burnafterreading = args.burn,
|
burnafterreading = settings['burn'],
|
||||||
discussion = args.discus,
|
discussion = settings['discus'],
|
||||||
expiration = args.expire)
|
expiration = settings['expire'])
|
||||||
|
|
||||||
if args.verbose: print("Sending request to server…")
|
if args.verbose: print("Sending request to server…")
|
||||||
request = paste.getJSON()
|
request = paste.getJSON()
|
||||||
@ -112,7 +111,7 @@ def send(args, api_client, settings=None):
|
|||||||
else: # or here no status field in response or it is empty
|
else: # or here no status field in response or it is empty
|
||||||
PBinCLIError("Something went wrong…\nError: Empty response.")
|
PBinCLIError("Something went wrong…\nError: Empty response.")
|
||||||
|
|
||||||
if args.short:
|
if settings['short']:
|
||||||
print("\nQuerying URL shortening service…")
|
print("\nQuerying URL shortening service…")
|
||||||
shortener.getlink("{}?{}#{}".format(
|
shortener.getlink("{}?{}#{}".format(
|
||||||
settings['server'],
|
settings['server'],
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
import os, sys, argparse
|
import os, sys, argparse
|
||||||
|
from distutils.util import strtobool
|
||||||
|
|
||||||
import pbincli.actions
|
import pbincli.actions
|
||||||
from pbincli.api import PrivateBin
|
from pbincli.api import PrivateBin
|
||||||
@ -15,6 +16,7 @@ if sys.platform == "win32":
|
|||||||
elif sys.platform == "darwin":
|
elif sys.platform == "darwin":
|
||||||
CONFIG_PATHS.append(os.path.join(os.getenv("HOME") or "~", "Library", "Application Support", "pbincli", "pbincli.conf"))
|
CONFIG_PATHS.append(os.path.join(os.getenv("HOME") or "~", "Library", "Application Support", "pbincli", "pbincli.conf"))
|
||||||
|
|
||||||
|
|
||||||
def read_config(filename):
|
def read_config(filename):
|
||||||
"""Read config variables from a file"""
|
"""Read config variables from a file"""
|
||||||
settings = {}
|
settings = {}
|
||||||
@ -24,12 +26,15 @@ def read_config(filename):
|
|||||||
continue
|
continue
|
||||||
try:
|
try:
|
||||||
key, value = l.strip().split("=", 1)
|
key, value = l.strip().split("=", 1)
|
||||||
settings[key.strip()] = value.strip()
|
if value.strip().lower() in ['true', 'false']:
|
||||||
|
settings[key.strip()] = bool(strtobool(value.strip()))
|
||||||
|
else:
|
||||||
|
settings[key.strip()] = value.strip()
|
||||||
except ValueError:
|
except ValueError:
|
||||||
PBinCLIError("Unable to parse config file, please check it for errors.")
|
PBinCLIError("Unable to parse config file, please check it for errors.")
|
||||||
|
|
||||||
return settings
|
return settings
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(description='Full-featured PrivateBin command-line client')
|
parser = argparse.ArgumentParser(description='Full-featured PrivateBin command-line client')
|
||||||
subparsers = parser.add_subparsers(title="actions", help="List of commands")
|
subparsers = parser.add_subparsers(title="actions", help="List of commands")
|
||||||
@ -41,15 +46,15 @@ def main():
|
|||||||
send_parser.add_argument("-p", "--password", help="Password for encrypting paste")
|
send_parser.add_argument("-p", "--password", help="Password for encrypting paste")
|
||||||
send_parser.add_argument("-E", "--expire", default="1day", action="store",
|
send_parser.add_argument("-E", "--expire", default="1day", action="store",
|
||||||
choices=["5min", "10min", "1hour", "1day", "1week", "1month", "1year", "never"], help="Paste lifetime (default: 1day)")
|
choices=["5min", "10min", "1hour", "1day", "1week", "1month", "1year", "never"], help="Paste lifetime (default: 1day)")
|
||||||
send_parser.add_argument("-B", "--burn", default=False, action="store_true", help="Set \"Burn after reading\" flag")
|
send_parser.add_argument("-B", "--burn", default=argparse.SUPPRESS, action="store_true", help="Set \"Burn after reading\" flag")
|
||||||
send_parser.add_argument("-D", "--discus", default=False, action="store_true", help="Open discussion for sent paste")
|
send_parser.add_argument("-D", "--discus", default=argparse.SUPPRESS, action="store_true", help="Open discussion for sent paste")
|
||||||
send_parser.add_argument("-F", "--format", default="plaintext", action="store",
|
send_parser.add_argument("-F", "--format", default="plaintext", action="store",
|
||||||
choices=["plaintext", "syntaxhighlighting", "markdown"], help="Format of text (default: plaintext)")
|
choices=["plaintext", "syntaxhighlighting", "markdown"], help="Format of text (default: plaintext)")
|
||||||
send_parser.add_argument("-q", "--notext", default=False, action="store_true", help="Don't send text in paste")
|
send_parser.add_argument("-q", "--notext", default=False, action="store_true", help="Don't send text in paste")
|
||||||
send_parser.add_argument("-c", "--compression", default="zlib", action="store",
|
send_parser.add_argument("-c", "--compression", default="zlib", action="store",
|
||||||
choices=["zlib", "none"], help="Set compression for paste (default: zlib). Note: works only on v2 paste format")
|
choices=["zlib", "none"], help="Set compression for paste (default: zlib). Note: works only on v2 paste format")
|
||||||
## URL shortener
|
## URL shortener
|
||||||
send_parser.add_argument("-S", "--short", default=False, action="store_true", help="Use URL shortener")
|
send_parser.add_argument("-S", "--short", default=argparse.SUPPRESS, action="store_true", help="Use URL shortener")
|
||||||
send_parser.add_argument("--short-api", default=argparse.SUPPRESS, action="store",
|
send_parser.add_argument("--short-api", default=argparse.SUPPRESS, action="store",
|
||||||
choices=["tinyurl", "clckru", "isgd", "vgd", "cuttly", "yourls", "custom"], help="API used by shortener service")
|
choices=["tinyurl", "clckru", "isgd", "vgd", "cuttly", "yourls", "custom"], help="API used by shortener service")
|
||||||
send_parser.add_argument("--short-url", default=argparse.SUPPRESS, help="URL of shortener service API")
|
send_parser.add_argument("--short-url", default=argparse.SUPPRESS, help="URL of shortener service API")
|
||||||
@ -59,8 +64,8 @@ def main():
|
|||||||
## Connection options
|
## Connection options
|
||||||
send_parser.add_argument("-s", "--server", default=argparse.SUPPRESS, help="Instance URL (default: https://paste.i2pd.xyz/)")
|
send_parser.add_argument("-s", "--server", default=argparse.SUPPRESS, help="Instance URL (default: https://paste.i2pd.xyz/)")
|
||||||
send_parser.add_argument("-x", "--proxy", default=argparse.SUPPRESS, help="Proxy server address (default: None)")
|
send_parser.add_argument("-x", "--proxy", default=argparse.SUPPRESS, help="Proxy server address (default: None)")
|
||||||
send_parser.add_argument("--no-check-certificate", default=False, action="store_true", help="Disable certificate validation")
|
send_parser.add_argument("--no-check-certificate", default=argparse.SUPPRESS, action="store_true", help="Disable certificate validation")
|
||||||
send_parser.add_argument("--no-insecure-warning", default=False, action="store_true",
|
send_parser.add_argument("--no-insecure-warning", default=argparse.SUPPRESS, action="store_true",
|
||||||
help="Suppress InsecureRequestWarning (only with --no-check-certificate)")
|
help="Suppress InsecureRequestWarning (only with --no-check-certificate)")
|
||||||
##
|
##
|
||||||
send_parser.add_argument("-L", "--mirrors", default=argparse.SUPPRESS, help="Comma-separated list of mirrors of service with scheme (default: None)")
|
send_parser.add_argument("-L", "--mirrors", default=argparse.SUPPRESS, help="Comma-separated list of mirrors of service with scheme (default: None)")
|
||||||
@ -77,8 +82,8 @@ def main():
|
|||||||
## Connection options
|
## Connection options
|
||||||
get_parser.add_argument("-s", "--server", default=argparse.SUPPRESS, help="Instance URL (default: https://paste.i2pd.xyz/, ignored if URL used in pasteinfo)")
|
get_parser.add_argument("-s", "--server", default=argparse.SUPPRESS, help="Instance URL (default: https://paste.i2pd.xyz/, ignored if URL used in pasteinfo)")
|
||||||
get_parser.add_argument("-x", "--proxy", default=argparse.SUPPRESS, help="Proxy server address (default: None)")
|
get_parser.add_argument("-x", "--proxy", default=argparse.SUPPRESS, help="Proxy server address (default: None)")
|
||||||
get_parser.add_argument("--no-check-certificate", default=False, action="store_true", help="Disable certificate validation")
|
get_parser.add_argument("--no-check-certificate", default=argparse.SUPPRESS, action="store_true", help="Disable certificate validation")
|
||||||
get_parser.add_argument("--no-insecure-warning", default=False, action="store_true",
|
get_parser.add_argument("--no-insecure-warning", default=argparse.SUPPRESS, action="store_true",
|
||||||
help="Suppress InsecureRequestWarning (only with --no-check-certificate)")
|
help="Suppress InsecureRequestWarning (only with --no-check-certificate)")
|
||||||
##
|
##
|
||||||
get_parser.add_argument("-v", "--verbose", default=False, action="store_true", help="Enable verbose output")
|
get_parser.add_argument("-v", "--verbose", default=False, action="store_true", help="Enable verbose output")
|
||||||
@ -91,8 +96,8 @@ def main():
|
|||||||
## Connection options
|
## Connection options
|
||||||
delete_parser.add_argument("-s", "--server", default=argparse.SUPPRESS, help="Instance URL (default: https://paste.i2pd.xyz/)")
|
delete_parser.add_argument("-s", "--server", default=argparse.SUPPRESS, help="Instance URL (default: https://paste.i2pd.xyz/)")
|
||||||
delete_parser.add_argument("-x", "--proxy", default=argparse.SUPPRESS, help="Proxy server address (default: None)")
|
delete_parser.add_argument("-x", "--proxy", default=argparse.SUPPRESS, help="Proxy server address (default: None)")
|
||||||
delete_parser.add_argument("--no-check-certificate", default=False, action="store_true", help="Disable certificate validation")
|
delete_parser.add_argument("--no-check-certificate", default=argparse.SUPPRESS, action="store_true", help="Disable certificate validation")
|
||||||
delete_parser.add_argument("--no-insecure-warning", default=False, action="store_true",
|
delete_parser.add_argument("--no-insecure-warning", default=argparse.SUPPRESS, action="store_true",
|
||||||
help="Suppress InsecureRequestWarning (only with --no-check-certificate)")
|
help="Suppress InsecureRequestWarning (only with --no-check-certificate)")
|
||||||
##
|
##
|
||||||
delete_parser.add_argument("-v", "--verbose", default=False, action="store_true", help="Enable verbose output")
|
delete_parser.add_argument("-v", "--verbose", default=False, action="store_true", help="Enable verbose output")
|
||||||
@ -102,11 +107,12 @@ def main():
|
|||||||
# parse arguments
|
# parse arguments
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
|
# default configuration
|
||||||
CONFIG = {
|
CONFIG = {
|
||||||
'server': 'https://paste.i2pd.xyz/',
|
'server': 'https://paste.i2pd.xyz/',
|
||||||
'mirrors': None,
|
'mirrors': None,
|
||||||
'proxy': None,
|
'proxy': None,
|
||||||
'expire': None,
|
'expire': '1day',
|
||||||
'burn': False,
|
'burn': False,
|
||||||
'discus': False,
|
'discus': False,
|
||||||
'format': None,
|
'format': None,
|
||||||
@ -125,11 +131,13 @@ def main():
|
|||||||
# 1. Command line switches
|
# 1. Command line switches
|
||||||
# 2. Environment variables
|
# 2. Environment variables
|
||||||
# 3. Configuration file
|
# 3. Configuration file
|
||||||
# 4. Default values below
|
# 4. Defaults above
|
||||||
|
|
||||||
for p in CONFIG_PATHS:
|
for p in CONFIG_PATHS:
|
||||||
if os.path.exists(p):
|
if os.path.exists(p):
|
||||||
CONFIG.update(read_config(p))
|
fileconfig = read_config(p)
|
||||||
|
if args.debug: print("Configuration readed from file:\t{}".format(fileconfig))
|
||||||
|
CONFIG.update(fileconfig)
|
||||||
break
|
break
|
||||||
|
|
||||||
for key in CONFIG.keys():
|
for key in CONFIG.keys():
|
||||||
@ -143,6 +151,7 @@ def main():
|
|||||||
# Re-validate PrivateBin instance URL
|
# Re-validate PrivateBin instance URL
|
||||||
CONFIG['server'] = validate_url_ending(CONFIG['server'])
|
CONFIG['server'] = validate_url_ending(CONFIG['server'])
|
||||||
|
|
||||||
|
if args.debug: print("Whole configuration:\t\t{}".format(CONFIG))
|
||||||
api_client = PrivateBin(CONFIG)
|
api_client = PrivateBin(CONFIG)
|
||||||
|
|
||||||
if hasattr(args, "func"):
|
if hasattr(args, "func"):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user