bmc/main.py

322 lines
12 KiB
Python
Raw Normal View History

2014-04-25 14:13:37 +02:00
#!/usr/bin/env python2
# -*- coding: utf8 -*-
import os
2014-04-24 00:18:49 +02:00
import shutil
import subprocess
import sys
import tempfile
import backend
import fetcher
import tearpages
import tools
import params
2014-04-24 00:18:49 +02:00
from bibtexparser.bparser import BibTexParser
from bibtexparser.customization import homogeneize_latex_encoding
2014-04-24 00:18:49 +02:00
EDITOR = os.environ.get('EDITOR') if os.environ.get('EDITOR') else 'vim'
2014-04-24 00:18:49 +02:00
def checkBibtex(filename, bibtex):
2014-05-02 00:07:49 +02:00
print("The bibtex entry found for "+filename+" is:")
bibtex = BibTexParser(bibtex, customization=homogeneize_latex_encoding)
2014-04-25 14:13:37 +02:00
bibtex = bibtex.get_entry_dict()
if len(bibtex) > 0:
bibtex_name = bibtex.keys()[0]
bibtex = bibtex[bibtex_name]
bibtex_string = backend.parsed2Bibtex(bibtex)
else:
bibtex_string = ''
print(bibtex_string)
2014-05-02 00:07:49 +02:00
check = tools.rawInput("Is it correct? [Y/n] ")
2014-04-25 14:13:37 +02:00
while check.lower() == 'n':
with tempfile.NamedTemporaryFile(suffix=".tmp") as tmpfile:
tmpfile.write(bibtex_string)
tmpfile.flush()
subprocess.call([EDITOR, tmpfile.name])
bibtex = BibTexParser(tmpfile.read()+"\n",
customization=homogeneize_latex_encoding)
bibtex = bibtex.get_entry_dict()
if len(bibtex) > 0:
bibtex_name = bibtex.keys()[0]
bibtex = bibtex[bibtex_name]
bibtex_string = backend.parsed2Bibtex(bibtex)
else:
bibtex_string = ''
2014-05-02 00:07:49 +02:00
print("\nThe bibtex entry for "+filename+" is:")
print(bibtex_string)
2014-05-02 00:07:49 +02:00
check = tools.rawInput("Is it correct? [Y/n] ")
return bibtex
def addFile(src, filetype):
2014-04-24 00:18:49 +02:00
"""
Add a file to the library
"""
if filetype == 'article' or filetype is None:
doi = fetcher.findDOI(src)
2014-05-02 00:07:49 +02:00
if (filetype == 'article' or filetype is None) and doi is False:
arxiv = fetcher.findArXivId(src)
2014-05-02 00:07:49 +02:00
if filetype == 'book' or (filetype is None and doi is False and arxiv is
False):
isbn = fetcher.findISBN(src)
2014-05-02 00:07:49 +02:00
if doi is False and isbn is False and arxiv is False:
if filetype is None:
2014-05-02 00:07:49 +02:00
tools.warning("Could not determine the DOI nor the arXiv id nor " +
"the ISBN for "+src+"."+"Switching to manual entry.")
doi_arxiv_isbn = ''
while doi_arxiv_isbn not in ['doi', 'arxiv', 'isbn']:
doi_arxiv_isbn = tools.rawInput("DOI / arXiv / ISBN? ").lower()
if doi_arxiv_isbn == 'doi':
doi = tools.rawInput('DOI? ')
elif doi_arxiv_isbn == 'arxiv':
arxiv = tools.rawInput('arXiv id? ')
else:
2014-05-02 00:07:49 +02:00
isbn = tools.rawInput('ISBN? ')
elif filetype == 'article':
2014-05-02 00:07:49 +02:00
tools.warning("Could not determine the DOI nor the arXiv id for " +
src+", switching to manual entry.")
doi_arxiv = ''
while doi_arxiv not in ['doi', 'arxiv']:
doi_arxiv = tools.rawInput("DOI / arXiv? ").lower()
if doi_arxiv == 'doi':
doi = tools.rawInput('DOI? ')
else:
arxiv = tools.rawInput('arXiv id? ')
elif filetype == 'book':
2014-04-28 22:23:05 +02:00
tools.warning("Could not determine the ISBN for "+src +
", switching to manual entry.")
2014-05-02 00:07:49 +02:00
isbn = tools.rawInput('ISBN? ')
elif doi is not False:
print("DOI for "+src+" is "+doi+".")
2014-05-02 00:07:49 +02:00
elif arxiv is not False:
print("ArXiv id for "+src+" is "+arxiv+".")
elif isbn is not False:
print("ISBN for "+src+" is "+isbn+".")
if doi is not False and doi != '':
2014-04-25 14:13:37 +02:00
# Add extra \n for bibtexparser
bibtex = fetcher.doi2Bib(doi).strip().replace(',', ",\n")+"\n"
2014-05-02 00:07:49 +02:00
elif arxiv is not False and arxiv != '':
bibtex = fetcher.arXiv2Bib(arxiv).strip().replace(',', ",\n")+"\n"
elif isbn is not False and isbn != '':
2014-04-25 14:13:37 +02:00
# Idem
bibtex = fetcher.isbn2Bib(isbn).strip()+"\n"
else:
bibtex = ''
bibtex = checkBibtex(src, bibtex)
2014-05-01 00:45:31 +02:00
new_name = backend.getNewName(src, bibtex)
2014-04-24 00:18:49 +02:00
while os.path.exists(new_name):
2014-04-28 22:23:05 +02:00
tools.warning("file "+new_name+" already exists.")
default_rename = new_name.replace(tools.getExtension(new_name),
" (2)"+tools.getExtension(new_name))
2014-05-02 00:07:49 +02:00
rename = tools.rawInput("New name ["+default_rename+"]? ")
if rename == '':
new_name = default_rename
else:
new_name = rename
2014-04-25 15:36:54 +02:00
bibtex['file'] = new_name
2014-04-24 00:18:49 +02:00
try:
shutil.copy2(src, new_name)
except IOError:
new_name = False
sys.exit("Unable to move file to library dir " + params.folder+".")
2014-04-24 00:18:49 +02:00
# Remove first page of IOP papers
if 'IOP' in bibtex['publisher'] and bibtex['type'] == 'article':
tearpages.tearpage(new_name)
backend.bibtexAppend(bibtex)
return new_name
2014-04-24 00:18:49 +02:00
def downloadFile(url, filetype):
2014-04-28 22:23:05 +02:00
dl, contenttype = fetcher.download(url)
2014-04-26 18:40:32 +02:00
if dl is not False:
tmp = tempfile.NamedTemporaryFile(suffix='.'+contenttype)
with open(tmp.name, 'w+') as fh:
2014-04-26 18:40:32 +02:00
fh.write(dl)
new_name = addFile(tmp.name, filetype)
tmp.close()
return new_name
else:
2014-04-28 22:23:05 +02:00
tools.warning("Could not fetch "+url)
return False
def openFile(ident):
try:
with open(params.folder+'index.bib', 'r') as fh:
bibtex = BibTexParser(fh.read(),
customization=homogeneize_latex_encoding)
bibtex = bibtex.get_entry_dict()
except:
tools.warning("Unable to open index file.")
return False
if ident not in bibtex.keys():
return False
else:
subprocess.Popen(['xdg-open', bibtex[ident]['file']])
return True
2014-05-01 00:45:31 +02:00
def resync():
diff = backend.diffFilesIndex()
for entry in diff:
if entry['file'] == '':
print("Found entry in index without associated file.")
confirm = False
while not confirm:
filename = tools.rawInput("File to import for this entry " +
"(leave empty to delete the " +
2014-05-02 00:07:49 +02:00
"entry)? ")
2014-05-01 00:45:31 +02:00
if filename == '':
break
else:
confirm = True
if 'doi' in entry.keys():
doi = fetcher.findDOI(filename)
if doi is not False and doi != entry['doi']:
confirm = tools.rawInput("Found DOI does not " +
"match bibtex entry " +
"DOI, continue anyway " +
"? [y/N]")
confirm = (confirm.lower() == 'y')
2014-05-02 00:07:49 +02:00
if 'Eprint' in entry.keys():
arxiv = fetcher.findArXivId(filename)
if arxiv is not False and arxiv != entry['Eprint']:
confirm = tools.rawInput("Found arXiv id does " +
"not match bibtex " +
"entry arxiv id, " +
"continue anyway ? [y/N]")
confirm = (confirm.lower() == 'y')
2014-05-01 00:45:31 +02:00
elif 'isbn' in entry.keys():
isbn = fetcher.findISBN(filename)
if isbn is not False and isbn != entry['isbn']:
confirm = tools.rawInput("Found ISBN does not " +
"match bibtex entry " +
"ISBN, continue anyway " +
"? [y/N]")
confirm = (confirm.lower() == 'y')
continue
if filename == '':
backend.deleteId(entry['id'])
else:
new_name = backend.getNewName(filename, entry)
try:
shutil.copy2(filename, new_name)
except IOError:
new_name = False
sys.exit("Unable to move file to library dir " +
params.folder+".")
backend.bibtexEdit(entry['id'], {'file': filename})
else:
print("Found file without any associated entry in index.")
action = ''
while action.lower() not in ['import', 'delete']:
2014-05-02 00:07:49 +02:00
action = tools.rawInput("What to do? [import / delete] ")
2014-05-01 00:45:31 +02:00
action = action.lower()
if action == 'import':
tmp = tempfile.NamedTemporaryFile()
shutil.copy(entry['file'], tmp.name)
filetype = tools.getExtension(entry['file'])
try:
os.remove(entry['file'])
except:
tools.warning("Unable to delete file "+entry['file'])
if not addFile(tmp.name, filetype):
tools.warning("Unable to reimport file "+entry['file'])
tmp.close()
else:
backend.deleteFile(entry['file'])
print(entry['file'] + " removed from disk and " +
"index.")
2014-04-24 00:18:49 +02:00
if __name__ == '__main__':
try:
if len(sys.argv) < 2:
2014-05-02 00:07:49 +02:00
sys.exit("Usage: TODO")
2014-04-24 00:18:49 +02:00
if sys.argv[1] == 'download':
if len(sys.argv) < 3:
2014-05-02 00:07:49 +02:00
sys.exit("Usage: " + sys.argv[0] +
" download FILE [article|book]")
filetype = None
if len(sys.argv) > 3 and sys.argv[3] in ["article", "book"]:
filetype = sys.argv[3].lower()
new_name = downloadFile(sys.argv[2], filetype)
if new_name is not False:
print(sys.argv[2]+" successfully imported as "+new_name)
sys.exit()
2014-04-24 00:18:49 +02:00
if sys.argv[1] == 'import':
if len(sys.argv) < 3:
2014-05-02 00:07:49 +02:00
sys.exit("Usage: " + sys.argv[0] +
" import FILE [article|book]")
filetype = None
if len(sys.argv) > 3 and sys.argv[3] in ["article", "book"]:
filetype = sys.argv[3].lower()
2014-04-24 00:18:49 +02:00
new_name = addFile(sys.argv[2], filetype)
if new_name is not False:
print(sys.argv[2]+" successfully imported as "+new_name+".")
sys.exit()
2014-04-24 00:18:49 +02:00
2014-04-25 14:22:34 +02:00
elif sys.argv[1] == 'delete':
2014-04-25 15:36:54 +02:00
if len(sys.argv) < 3:
2014-05-02 00:07:49 +02:00
sys.exit("Usage: " + sys.argv[0] + " delete FILE|ID")
2014-04-25 15:36:54 +02:00
confirm = tools.rawInput("Are you sure you want to delete " +
2014-05-02 00:07:49 +02:00
sys.argv[2]+"? [y/N] ")
if confirm.lower() == 'y':
if not backend.deleteId(sys.argv[2]):
if not backend.deleteFile(sys.argv[2]):
2014-04-28 22:23:05 +02:00
tools.warning("Unable to delete "+sys.argv[2])
sys.exit(1)
2014-04-25 15:36:54 +02:00
print(sys.argv[2]+" successfully deleted.")
2014-04-25 15:36:54 +02:00
sys.exit()
2014-04-25 14:22:34 +02:00
elif sys.argv[1] == 'list':
raise Exception('TODO')
2014-04-24 00:18:49 +02:00
elif sys.argv[1] == 'search':
raise Exception('TODO')
2014-04-25 15:36:54 +02:00
elif sys.argv[1] == 'open':
if len(sys.argv) < 3:
sys.exit("Usage: " + sys.argv[0] +
2014-05-02 22:08:24 +02:00
" open ID1 ID2 …")
for filename in sys.argv[2:]:
if not openFile(filename):
sys.exit("Unable to open file associated " +
"to ident "+filename)
2014-05-01 00:45:31 +02:00
elif sys.argv[1] == 'resync':
if len(sys.argv) > 2 and sys.argv[2] == 'help':
2014-05-02 00:07:49 +02:00
sys.exit("Usage: " + sys.argv[0] + " resync")
confirm = tools.rawInput("Resync files and bibtex index? [y/N] ")
2014-05-01 00:45:31 +02:00
if confirm.lower() == 'y':
resync()
except KeyboardInterrupt:
sys.exit()