2015-08-02 18:59:11 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-01-20 18:37:45 +00:00
|
|
|
# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
|
|
|
# Copyright (C) 2012-2019 mutschler, cervinko, ok11, jkrehm, nanu-c, Wineliva,
|
|
|
|
# pjeby, elelay, idalin, 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/>.
|
|
|
|
|
2019-07-13 18:45:48 +00:00
|
|
|
from __future__ import division, print_function, unicode_literals
|
|
|
|
import sys
|
2015-08-02 18:59:11 +00:00
|
|
|
import os
|
|
|
|
import re
|
2016-04-20 16:56:03 +00:00
|
|
|
import ast
|
2020-05-03 08:55:33 +00:00
|
|
|
from datetime import datetime
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2019-07-13 18:45:48 +00:00
|
|
|
from sqlalchemy import create_engine
|
2020-05-03 08:55:33 +00:00
|
|
|
from sqlalchemy import Table, Column, ForeignKey, CheckConstraint
|
2020-05-04 16:19:30 +00:00
|
|
|
from sqlalchemy import String, Integer, Boolean, TIMESTAMP, Float, DateTime
|
2019-07-13 18:45:48 +00:00
|
|
|
from sqlalchemy.orm import relationship, sessionmaker, scoped_session
|
|
|
|
from sqlalchemy.ext.declarative import declarative_base
|
2017-10-21 19:50:47 +00:00
|
|
|
|
2017-11-30 15:49:46 +00:00
|
|
|
|
2019-07-13 18:45:48 +00:00
|
|
|
session = None
|
2020-01-15 16:58:23 +00:00
|
|
|
cc_exceptions = ['datetime', 'comments', 'composite', 'series']
|
2019-07-13 18:45:48 +00:00
|
|
|
cc_classes = {}
|
2019-12-30 14:16:09 +00:00
|
|
|
engine = None
|
2017-11-30 15:49:46 +00:00
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
Base = declarative_base()
|
|
|
|
|
|
|
|
books_authors_link = Table('books_authors_link', Base.metadata,
|
2017-10-21 19:50:47 +00:00
|
|
|
Column('book', Integer, ForeignKey('books.id'), primary_key=True),
|
|
|
|
Column('author', Integer, ForeignKey('authors.id'), primary_key=True)
|
2017-02-15 17:09:17 +00:00
|
|
|
)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
|
|
|
books_tags_link = Table('books_tags_link', Base.metadata,
|
2017-10-21 19:50:47 +00:00
|
|
|
Column('book', Integer, ForeignKey('books.id'), primary_key=True),
|
|
|
|
Column('tag', Integer, ForeignKey('tags.id'), primary_key=True)
|
2017-02-15 17:09:17 +00:00
|
|
|
)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
|
|
|
books_series_link = Table('books_series_link', Base.metadata,
|
2017-10-21 19:50:47 +00:00
|
|
|
Column('book', Integer, ForeignKey('books.id'), primary_key=True),
|
|
|
|
Column('series', Integer, ForeignKey('series.id'), primary_key=True)
|
2017-02-15 17:09:17 +00:00
|
|
|
)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
|
|
|
books_ratings_link = Table('books_ratings_link', Base.metadata,
|
2017-10-21 19:50:47 +00:00
|
|
|
Column('book', Integer, ForeignKey('books.id'), primary_key=True),
|
|
|
|
Column('rating', Integer, ForeignKey('ratings.id'), primary_key=True)
|
2017-02-15 17:09:17 +00:00
|
|
|
)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2015-10-12 23:21:22 +00:00
|
|
|
books_languages_link = Table('books_languages_link', Base.metadata,
|
2017-10-21 19:50:47 +00:00
|
|
|
Column('book', Integer, ForeignKey('books.id'), primary_key=True),
|
|
|
|
Column('lang_code', Integer, ForeignKey('languages.id'), primary_key=True)
|
2017-02-15 17:09:17 +00:00
|
|
|
)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-02-22 19:59:48 +00:00
|
|
|
books_publishers_link = Table('books_publishers_link', Base.metadata,
|
2017-10-21 19:50:47 +00:00
|
|
|
Column('book', Integer, ForeignKey('books.id'), primary_key=True),
|
|
|
|
Column('publisher', Integer, ForeignKey('publishers.id'), primary_key=True)
|
2017-02-22 19:59:48 +00:00
|
|
|
)
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2017-11-30 15:49:46 +00:00
|
|
|
|
2016-12-27 09:36:06 +00:00
|
|
|
class Identifiers(Base):
|
|
|
|
__tablename__ = 'identifiers'
|
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
type = Column(String(collation='NOCASE'), nullable=False, default="isbn")
|
|
|
|
val = Column(String(collation='NOCASE'), nullable=False)
|
|
|
|
book = Column(Integer, ForeignKey('books.id'), nullable=False)
|
2016-12-27 09:36:06 +00:00
|
|
|
|
2017-04-02 08:42:33 +00:00
|
|
|
def __init__(self, val, id_type, book):
|
2016-12-27 09:36:06 +00:00
|
|
|
self.val = val
|
2017-04-02 08:42:33 +00:00
|
|
|
self.type = id_type
|
2016-12-27 09:36:06 +00:00
|
|
|
self.book = book
|
|
|
|
|
|
|
|
def formatType(self):
|
|
|
|
if self.type == "amazon":
|
|
|
|
return u"Amazon"
|
|
|
|
elif self.type == "isbn":
|
|
|
|
return u"ISBN"
|
|
|
|
elif self.type == "doi":
|
|
|
|
return u"DOI"
|
2017-01-05 19:11:02 +00:00
|
|
|
elif self.type == "goodreads":
|
|
|
|
return u"Goodreads"
|
2017-04-27 13:32:30 +00:00
|
|
|
elif self.type == "google":
|
|
|
|
return u"Google Books"
|
|
|
|
elif self.type == "kobo":
|
|
|
|
return u"Kobo"
|
2019-04-17 18:14:24 +00:00
|
|
|
if self.type == "lubimyczytac":
|
|
|
|
return u"Lubimyczytac"
|
2016-12-27 09:36:06 +00:00
|
|
|
else:
|
|
|
|
return self.type
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
if self.type == "amazon":
|
|
|
|
return u"https://amzn.com/{0}".format(self.val)
|
|
|
|
elif self.type == "isbn":
|
2017-01-18 18:07:45 +00:00
|
|
|
return u"http://www.worldcat.org/isbn/{0}".format(self.val)
|
2016-12-27 09:36:06 +00:00
|
|
|
elif self.type == "doi":
|
|
|
|
return u"http://dx.doi.org/{0}".format(self.val)
|
2017-01-05 19:11:02 +00:00
|
|
|
elif self.type == "goodreads":
|
|
|
|
return u"http://www.goodreads.com/book/show/{0}".format(self.val)
|
2017-01-16 03:14:49 +00:00
|
|
|
elif self.type == "douban":
|
|
|
|
return u"https://book.douban.com/subject/{0}".format(self.val)
|
2017-04-27 13:32:30 +00:00
|
|
|
elif self.type == "google":
|
|
|
|
return u"https://books.google.com/books?id={0}".format(self.val)
|
|
|
|
elif self.type == "kobo":
|
|
|
|
return u"https://www.kobo.com/ebook/{0}".format(self.val)
|
2019-04-17 18:14:24 +00:00
|
|
|
elif self.type == "lubimyczytac":
|
|
|
|
return u" http://lubimyczytac.pl/ksiazka/{0}".format(self.val)
|
2018-07-18 19:36:51 +00:00
|
|
|
elif self.type == "url":
|
|
|
|
return u"{0}".format(self.val)
|
2016-12-27 09:36:06 +00:00
|
|
|
else:
|
|
|
|
return u""
|
|
|
|
|
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
class Comments(Base):
|
2016-04-03 21:52:32 +00:00
|
|
|
__tablename__ = 'comments'
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
text = Column(String(collation='NOCASE'), nullable=False)
|
|
|
|
book = Column(Integer, ForeignKey('books.id'), nullable=False)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __init__(self, text, book):
|
|
|
|
self.text = text
|
|
|
|
self.book = book
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return u"<Comments({0})>".format(self.text)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Tags(Base):
|
2016-04-03 21:52:32 +00:00
|
|
|
__tablename__ = 'tags'
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
name = Column(String(collation='NOCASE'), unique=True, nullable=False)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __init__(self, name):
|
|
|
|
self.name = name
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return u"<Tags('{0})>".format(self.name)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
class Authors(Base):
|
2016-04-03 21:52:32 +00:00
|
|
|
__tablename__ = 'authors'
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
name = Column(String(collation='NOCASE'), unique=True, nullable=False)
|
|
|
|
sort = Column(String(collation='NOCASE'))
|
|
|
|
link = Column(String, nullable=False, default="")
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __init__(self, name, sort, link):
|
|
|
|
self.name = name
|
|
|
|
self.sort = sort
|
|
|
|
self.link = link
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return u"<Authors('{0},{1}{2}')>".format(self.name, self.sort, self.link)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
class Series(Base):
|
2016-04-03 21:52:32 +00:00
|
|
|
__tablename__ = 'series'
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
name = Column(String(collation='NOCASE'), unique=True, nullable=False)
|
|
|
|
sort = Column(String(collation='NOCASE'))
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __init__(self, name, sort):
|
|
|
|
self.name = name
|
|
|
|
self.sort = sort
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return u"<Series('{0},{1}')>".format(self.name, self.sort)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
class Ratings(Base):
|
2016-04-03 21:52:32 +00:00
|
|
|
__tablename__ = 'ratings'
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
rating = Column(Integer, CheckConstraint('rating>-1 AND rating<11'), unique=True)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
def __init__(self, rating):
|
2016-04-03 21:52:32 +00:00
|
|
|
self.rating = rating
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return u"<Ratings('{0}')>".format(self.rating)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2015-10-12 23:21:22 +00:00
|
|
|
class Languages(Base):
|
|
|
|
__tablename__ = 'languages'
|
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
lang_code = Column(String(collation='NOCASE'), nullable=False, unique=True)
|
2015-10-12 23:21:22 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
def __init__(self, lang_code):
|
2015-10-12 23:21:22 +00:00
|
|
|
self.lang_code = lang_code
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return u"<Languages('{0}')>".format(self.lang_code)
|
|
|
|
|
2017-11-30 15:49:46 +00:00
|
|
|
|
2017-02-22 19:59:48 +00:00
|
|
|
class Publishers(Base):
|
|
|
|
__tablename__ = 'publishers'
|
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
name = Column(String(collation='NOCASE'), nullable=False, unique=True)
|
|
|
|
sort = Column(String(collation='NOCASE'))
|
2017-02-22 19:59:48 +00:00
|
|
|
|
2017-11-30 15:49:46 +00:00
|
|
|
def __init__(self, name, sort):
|
2017-02-22 19:59:48 +00:00
|
|
|
self.name = name
|
|
|
|
self.sort = sort
|
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return u"<Publishers('{0},{1}')>".format(self.name, self.sort)
|
|
|
|
|
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
class Data(Base):
|
2016-04-03 21:52:32 +00:00
|
|
|
__tablename__ = 'data'
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2020-05-03 08:55:33 +00:00
|
|
|
book = Column(Integer, ForeignKey('books.id'), nullable=False)
|
|
|
|
format = Column(String(collation='NOCASE'), nullable=False)
|
|
|
|
uncompressed_size = Column(Integer, nullable=False)
|
|
|
|
name = Column(String, nullable=False)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-04-02 08:42:33 +00:00
|
|
|
def __init__(self, book, book_format, uncompressed_size, name):
|
2016-04-03 21:52:32 +00:00
|
|
|
self.book = book
|
2017-04-02 08:42:33 +00:00
|
|
|
self.format = book_format
|
2016-04-03 21:52:32 +00:00
|
|
|
self.uncompressed_size = uncompressed_size
|
|
|
|
self.name = name
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-04-03 21:52:32 +00:00
|
|
|
def __repr__(self):
|
|
|
|
return u"<Data('{0},{1}{2}{3}')>".format(self.book, self.format, self.uncompressed_size, self.name)
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2016-12-23 08:53:39 +00:00
|
|
|
|
2015-08-02 18:59:11 +00:00
|
|
|
class Books(Base):
|
2016-04-03 21:52:32 +00:00
|
|
|
__tablename__ = 'books'
|
|
|
|
|
2017-07-10 16:20:46 +00:00
|
|
|
DEFAULT_PUBDATE = "0101-01-01 00:00:00+00:00"
|
2017-07-09 23:27:46 +00:00
|
|
|
|
2020-05-03 08:55:33 +00:00
|
|
|
id = Column(Integer, primary_key=True, autoincrement=True)
|
|
|
|
title = Column(String(collation='NOCASE'), nullable=False, default='Unknown')
|
|
|
|
sort = Column(String(collation='NOCASE'))
|
|
|
|
author_sort = Column(String(collation='NOCASE'))
|
|
|
|
timestamp = Column(TIMESTAMP, default=datetime.utcnow)
|
2020-05-04 16:19:30 +00:00
|
|
|
pubdate = Column(String) # , default=datetime.utcnow)
|
|
|
|
series_index = Column(String, nullable=False, default="1.0")
|
2020-05-03 08:55:33 +00:00
|
|
|
last_modified = Column(TIMESTAMP, default=datetime.utcnow)
|
|
|
|
path = Column(String, default="", nullable=False)
|
|
|
|
has_cover = Column(Integer, default=0)
|
2016-11-09 18:24:33 +00:00
|
|
|
uuid = Column(String)
|
2020-05-03 08:55:33 +00:00
|
|
|
isbn = Column(String(collation='NOCASE'), default="")
|
|
|
|
# Iccn = Column(String(collation='NOCASE'), default="")
|
|
|
|
flags = Column(Integer, nullable=False, default=1)
|
2016-04-03 21:52:32 +00:00
|
|
|
|
|
|
|
authors = relationship('Authors', secondary=books_authors_link, backref='books')
|
2018-06-02 15:02:18 +00:00
|
|
|
tags = relationship('Tags', secondary=books_tags_link, backref='books',order_by="Tags.name")
|
2016-04-03 21:52:32 +00:00
|
|
|
comments = relationship('Comments', backref='books')
|
|
|
|
data = relationship('Data', backref='books')
|
|
|
|
series = relationship('Series', secondary=books_series_link, backref='books')
|
|
|
|
ratings = relationship('Ratings', secondary=books_ratings_link, backref='books')
|
|
|
|
languages = relationship('Languages', secondary=books_languages_link, backref='books')
|
2017-02-22 19:59:48 +00:00
|
|
|
publishers = relationship('Publishers', secondary=books_publishers_link, backref='books')
|
2017-01-28 19:16:40 +00:00
|
|
|
identifiers = relationship('Identifiers', backref='books')
|
2016-12-27 09:36:06 +00:00
|
|
|
|
2017-01-28 19:16:40 +00:00
|
|
|
def __init__(self, title, sort, author_sort, timestamp, pubdate, series_index, last_modified, path, has_cover,
|
2017-11-30 15:49:46 +00:00
|
|
|
authors, tags, languages=None):
|
2016-04-03 21:52:32 +00:00
|
|
|
self.title = title
|
|
|
|
self.sort = sort
|
|
|
|
self.author_sort = author_sort
|
|
|
|
self.timestamp = timestamp
|
|
|
|
self.pubdate = pubdate
|
|
|
|
self.series_index = series_index
|
|
|
|
self.last_modified = last_modified
|
|
|
|
self.path = path
|
|
|
|
self.has_cover = has_cover
|
|
|
|
|
|
|
|
def __repr__(self):
|
2016-12-23 08:53:39 +00:00
|
|
|
return u"<Books('{0},{1}{2}{3}{4}{5}{6}{7}{8}')>".format(self.title, self.sort, self.author_sort,
|
|
|
|
self.timestamp, self.pubdate, self.series_index,
|
|
|
|
self.last_modified, self.path, self.has_cover)
|
|
|
|
|
2018-05-26 15:21:20 +00:00
|
|
|
@property
|
|
|
|
def atom_timestamp(self):
|
2019-12-30 14:16:09 +00:00
|
|
|
return (self.timestamp.strftime('%Y-%m-%dT%H:%M:%S+00:00') or '')
|
2016-04-19 22:20:02 +00:00
|
|
|
|
2016-04-17 16:03:47 +00:00
|
|
|
class Custom_Columns(Base):
|
|
|
|
__tablename__ = 'custom_columns'
|
2017-03-30 19:17:18 +00:00
|
|
|
|
2017-10-21 19:50:47 +00:00
|
|
|
id = Column(Integer, primary_key=True)
|
2016-04-17 16:03:47 +00:00
|
|
|
label = Column(String)
|
|
|
|
name = Column(String)
|
|
|
|
datatype = Column(String)
|
|
|
|
mark_for_delete = Column(Boolean)
|
|
|
|
editable = Column(Boolean)
|
|
|
|
display = Column(String)
|
|
|
|
is_multiple = Column(Boolean)
|
2016-04-20 16:56:03 +00:00
|
|
|
normalized = Column(Boolean)
|
2017-04-02 08:42:33 +00:00
|
|
|
|
2016-04-20 16:56:03 +00:00
|
|
|
def get_display_dict(self):
|
|
|
|
display_dict = ast.literal_eval(self.display)
|
2019-01-14 19:27:53 +00:00
|
|
|
if sys.version_info < (3, 0):
|
|
|
|
display_dict['enum_values'] = [x.decode('unicode_escape') for x in display_dict['enum_values']]
|
2016-04-20 16:56:03 +00:00
|
|
|
return display_dict
|
2015-08-02 18:59:11 +00:00
|
|
|
|
2017-01-22 20:30:36 +00:00
|
|
|
|
2019-07-13 18:45:48 +00:00
|
|
|
def update_title_sort(config, conn=None):
|
|
|
|
# user defined sort function for calibre databases (Series, etc.)
|
|
|
|
def _title_sort(title):
|
|
|
|
# calibre sort stuff
|
|
|
|
title_pat = re.compile(config.config_title_regex, re.IGNORECASE)
|
|
|
|
match = title_pat.search(title)
|
|
|
|
if match:
|
|
|
|
prep = match.group(1)
|
|
|
|
title = title.replace(prep, '') + ', ' + prep
|
|
|
|
return title.strip()
|
|
|
|
|
|
|
|
conn = conn or session.connection().connection.connection
|
|
|
|
conn.create_function("title_sort", 1, _title_sort)
|
|
|
|
|
|
|
|
|
|
|
|
def setup_db(config):
|
|
|
|
dispose()
|
2019-12-30 14:16:09 +00:00
|
|
|
global engine
|
2019-07-13 18:45:48 +00:00
|
|
|
|
|
|
|
if not config.config_calibre_dir:
|
|
|
|
config.invalidate()
|
2017-01-28 19:16:40 +00:00
|
|
|
return False
|
2017-01-22 20:30:36 +00:00
|
|
|
|
2017-01-22 15:44:37 +00:00
|
|
|
dbpath = os.path.join(config.config_calibre_dir, "metadata.db")
|
2019-07-13 18:45:48 +00:00
|
|
|
if not os.path.exists(dbpath):
|
|
|
|
config.invalidate()
|
|
|
|
return False
|
|
|
|
|
2017-01-28 19:16:40 +00:00
|
|
|
try:
|
2019-07-13 18:45:48 +00:00
|
|
|
engine = create_engine('sqlite:///{0}'.format(dbpath),
|
|
|
|
echo=False,
|
|
|
|
isolation_level="SERIALIZABLE",
|
|
|
|
connect_args={'check_same_thread': False})
|
2017-01-28 19:16:40 +00:00
|
|
|
conn = engine.connect()
|
2020-04-13 20:23:58 +00:00
|
|
|
# conn.text_factory = lambda b: b.decode(errors = 'ignore') possible fix for #1302
|
|
|
|
except Exception as e:
|
|
|
|
config.invalidate(e)
|
2017-01-28 19:16:40 +00:00
|
|
|
return False
|
2019-07-13 18:45:48 +00:00
|
|
|
|
|
|
|
config.db_configured = True
|
|
|
|
update_title_sort(config, conn.connection)
|
2017-01-22 15:44:37 +00:00
|
|
|
|
2017-03-07 18:10:17 +00:00
|
|
|
if not cc_classes:
|
|
|
|
cc = conn.execute("SELECT id, datatype FROM custom_columns")
|
|
|
|
|
|
|
|
cc_ids = []
|
|
|
|
books_custom_column_links = {}
|
|
|
|
for row in cc:
|
|
|
|
if row.datatype not in cc_exceptions:
|
|
|
|
books_custom_column_links[row.id] = Table('books_custom_column_' + str(row.id) + '_link', Base.metadata,
|
|
|
|
Column('book', Integer, ForeignKey('books.id'),
|
|
|
|
primary_key=True),
|
|
|
|
Column('value', Integer,
|
|
|
|
ForeignKey('custom_column_' + str(row.id) + '.id'),
|
|
|
|
primary_key=True)
|
|
|
|
)
|
|
|
|
cc_ids.append([row.id, row.datatype])
|
|
|
|
if row.datatype == 'bool':
|
|
|
|
ccdict = {'__tablename__': 'custom_column_' + str(row.id),
|
|
|
|
'id': Column(Integer, primary_key=True),
|
|
|
|
'book': Column(Integer, ForeignKey('books.id')),
|
|
|
|
'value': Column(Boolean)}
|
2017-05-22 20:54:53 +00:00
|
|
|
elif row.datatype == 'int':
|
|
|
|
ccdict = {'__tablename__': 'custom_column_' + str(row.id),
|
|
|
|
'id': Column(Integer, primary_key=True),
|
|
|
|
'book': Column(Integer, ForeignKey('books.id')),
|
|
|
|
'value': Column(Integer)}
|
2020-01-15 16:58:23 +00:00
|
|
|
elif row.datatype == 'float':
|
|
|
|
ccdict = {'__tablename__': 'custom_column_' + str(row.id),
|
|
|
|
'id': Column(Integer, primary_key=True),
|
|
|
|
'book': Column(Integer, ForeignKey('books.id')),
|
|
|
|
'value': Column(Float)}
|
2017-03-07 18:10:17 +00:00
|
|
|
else:
|
|
|
|
ccdict = {'__tablename__': 'custom_column_' + str(row.id),
|
|
|
|
'id': Column(Integer, primary_key=True),
|
|
|
|
'value': Column(String)}
|
2019-07-13 18:45:48 +00:00
|
|
|
cc_classes[row.id] = type(str('Custom_Column_' + str(row.id)), (Base,), ccdict)
|
2017-03-07 18:10:17 +00:00
|
|
|
|
2017-04-02 08:42:33 +00:00
|
|
|
for cc_id in cc_ids:
|
2020-01-15 16:58:23 +00:00
|
|
|
if (cc_id[1] == 'bool') or (cc_id[1] == 'int') or (cc_id[1] == 'float'):
|
2017-04-02 08:42:33 +00:00
|
|
|
setattr(Books, 'custom_column_' + str(cc_id[0]), relationship(cc_classes[cc_id[0]],
|
2017-03-07 18:10:17 +00:00
|
|
|
primaryjoin=(
|
2017-04-02 08:42:33 +00:00
|
|
|
Books.id == cc_classes[cc_id[0]].book),
|
2017-03-07 18:10:17 +00:00
|
|
|
backref='books'))
|
2017-01-22 15:44:37 +00:00
|
|
|
else:
|
2017-04-02 08:42:33 +00:00
|
|
|
setattr(Books, 'custom_column_' + str(cc_id[0]), relationship(cc_classes[cc_id[0]],
|
|
|
|
secondary=books_custom_column_links[cc_id[0]],
|
2017-03-07 18:10:17 +00:00
|
|
|
backref='books'))
|
2017-01-22 15:44:37 +00:00
|
|
|
|
2018-08-12 07:29:57 +00:00
|
|
|
|
2019-07-13 18:45:48 +00:00
|
|
|
global session
|
2018-08-12 07:29:57 +00:00
|
|
|
Session = scoped_session(sessionmaker(autocommit=False,
|
|
|
|
autoflush=False,
|
|
|
|
bind=engine))
|
2017-01-22 15:44:37 +00:00
|
|
|
session = Session()
|
2017-04-27 13:32:30 +00:00
|
|
|
return True
|
2019-07-13 18:45:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
def dispose():
|
|
|
|
global session
|
|
|
|
|
2019-07-14 11:43:40 +00:00
|
|
|
old_session = session
|
|
|
|
session = None
|
|
|
|
if old_session:
|
|
|
|
try: old_session.close()
|
2019-07-13 18:45:48 +00:00
|
|
|
except: pass
|
2019-07-14 11:43:40 +00:00
|
|
|
if old_session.bind:
|
|
|
|
try: old_session.bind.dispose()
|
2020-04-27 18:01:13 +00:00
|
|
|
except Exception: pass
|
2019-07-13 18:45:48 +00:00
|
|
|
|
|
|
|
for attr in list(Books.__dict__.keys()):
|
|
|
|
if attr.startswith("custom_column_"):
|
2019-07-17 17:02:53 +00:00
|
|
|
setattr(Books, attr, None)
|
2019-07-13 18:45:48 +00:00
|
|
|
|
|
|
|
for db_class in cc_classes.values():
|
|
|
|
Base.metadata.remove(db_class.__table__)
|
|
|
|
cc_classes.clear()
|
|
|
|
|
|
|
|
for table in reversed(Base.metadata.sorted_tables):
|
|
|
|
name = table.key
|
|
|
|
if name.startswith("custom_column_") or name.startswith("books_custom_column_"):
|
|
|
|
if table is not None:
|
|
|
|
Base.metadata.remove(table)
|
2019-12-30 14:16:09 +00:00
|
|
|
|
|
|
|
def reconnect_db(config):
|
|
|
|
session.close()
|
|
|
|
engine.dispose()
|
|
|
|
setup_db(config)
|