diff --git a/cps/helper.py b/cps/helper.py
index e21edc2e..577d359e 100644
--- a/cps/helper.py
+++ b/cps/helper.py
@@ -436,7 +436,7 @@ def get_cover_on_failure(use_generic_cover):
def get_book_cover(book_id):
book = db.session.query(db.Books).filter(db.Books.id == book_id).first()
- return get_book_cover_internal(book, False)
+ return get_book_cover_internal(book, use_generic_cover_on_failure=True)
def get_book_cover_with_uuid(book_uuid,
use_generic_cover_on_failure=True):
diff --git a/cps/kobo.py b/cps/kobo.py
index 8e79087e..bc4046d8 100644
--- a/cps/kobo.py
+++ b/cps/kobo.py
@@ -1,19 +1,35 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
-import base64
-import copy
-import uuid
+# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
+# Copyright (C) 2018-2019 shavitmichael, 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 .
+
import os
-from datetime import datetime, tzinfo, timedelta
+import sys
+import uuid
+from base64 import b64decode, b64encode
+from datetime import datetime
from time import gmtime, strftime
from jsonschema import validate, exceptions
-from flask import Blueprint, request, make_response, jsonify, json, send_file
+from flask import Blueprint, request, make_response, jsonify, json
from flask_login import login_required
from sqlalchemy import func
-from . import config, logger, kobo_auth, ub, db, helper
+from . import config, logger, kobo_auth, db, helper
from .web import download_required
kobo = Blueprint("kobo", __name__)
@@ -22,12 +38,11 @@ kobo_auth.disable_failed_auth_redirect_for_blueprint(kobo)
log = logger.create()
-def b64encode(data):
- return base64.b64encode(data)
-
-
def b64encode_json(json_data):
- return b64encode(json.dumps(json_data))
+ if sys.version_info < (3, 0):
+ return b64encode(json.dumps(json_data))
+ else:
+ return b64encode(json.dumps(json_data).encode())
# Python3 has a timestamp() method we could be calling, however it's not avaiable in python2.
@@ -88,9 +103,7 @@ class SyncToken:
try:
sync_token_json = json.loads(
- base64.b64decode(
- sync_token_header + "=" * (-len(sync_token_header) % 4)
- )
+ b64decode(sync_token_header + "=" * (-len(sync_token_header) % 4))
)
validate(sync_token_json, SyncToken.token_schema)
if sync_token_json["version"] < SyncToken.MIN_VERSION:
@@ -301,12 +314,16 @@ def get_metadata(book):
}
if get_series(book):
+ if sys.version_info < (3, 0):
+ name = get_series(book).encode("utf-8")
+ else:
+ name = get_series(book)
metadata["Series"] = {
"Name": get_series(book),
"Number": book.series_index,
"NumberFloat": float(book.series_index),
# Get a deterministic id based on the series name.
- "Id": uuid.uuid3(uuid.NAMESPACE_DNS, get_series(book).encode("utf-8")),
+ "Id": uuid.uuid3(uuid.NAMESPACE_DNS, name),
}
return metadata
diff --git a/cps/kobo_auth.py b/cps/kobo_auth.py
index 293311c7..1504c25b 100644
--- a/cps/kobo_auth.py
+++ b/cps/kobo_auth.py
@@ -1,3 +1,23 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+
+# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
+# Copyright (C) 2018-2019 shavitmichael, 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 .
+
+
"""This module is used to control authentication/authorization of Kobo sync requests.
This module also includes research notes into the auth protocol used by Kobo devices.