mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-10 16:48:31 +02:00
* update copyright symbols to unicode * clean up version screen/copyright notice * small change to make commands more similar * update imports to appease isort * fix test * update one more file merged since PR was open
83 lines
2.1 KiB
Python
83 lines
2.1 KiB
Python
# Copyright © 2012-2022 jrnl contributors
|
|
# License: https://www.gnu.org/licenses/gpl-3.0.html
|
|
|
|
import logging
|
|
import sys
|
|
import traceback
|
|
|
|
from jrnl.args import parse_args
|
|
from jrnl.exception import JrnlException
|
|
from jrnl.jrnl import run
|
|
from jrnl.messages import Message
|
|
from jrnl.messages import MsgStyle
|
|
from jrnl.messages import MsgText
|
|
from jrnl.output import print_msg
|
|
|
|
|
|
def configure_logger(debug=False):
|
|
if not debug:
|
|
logging.disable()
|
|
return
|
|
|
|
logging.basicConfig(
|
|
level=logging.DEBUG,
|
|
format="%(levelname)-8s %(name)-12s %(message)s",
|
|
)
|
|
logging.getLogger("parsedatetime").setLevel(logging.INFO)
|
|
logging.getLogger("keyring.backend").setLevel(logging.ERROR)
|
|
|
|
|
|
def cli(manual_args=None):
|
|
try:
|
|
if manual_args is None:
|
|
manual_args = sys.argv[1:]
|
|
|
|
args = parse_args(manual_args)
|
|
configure_logger(args.debug)
|
|
logging.debug("Parsed args: %s", args)
|
|
|
|
status_code = run(args)
|
|
|
|
except JrnlException as e:
|
|
status_code = 1
|
|
e.print()
|
|
|
|
except KeyboardInterrupt:
|
|
status_code = 1
|
|
|
|
print_msg(
|
|
Message(
|
|
MsgText.KeyboardInterruptMsg,
|
|
MsgStyle.ERROR_ON_NEW_LINE,
|
|
)
|
|
)
|
|
|
|
except Exception as e:
|
|
# uncaught exception
|
|
status_code = 1
|
|
debug = False
|
|
try:
|
|
if args.debug: # type: ignore
|
|
debug = True
|
|
except NameError:
|
|
# This should only happen when the exception
|
|
# happened before the args were parsed
|
|
if "--debug" in sys.argv:
|
|
debug = True
|
|
|
|
if debug:
|
|
from rich.console import Console
|
|
|
|
traceback.print_tb(sys.exc_info()[2])
|
|
Console(stderr=True).print_exception(extra_lines=1)
|
|
|
|
print_msg(
|
|
Message(
|
|
MsgText.UncaughtException,
|
|
MsgStyle.ERROR,
|
|
{"name": type(e).__name__, "exception": e},
|
|
)
|
|
)
|
|
|
|
# This should be the only exit point
|
|
return status_code
|