2021-07-05 16:55:54 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
|
|
|
# Copyright (C) 2021 OzzieIsaacs
|
|
|
|
#
|
|
|
|
# This program is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2021-07-07 19:24:29 +00:00
|
|
|
# Google Books api document: https://developers.google.com/books/docs/v1/using
|
|
|
|
|
2021-07-05 16:55:54 +00:00
|
|
|
|
|
|
|
import requests
|
|
|
|
from cps.services.Metadata import Metadata
|
|
|
|
|
2021-07-06 18:24:27 +00:00
|
|
|
class Google(Metadata):
|
2021-07-05 16:55:54 +00:00
|
|
|
__name__ = "Google"
|
2021-07-08 17:14:38 +00:00
|
|
|
__id__ = "google"
|
2021-07-05 16:55:54 +00:00
|
|
|
|
2021-12-30 13:55:39 +00:00
|
|
|
def search(self, query, generic_cover=""):
|
2021-07-05 16:55:54 +00:00
|
|
|
if self.active:
|
2021-07-07 19:10:38 +00:00
|
|
|
val = list()
|
2021-07-06 18:24:27 +00:00
|
|
|
result = requests.get("https://www.googleapis.com/books/v1/volumes?q="+query.replace(" ","+"))
|
2021-07-07 19:10:38 +00:00
|
|
|
for r in result.json()['items']:
|
|
|
|
v = dict()
|
|
|
|
v['id'] = r['id']
|
2021-12-30 13:55:39 +00:00
|
|
|
v['title'] = r['volumeInfo'].get('title',"")
|
2021-07-07 19:10:38 +00:00
|
|
|
v['authors'] = r['volumeInfo'].get('authors', [])
|
|
|
|
v['description'] = r['volumeInfo'].get('description', "")
|
|
|
|
v['publisher'] = r['volumeInfo'].get('publisher', "")
|
|
|
|
v['publishedDate'] = r['volumeInfo'].get('publishedDate', "")
|
|
|
|
v['tags'] = r['volumeInfo'].get('categories', [])
|
|
|
|
v['rating'] = r['volumeInfo'].get('averageRating', 0)
|
|
|
|
if r['volumeInfo'].get('imageLinks'):
|
2021-08-01 11:50:17 +00:00
|
|
|
v['cover'] = r['volumeInfo']['imageLinks']['thumbnail'].replace("http://", "https://")
|
2021-07-07 19:10:38 +00:00
|
|
|
else:
|
|
|
|
v['cover'] = "/../../../static/generic_cover.jpg"
|
|
|
|
v['source'] = {
|
2021-07-08 17:14:38 +00:00
|
|
|
"id": self.__id__,
|
2021-07-07 19:10:38 +00:00
|
|
|
"description": "Google Books",
|
|
|
|
"link": "https://books.google.com/"}
|
2021-07-31 07:18:05 +00:00
|
|
|
v['url'] = "https://books.google.com/books?id=" + r['id']
|
2021-07-07 19:10:38 +00:00
|
|
|
val.append(v)
|
|
|
|
return val
|
2021-07-05 16:55:54 +00:00
|
|
|
|
|
|
|
|