forked from mirrors/bookwyrm
Move past all book loading exceptions during import
This commit is contained in:
parent
74236c4810
commit
799496bb86
1 changed files with 5 additions and 4 deletions
|
@ -20,7 +20,7 @@ def create_job(user, csv_file, include_reviews, privacy):
|
||||||
)
|
)
|
||||||
for index, entry in enumerate(list(csv.DictReader(csv_file))[:MAX_ENTRIES]):
|
for index, entry in enumerate(list(csv.DictReader(csv_file))[:MAX_ENTRIES]):
|
||||||
if not all(x in entry for x in ('ISBN13', 'Title', 'Author')):
|
if not all(x in entry for x in ('ISBN13', 'Title', 'Author')):
|
||||||
raise ValueError("Author, title, and isbn must be in data.")
|
raise ValueError('Author, title, and isbn must be in data.')
|
||||||
ImportItem(job=job, index=index, data=entry).save()
|
ImportItem(job=job, index=index, data=entry).save()
|
||||||
return job
|
return job
|
||||||
|
|
||||||
|
@ -41,8 +41,9 @@ def import_data(job_id):
|
||||||
for item in job.items.all():
|
for item in job.items.all():
|
||||||
try:
|
try:
|
||||||
item.resolve()
|
item.resolve()
|
||||||
except HTTPError:
|
except:
|
||||||
pass
|
item.fail_reason = 'Error loading book'
|
||||||
|
item.save()
|
||||||
if item.book:
|
if item.book:
|
||||||
item.save()
|
item.save()
|
||||||
results.append(item)
|
results.append(item)
|
||||||
|
@ -51,7 +52,7 @@ def import_data(job_id):
|
||||||
outgoing.handle_imported_book(
|
outgoing.handle_imported_book(
|
||||||
job.user, item, job.include_reviews, job.privacy)
|
job.user, item, job.include_reviews, job.privacy)
|
||||||
else:
|
else:
|
||||||
item.fail_reason = "Could not find a match for book"
|
item.fail_reason = 'Could not find a match for book'
|
||||||
item.save()
|
item.save()
|
||||||
finally:
|
finally:
|
||||||
create_notification(job.user, 'IMPORT', related_import=job)
|
create_notification(job.user, 'IMPORT', related_import=job)
|
||||||
|
|
Loading…
Reference in a new issue