|
|
@ -40,6 +40,7 @@ from flask_login import login_user, logout_user, login_required, current_user
|
|
|
|
from sqlalchemy.exc import IntegrityError, InvalidRequestError, OperationalError
|
|
|
|
from sqlalchemy.exc import IntegrityError, InvalidRequestError, OperationalError
|
|
|
|
from sqlalchemy.sql.expression import text, func, true, false, not_, and_, or_
|
|
|
|
from sqlalchemy.sql.expression import text, func, true, false, not_, and_, or_
|
|
|
|
from werkzeug.exceptions import default_exceptions, InternalServerError
|
|
|
|
from werkzeug.exceptions import default_exceptions, InternalServerError
|
|
|
|
|
|
|
|
from sqlalchemy.sql.functions import coalesce
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
from werkzeug.exceptions import FailedDependency
|
|
|
|
from werkzeug.exceptions import FailedDependency
|
|
|
|
except ImportError:
|
|
|
|
except ImportError:
|
|
|
@ -1156,31 +1157,35 @@ def render_read_books(page, are_read, as_xml=False, order=None, *args, **kwargs)
|
|
|
|
readBooks = ub.session.query(ub.ReadBook).filter(ub.ReadBook.user_id == int(current_user.id))\
|
|
|
|
readBooks = ub.session.query(ub.ReadBook).filter(ub.ReadBook.user_id == int(current_user.id))\
|
|
|
|
.filter(ub.ReadBook.read_status == ub.ReadBook.STATUS_FINISHED).all()
|
|
|
|
.filter(ub.ReadBook.read_status == ub.ReadBook.STATUS_FINISHED).all()
|
|
|
|
readBookIds = [x.book_id for x in readBooks]
|
|
|
|
readBookIds = [x.book_id for x in readBooks]
|
|
|
|
else:
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
readBooks = db.session.query(db.cc_classes[config.config_read_column]) \
|
|
|
|
|
|
|
|
.filter(db.cc_classes[config.config_read_column].value == True).all()
|
|
|
|
|
|
|
|
readBookIds = [x.book for x in readBooks]
|
|
|
|
|
|
|
|
except KeyError:
|
|
|
|
|
|
|
|
log.error("Custom Column No.%d is not existing in calibre database", config.config_read_column)
|
|
|
|
|
|
|
|
readBookIds = []
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if are_read:
|
|
|
|
if are_read:
|
|
|
|
db_filter = db.Books.id.in_(readBookIds)
|
|
|
|
db_filter = db.Books.id.in_(readBookIds)
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
db_filter = ~db.Books.id.in_(readBookIds)
|
|
|
|
db_filter = ~db.Books.id.in_(readBookIds)
|
|
|
|
|
|
|
|
|
|
|
|
entries, random, pagination = fill_indexpage(page, db.Books, db_filter, order)
|
|
|
|
entries, random, pagination = fill_indexpage(page, db.Books, db_filter, order)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
if are_read:
|
|
|
|
|
|
|
|
db_filter = db.cc_classes[config.config_read_column].value == True
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
db_filter = coalesce(db.cc_classes[config.config_read_column].value, False) != True
|
|
|
|
|
|
|
|
# book_count = db.session.query(func.count(db.Books.id)).filter(common_filters()).filter(db_filter).scalar()
|
|
|
|
|
|
|
|
entries, random, pagination = fill_indexpage(page, db.Books,
|
|
|
|
|
|
|
|
db_filter,
|
|
|
|
|
|
|
|
order,
|
|
|
|
|
|
|
|
db.cc_classes[config.config_read_column])
|
|
|
|
|
|
|
|
except KeyError:
|
|
|
|
|
|
|
|
log.error("Custom Column No.%d is not existing in calibre database", config.config_read_column)
|
|
|
|
|
|
|
|
book_count = 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if as_xml:
|
|
|
|
if as_xml:
|
|
|
|
return entries, pagination
|
|
|
|
return entries, pagination
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
if are_read:
|
|
|
|
if are_read:
|
|
|
|
name = _(u'Read Books') + ' (' + str(len(readBookIds)) + ')'
|
|
|
|
name = _(u'Read Books') + ' (' + str(pagination.total_count) + ')'
|
|
|
|
pagename = "read"
|
|
|
|
pagename = "read"
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
total_books = db.session.query(func.count(db.Books.id)).filter(common_filters()).scalar()
|
|
|
|
name = _(u'Unread Books') + ' (' + str(pagination.total_count) + ')'
|
|
|
|
name = _(u'Unread Books') + ' (' + str(total_books - len(readBookIds)) + ')'
|
|
|
|
|
|
|
|
pagename = "unread"
|
|
|
|
pagename = "unread"
|
|
|
|
return render_title_template('index.html', random=random, entries=entries, pagination=pagination,
|
|
|
|
return render_title_template('index.html', random=random, entries=entries, pagination=pagination,
|
|
|
|
title=name, page=pagename)
|
|
|
|
title=name, page=pagename)
|
|
|
|