You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
1.2 KiB
32 lines
1.2 KiB
from .. import repo
|
|
from ..paper import Paper
|
|
from add_cmd import add_paper_with_docfile, extract_doc_path_from_bibdata
|
|
|
|
|
|
def parser(subparsers, config):
|
|
parser = subparsers.add_parser('import',
|
|
help='import paper(s) to the repository')
|
|
parser.add_argument('bibpath',
|
|
help='path to bibtex, bibtexml or bibyaml file (or directory)')
|
|
parser.add_argument('-c', '--copy', action='store_true', default=None,
|
|
help="copy document files into library directory (default)")
|
|
parser.add_argument('-C', '--nocopy', action='store_false', dest='copy',
|
|
help="don't copy document files (opposite of -c)")
|
|
return parser
|
|
|
|
|
|
def command(config, ui, bibpath, copy):
|
|
"""
|
|
:param bibpath: path (no url yet) to a bibliography file
|
|
"""
|
|
if copy is None:
|
|
copy = config.get('papers', 'import-copy')
|
|
rp = repo.Repository.from_directory()
|
|
# Extract papers from bib
|
|
papers = Paper.many_from_path(bibpath, fatal=False)
|
|
for p in papers:
|
|
doc_file = extract_doc_path_from_bibdata(p, ui)
|
|
if doc_file is None:
|
|
ui.warning("No file for %s." % p.citekey)
|
|
add_paper_with_docfile(rp, p, docfile=doc_file, copy=copy)
|