Bug 29914: Make check_cookie_auth compare the userid
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 20 Jan 2022 09:10:05 +0000 (10:10 +0100)
committerKyle M Hall <kyle@bywatersolutions.com>
Fri, 21 Jan 2022 11:54:36 +0000 (06:54 -0500)
commit7114dc2fb1a1440dd031ee771efee6e50bb86540
treea2d8e6b014a3dcec40923c69822a1c083c6f18e2
parentdbd13593538b8dbba9dfe9ff200b1d472ec0595b
Bug 29914: Make check_cookie_auth compare the userid

check_cookie_auth is assuming that the user is authenticated if a cookie exists
and that the login/username exists in the DB.

So basically if you hit the login page, fill the login input with a
valid username, click "login"
=> A cookie will be generated, and the sessions table will contain a
line with this session id.
On the second hit, if the username is in the DB, it will be enough to be
considered authenticated.

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
C4/Auth.pm
Koha/REST/V1/Auth.pm