mirror of
https://github.com/janeczku/calibre-web
synced 2024-10-31 15:20:28 +00:00
87 lines
3.2 KiB
Python
87 lines
3.2 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 werkzeug
|
|
import flask
|
|
import flask_login
|
|
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
|
|
|
|
|
|
about = flask.Blueprint('about', __name__)
|
|
|
|
ret = dict()
|
|
req = dep_check.load_dependencys(False)
|
|
opt = dep_check.load_dependencys(True)
|
|
for i in (req + opt):
|
|
ret[i[1]] = i[0]
|
|
|
|
if constants.NIGHTLY_VERSION[0] == "$Format:%H$":
|
|
calibre_web_version = constants.STABLE_VERSION['version']
|
|
else:
|
|
calibre_web_version = (constants.STABLE_VERSION['version'] + ' - '
|
|
+ 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 = OrderedDict(
|
|
Platform='{0[0]} {0[2]} {0[3]} {0[4]} {0[5]}'.format(platform.uname()),
|
|
Python=sys.version,
|
|
Calibre_Web=calibre_web_version,
|
|
Werkzeug=werkzeug.__version__,
|
|
Jinja2=jinja2.__version__,
|
|
pySqlite=sqlite3.version,
|
|
SQLite=sqlite3.sqlite_version,
|
|
)
|
|
_VERSIONS.update(ret)
|
|
_VERSIONS.update(uploader.get_versions(False))
|
|
|
|
|
|
def collect_stats():
|
|
_VERSIONS['ebook converter'] = _(converter.get_calibre_version())
|
|
_VERSIONS['unrar'] = _(converter.get_unrar_version())
|
|
_VERSIONS['kepubify'] = _(converter.get_kepubify_version())
|
|
return _VERSIONS
|
|
|
|
|
|
@about.route("/stats")
|
|
@flask_login.login_required
|
|
def stats():
|
|
counter = calibre_db.session.query(db.Books).count()
|
|
authors = calibre_db.session.query(db.Authors).count()
|
|
categorys = 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=categorys, seriecounter=series, title=_(u"Statistics"), page="stat")
|