2021-10-10 08:26:01 +00:00
|
|
|
# -*- 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, GammaC0de, vuolter
|
|
|
|
#
|
|
|
|
# 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/>.
|
|
|
|
|
2024-07-16 18:44:12 +00:00
|
|
|
from .cw_login import LoginManager
|
|
|
|
from flask import session
|
2021-10-10 08:26:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MyLoginManager(LoginManager):
|
|
|
|
def _session_protection_failed(self):
|
2023-04-03 18:00:13 +00:00
|
|
|
sess = session._get_current_object()
|
2021-10-10 08:26:01 +00:00
|
|
|
ident = self._session_identifier_generator()
|
2023-04-03 18:00:13 +00:00
|
|
|
if(sess and not (len(sess) == 1
|
2024-06-18 18:13:26 +00:00
|
|
|
and sess.get('csrf_token', None))) and ident != sess.get('_id', None):
|
2021-10-10 08:26:01 +00:00
|
|
|
return super(). _session_protection_failed()
|
|
|
|
return False
|
2023-02-04 13:51:41 +00:00
|
|
|
|
2024-07-16 18:44:12 +00:00
|
|
|
|
2024-07-14 14:24:07 +00:00
|
|
|
|