Use stored credentials when checking certain capabilities.
- Since the user had to log in with the ILS to get to the point of changing their password when using this auth method, we can safely rely on the database copy of the username rather than going through the expensive process of communicating with the ILS an extra time. - Since we are not refreshing the credentials, there is the (fairly small) possibility that the stored password will be outdated. This should not matter for the task of checking the ILS capability, since it is the username that is needed for identifying the user's home ILS in the MultiBackend driver (and in other contexts, this data is not currently used). - This commit also includes a minor comment improvement and a code simplification.
Showing
- module/VuFind/src/VuFind/Auth/ILS.php 2 additions, 2 deletionsmodule/VuFind/src/VuFind/Auth/ILS.php
- module/VuFind/src/VuFind/Auth/ILSAuthenticator.php 23 additions, 3 deletionsmodule/VuFind/src/VuFind/Auth/ILSAuthenticator.php
- module/VuFind/src/VuFind/ILS/Driver/MultiBackend.php 1 addition, 1 deletionmodule/VuFind/src/VuFind/ILS/Driver/MultiBackend.php
- module/VuFind/tests/unit-tests/src/VuFindTest/ILS/Driver/MultiBackendTest.php 5 additions, 0 deletions...unit-tests/src/VuFindTest/ILS/Driver/MultiBackendTest.php
Please register or sign in to comment