示例#1
0
    def prepare_cover_storage(self,
                              qt_book_id,
                              qt_cover_filename,
                              replace_file=False):
        self.logger.debug(sys._getframe().f_code.co_name)

        qt_filename_base, qt_filename_ext = os.path.splitext(qt_cover_filename)
        self.logger.debug(qt_filename_base, qt_filename_ext)

        qt_payload = {
            'book_id': qt_book_id,
            'filename': qt_filename_base,
            'format': qt_filename_ext
        }
        json_data = json.dumps(qt_payload,
                               sort_keys=True,
                               indent=4,
                               separators=(',', ': '))
        self.logger.debug(json_data)

        response = RequestManager.create_request('POST',
                                                 '/storage/prepare/cover',
                                                 json_data=json_data)
        self.logger.debug(response)
        return response
示例#2
0
    def download_bookstorage(self, calibre_storage_path):
        self.logger.debug(sys._getframe().f_code.co_name)
        import re
        pattern = r"(?P<storage_type>\S+)://(?P<book_id>\S+)/(?P<file_name>\D+)"
        parsed_data = re.search(pattern, calibre_storage_path).groupdict()

        url_response = RequestManager.create_request('GET',
                                                     '/storage/' +
                                                     parsed_data['book_id'],
                                                     json_response=True)
        # unfortunaly the API cant do the redirect for us, so we need to start a new request using the url param.
        self.logger.debug(url_response)
        return RequestManager.create_request('GET',
                                             url_response['data']['url'],
                                             json_response=False,
                                             allow_redirects=True,
                                             external_request=True)
示例#3
0
    def download_bookstorage(self, calibre_storage_path):
        self.logger.debug(sys._getframe().f_code.co_name)
        import re

        pattern = r"(?P<storage_type>\S+)://(?P<book_id>\S+)/(?P<file_name>\D+)"
        parsed_data = re.search(pattern, calibre_storage_path).groupdict()

        return RequestManager.create_request("GET", "/api/storage/" + parsed_data["book_id"], json_response=False)
示例#4
0
    def books(self, storage_type):
        """
        This function will download a list of book metadata from QuietThyme.
        """

        response = RequestManager.create_request("GET", "/api/book", query_args={"storage_type": storage_type})
        self.logger.debug(response)
        return response
示例#5
0
    def destroy_book(self, calibre_storage_path):
        self.logger.debug(sys._getframe().f_code.co_name)

        import re
        pattern = r"(?P<storage_type>\S+)://(?P<book_id>\S+)/(?P<file_name>\D+)"
        parsed_data = re.search(pattern, calibre_storage_path).groupdict()

        response = RequestManager.create_request(
            'DELETE', '/book/' + parsed_data['book_id'])
        self.logger.debug(response)
        return response
示例#6
0
    def destroy_book(self, calibre_storage_path):
        self.logger.debug(sys._getframe().f_code.co_name)

        import re

        pattern = r"(?P<storage_type>\S+)://(?P<book_id>\S+)/(?P<file_name>\D+)"
        parsed_data = re.search(pattern, calibre_storage_path).groupdict()

        response = RequestManager.create_request("DELETE", "/api/book/" + parsed_data["book_id"])
        self.logger.debug(response)
        return response
示例#7
0
    def status(self, library_uuid, library_name):
        """
        This function will retrieve the current QuietThyme status and verify that the user can
        authenticate.
        :param library_uuid: calibre library identifier
        :return: quietthyme status object
        """
        self.logger.debug(sys._getframe().f_code.co_name)

        response = RequestManager.create_request("GET", "/api/storage/status")
        self.logger.debug(response)
        return response
示例#8
0
    def status(self, library_uuid, library_name):
        '''
        This function will retrieve the current QuietThyme status and verify that the user can
        authenticate.
        :param library_uuid: calibre library identifier
        :return: quietthyme status object
        '''
        self.logger.debug(sys._getframe().f_code.co_name)

        response = RequestManager.create_request(
            'GET', '/storage/status', query_args={'source': 'calibre'})
        self.logger.debug(response)
        return response
示例#9
0
    def books(self, storage_id, page=""):
        '''
        This function will download a list of book metadata from QuietThyme.
        '''

        args = {'storage_id': storage_id}
        if page != "":
            args['page'] = page
        response = RequestManager.create_request('GET',
                                                 '/book',
                                                 query_args=args)
        self.logger.debug(response)
        return response
示例#10
0
    def prepare_bookstorage(self, qt_storage_metadata):
        self.logger.debug(sys._getframe().f_code.co_name)

        json_data = json.dumps(qt_storage_metadata,
                               sort_keys=True,
                               indent=4,
                               separators=(',', ': '))
        self.logger.debug(json_data)

        response = RequestManager.create_request('POST',
                                                 '/storage/prepare/book',
                                                 json_data=json_data)
        self.logger.debug(response)
        return response
示例#11
0
    def auth(self, library_uuid, library_name):
        """
        This function will authenticate with Quietthyme and generate a JWT for subsequent api calls.
        :param library_uuid: calibre library identifier
        :return: quietthyme jwt.
        """
        self.logger.debug(sys._getframe().f_code.co_name)

        if not library_uuid:
            return {"success": False, "error_msg": "No library uuid found"}
        query_args = {"library_uuid": library_uuid}

        response = RequestManager.create_request("GET", "/api/auth/calibre", query_args=query_args)
        self.logger.debug(response)
        return response
示例#12
0
    def create_book(self, local_metadata):
        '''
        This function will find or create a book in QuietThyme with the Calibre metadata provided
        :param local_metadata: calibre metadata
        :return: quietthyme metadata for the book created/found
        '''
        self.logger.debug(sys._getframe().f_code.co_name)

        #create QT book model.
        qt_metadata = {
            'title':
            local_metadata.title,
            'calibre_id':
            local_metadata.uuid,
            'average_rating':
            local_metadata.rating,
            'short_summary':
            local_metadata.comments,
            'publisher':
            local_metadata.publisher,
            'published_date':
            local_metadata.pubdate.utcnow().isoformat("T") + "Z",
            'tags':
            local_metadata.tags,
            'authors':
            local_metadata.authors,
            'last_modified':
            local_metadata.last_modified.utcnow().isoformat("T") + "Z",

            #additional data, not used by qt yet. These field names will change.
            'user_categories':
            local_metadata.user_categories,
            'user_metadata':
            local_metadata.get_all_user_metadata(False)
        }
        #set isbn and isbn13 and identifiers
        isbn = local_metadata.identifiers.get('isbn', None)
        if isbn and len(isbn) == 10:
            qt_metadata['isbn10'] = isbn
        elif isbn and len(isbn) == 13:
            qt_metadata['isbn'] = isbn

        amazon_id = local_metadata.identifiers.get('amazon', None)
        if amazon_id:
            qt_metadata['amazon_id'] = amazon_id

        google_id = local_metadata.identifiers.get('google', None)
        if google_id:
            qt_metadata['google_id'] = google_id

        goodreads_id = local_metadata.identifiers.get('goodreads', None)
        if goodreads_id:
            qt_metadata['goodreads_id'] = goodreads_id

        ffiction_id = local_metadata.identifiers.get('ffiction', None)
        if ffiction_id:
            qt_metadata['ffiction_id'] = ffiction_id

        barnesnoble_id = local_metadata.identifiers.get('barnesnoble', None)
        if barnesnoble_id:
            qt_metadata['barnesnoble_id'] = barnesnoble_id

        #series
        if local_metadata.series:
            qt_metadata['series_name'] = local_metadata.series.strip()
            qt_metadata['series_number'] = str(local_metadata.series_index)

        json_data = json.dumps(qt_metadata,
                               sort_keys=True,
                               indent=4,
                               separators=(',', ': '))
        self.logger.debug(json_data)

        response = RequestManager.create_request(
            'POST',
            '/book',
            json_data=json_data,
            query_args={'source': 'calibre'})
        self.logger.debug(response['data']['id'])

        qt_metadata['id'] = response['data']['id']
        return qt_metadata
示例#13
0
    def create_book(self, local_metadata):
        """
        This function will find or create a book in QuietThyme with the Calibre metadata provided
        :param local_metadata: calibre metadata
        :return: quietthyme metadata for the book created/found
        """
        self.logger.debug(sys._getframe().f_code.co_name)

        # create QT book model.
        qt_metadata = {
            "title": local_metadata.title,
            "calibre_id": local_metadata.uuid,
            "average_rating": local_metadata.rating,
            "short_summary": local_metadata.comments,
            "publisher": local_metadata.publisher,
            "published_date": local_metadata.pubdate.utcnow().isoformat("T") + "Z",
            "tags": local_metadata.tags,
            "authors": local_metadata.authors,
            "last_modified": local_metadata.last_modified.utcnow().isoformat("T") + "Z",
            # additional data, not used by qt yet. These field names will change.
            "user_categories": local_metadata.user_categories,
            "user_metadata": local_metadata.get_all_user_metadata(False),
        }
        # set isbn and isbn13 and identifiers
        isbn = local_metadata.identifiers.get("isbn", None)
        if isbn and len(isbn) == 10:
            qt_metadata["isbn10"] = isbn
        elif isbn and len(isbn) == 13:
            qt_metadata["isbn"] = isbn

        amazon_id = local_metadata.identifiers.get("amazon", None)
        if amazon_id:
            qt_metadata["amazon_id"] = amazon_id

        google_id = local_metadata.identifiers.get("google", None)
        if google_id:
            qt_metadata["google_id"] = google_id

        goodreads_id = local_metadata.identifiers.get("goodreads", None)
        if goodreads_id:
            qt_metadata["goodreads_id"] = goodreads_id

        ffiction_id = local_metadata.identifiers.get("ffiction", None)
        if ffiction_id:
            qt_metadata["ffiction_id"] = ffiction_id

        barnesnoble_id = local_metadata.identifiers.get("barnesnoble", None)
        if barnesnoble_id:
            qt_metadata["barnesnoble_id"] = barnesnoble_id

        # series
        if local_metadata.series:
            qt_metadata["series_name"] = local_metadata.series.strip()
            qt_metadata["series_number"] = local_metadata.series_index

        json_data = json.dumps(qt_metadata, sort_keys=True, indent=4, separators=(",", ": "))
        self.logger.debug(json_data)

        response = RequestManager.create_request(
            "POST", "/api/book", json_data=json_data, query_args={"source": "calibre"}
        )
        self.logger.debug(response["data"]["id"])

        qt_metadata["objectId"] = response["data"]["id"]
        return qt_metadata