1
0
mirror of https://github.com/janeczku/calibre-web synced 2024-06-24 22:23:16 +00:00

Add support for barnesnoble identifier

This commit is contained in:
Kreeblah 2024-05-11 23:56:37 -07:00
parent 6f60ec7b99
commit ad05534ed2
No known key found for this signature in database
GPG Key ID: 6074237BF1AEEDFB

View File

@ -128,6 +128,8 @@ class Identifiers(Base):
return "Google Books"
elif format_type == "kobo":
return "Kobo"
elif format_type == "barnesnoble":
return "Barnes & Noble"
elif format_type == "litres":
return "ЛитРес"
elif format_type == "issn":
@ -161,6 +163,8 @@ class Identifiers(Base):
return "https://books.google.com/books?id={0}".format(self.val)
elif format_type == "kobo":
return "https://www.kobo.com/ebook/{0}".format(self.val)
elif format_type == "barnesnoble":
return "https://www.barnesandnoble.com/w/{0}".format(self.val)
elif format_type == "lubimyczytac":
return "https://lubimyczytac.pl/ksiazka/{0}/ksiazka".format(self.val)
elif format_type == "litres":