mirror of
https://github.com/janeczku/calibre-web
synced 2024-11-08 11:00:00 +00:00
ebe7cd7ba4
Cookies are saved in database for better Invalidation Cookies expiry date is saved in database for further deletion (missing) Database conversion is missing
85 lines
3.4 KiB
Python
85 lines
3.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# This file is part of the Calibre-Web (https://github.com/janeczku/calibre-web)
|
|
# Copyright (C) 2018-2019 OzzieIsaacs, cervinko, jkrehm, bodybybuddha, ok11,
|
|
# andy29485, idalin, Kyosfonica, wuqi, Kennyl, lemmsh,
|
|
# falgh1, grunjol, csitko, ytils, xybydy, trasba, vrabe,
|
|
# ruben-herold, marblepebble, JackED42, SiphonSquirrel,
|
|
# apetresc, nanu-c, mutschler
|
|
#
|
|
# 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/>.
|
|
|
|
import sys
|
|
import platform
|
|
import sqlite3
|
|
from collections import OrderedDict
|
|
|
|
import flask
|
|
import jinja2
|
|
from flask_babel import gettext as _
|
|
|
|
from . import db, calibre_db, converter, uploader, constants, dep_check
|
|
from .render_template import render_title_template
|
|
from .usermanagement import user_login_required
|
|
|
|
|
|
about = flask.Blueprint('about', __name__)
|
|
|
|
modules = dict()
|
|
req = dep_check.load_dependencies(False)
|
|
opt = dep_check.load_dependencies(True)
|
|
for i in (req + opt):
|
|
modules[i[1]] = i[0]
|
|
modules['Jinja2'] = jinja2.__version__
|
|
modules['pySqlite'] = sqlite3.version
|
|
modules['SQLite'] = sqlite3.sqlite_version
|
|
sorted_modules = OrderedDict((sorted(modules.items(), key=lambda x: x[0].casefold())))
|
|
|
|
|
|
def collect_stats():
|
|
if constants.NIGHTLY_VERSION[0] == "$Format:%H$":
|
|
calibre_web_version = constants.STABLE_VERSION['version'].replace("b", " Beta")
|
|
else:
|
|
calibre_web_version = (constants.STABLE_VERSION['version'].replace("b", " Beta") + ' - '
|
|
+ constants.NIGHTLY_VERSION[0].replace('%', '%%') + ' - '
|
|
+ constants.NIGHTLY_VERSION[1].replace('%', '%%'))
|
|
|
|
if getattr(sys, 'frozen', False):
|
|
calibre_web_version += " - Exe-Version"
|
|
elif constants.HOME_CONFIG:
|
|
calibre_web_version += " - pyPi"
|
|
|
|
_VERSIONS = {'Calibre Web': calibre_web_version}
|
|
_VERSIONS.update(OrderedDict(
|
|
Python=sys.version,
|
|
Platform='{0[0]} {0[2]} {0[3]} {0[4]} {0[5]}'.format(platform.uname()),
|
|
))
|
|
_VERSIONS.update(uploader.get_magick_version())
|
|
_VERSIONS['Unrar'] = converter.get_unrar_version()
|
|
_VERSIONS['Ebook converter'] = converter.get_calibre_version()
|
|
_VERSIONS['Kepubify'] = converter.get_kepubify_version()
|
|
_VERSIONS.update(sorted_modules)
|
|
return _VERSIONS
|
|
|
|
|
|
@about.route("/stats")
|
|
@user_login_required
|
|
def stats():
|
|
counter = calibre_db.session.query(db.Books).count()
|
|
authors = calibre_db.session.query(db.Authors).count()
|
|
categories = calibre_db.session.query(db.Tags).count()
|
|
series = calibre_db.session.query(db.Series).count()
|
|
return render_title_template('stats.html', bookcounter=counter, authorcounter=authors, versions=collect_stats(),
|
|
categorycounter=categories, seriecounter=series, title=_("Statistics"), page="stat")
|