added 'glossary' command
This commit is contained in:
parent
5377dc0784
commit
ff6d4ded33
93
chatmastermind/commands/glossary.py
Normal file
93
chatmastermind/commands/glossary.py
Normal file
@ -0,0 +1,93 @@
|
||||
import sys
|
||||
import argparse
|
||||
from pathlib import Path
|
||||
from pydoc import pager
|
||||
from ..configuration import Config
|
||||
from ..glossary import Glossary
|
||||
|
||||
|
||||
class GlossaryCmdError(Exception):
|
||||
pass
|
||||
|
||||
|
||||
def print_paged(text: str) -> None:
|
||||
pager(text)
|
||||
|
||||
|
||||
def get_glossary_file_path(name: str, config: Config) -> Path:
|
||||
"""
|
||||
Get the complete filename for a glossary with the given path.
|
||||
"""
|
||||
if not config.glossaries:
|
||||
raise GlossaryCmdError("Can't create glossary name without a glossary directory")
|
||||
return Path(config.glossaries, name).with_suffix(Glossary.file_suffix).absolute()
|
||||
|
||||
|
||||
def list_glossaries(args: argparse.Namespace, config: Config) -> None:
|
||||
"""
|
||||
List existing glossaries in the 'glossaries' directory.
|
||||
"""
|
||||
if not config.glossaries:
|
||||
raise GlossaryCmdError("Glossaries directory missing in the configuration file")
|
||||
glossaries = Path(config.glossaries).glob(f'*.{Glossary.file_suffix}')
|
||||
for glo in glossaries:
|
||||
print(Glossary.from_file(glo).to_str())
|
||||
|
||||
|
||||
def print_glossary(args: argparse.Namespace, config: Config) -> None:
|
||||
"""
|
||||
Print an existing glossary.
|
||||
"""
|
||||
# sanity checks
|
||||
if args.name is None:
|
||||
raise GlossaryCmdError("Missing glossary name")
|
||||
if config.glossaries is None and args.file is None:
|
||||
raise GlossaryCmdError("Glossaries directory missing in the configuration file")
|
||||
# create file path or use the given one
|
||||
glo_file = Path(args.file) if args.file else get_glossary_file_path(args.name, config)
|
||||
if not glo_file.exists():
|
||||
raise GlossaryCmdError(f"Glossary '{glo_file}' does not exist")
|
||||
# read glossary
|
||||
glo = Glossary.from_file(glo_file)
|
||||
print_paged(glo.to_str(with_entries=True))
|
||||
|
||||
|
||||
def create_glossary(args: argparse.Namespace, config: Config) -> None:
|
||||
"""
|
||||
Create a new glossary and write it either to the glossaries directory
|
||||
or the given file.
|
||||
"""
|
||||
# sanity checks
|
||||
if args.name is None:
|
||||
raise GlossaryCmdError("Missing glossary name")
|
||||
if args.source_lang is None:
|
||||
raise GlossaryCmdError("Missing source language")
|
||||
if args.target_lang is None:
|
||||
raise GlossaryCmdError("Missing target language")
|
||||
if config.glossaries is None and args.file is None:
|
||||
raise GlossaryCmdError("Glossaries directory missing in the configuration file")
|
||||
# create file path or use the given one
|
||||
glo_file = Path(args.file) if args.file else get_glossary_file_path(args.name, config)
|
||||
if glo_file.exists():
|
||||
raise GlossaryCmdError(f"Glossary '{glo_file}' already exists")
|
||||
glo = Glossary(name=args.name,
|
||||
source_lang=args.source_lang,
|
||||
target_lang=args.target_lang,
|
||||
desc=args.description,
|
||||
file_path=glo_file)
|
||||
glo.to_file()
|
||||
print(f"Successfully created new glossary '{glo_file}'.")
|
||||
|
||||
|
||||
def glossary_cmd(args: argparse.Namespace, config: Config) -> None:
|
||||
"""
|
||||
Handler for the 'glossary' command.
|
||||
"""
|
||||
try:
|
||||
if args.create:
|
||||
create_glossary(args, config)
|
||||
elif args.list:
|
||||
list_glossaries(args, config)
|
||||
except GlossaryCmdError as err:
|
||||
print(f"Error: {err}")
|
||||
sys.exit(1)
|
||||
@ -16,6 +16,7 @@ from .commands.config import config_cmd
|
||||
from .commands.hist import hist_cmd
|
||||
from .commands.print import print_cmd
|
||||
from .commands.translation import translation_cmd
|
||||
from .commands.glossary import glossary_cmd
|
||||
from .chat import msg_location
|
||||
|
||||
|
||||
@ -140,7 +141,7 @@ def create_parser() -> argparse.ArgumentParser:
|
||||
|
||||
# 'translation' command parser
|
||||
translation_cmd_parser = cmdparser.add_parser('translation', parents=[ai_parser, tag_parser],
|
||||
help="ask, create and repeat translations.",
|
||||
help="Ask, create and repeat translations.",
|
||||
aliases=['t'])
|
||||
translation_cmd_parser.set_defaults(func=translation_cmd)
|
||||
translation_group = translation_cmd_parser.add_mutually_exclusive_group(required=True)
|
||||
@ -149,10 +150,24 @@ def create_parser() -> argparse.ArgumentParser:
|
||||
translation_group.add_argument('-r', '--repeat', nargs='*', help='Repeat a translation', metavar='MESSAGE')
|
||||
translation_cmd_parser.add_argument('-S', '--source-lang', help="Source language", metavar="LANGUAGE", required=True)
|
||||
translation_cmd_parser.add_argument('-T', '--target-lang', help="Target language", metavar="LANGUAGE", required=True)
|
||||
translation_cmd_parser.add_argument('-G', '--glossaries', nargs='+', help="List of glossaries", metavar="GLOSSARY")
|
||||
translation_cmd_parser.add_argument('-G', '--glossaries', nargs='+', help="List of glossary names", metavar="GLOSSARY")
|
||||
translation_cmd_parser.add_argument('-d', '--input-document', help="Document to translate", metavar="FILE")
|
||||
translation_cmd_parser.add_argument('-D', '--output-document', help="Path for the translated document", metavar="FILE")
|
||||
|
||||
# 'glossary' command parser
|
||||
glossary_cmd_parser = cmdparser.add_parser('glossary', parents=[ai_parser],
|
||||
help="Manage glossaries.",
|
||||
aliases=['g'])
|
||||
glossary_cmd_parser.set_defaults(func=glossary_cmd)
|
||||
glossary_group = glossary_cmd_parser.add_mutually_exclusive_group(required=True)
|
||||
glossary_group.add_argument('-c', '--create', help='Create a glossary', action='store_true')
|
||||
glossary_cmd_parser.add_argument('-n', '--name', help="Glossary name (not ID)", metavar="NAME")
|
||||
glossary_cmd_parser.add_argument('-S', '--source-lang', help="Source language", metavar="LANGUAGE")
|
||||
glossary_cmd_parser.add_argument('-T', '--target-lang', help="Target language", metavar="LANGUAGE")
|
||||
glossary_cmd_parser.add_argument('-f', '--file', help='File path of the goven glossary', metavar='GLOSSARY_FILE')
|
||||
glossary_cmd_parser.add_argument('-D', '--description', help="Glossary description", metavar="DESCRIPTION")
|
||||
glossary_group.add_argument('-l', '--list', help='List existing glossaries', action='store_true')
|
||||
|
||||
argcomplete.autocomplete(parser)
|
||||
return parser
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user