Skip to content
Snippets Groups Projects
Commit 9e760e17 authored by Sebastian Kehr's avatar Sebastian Kehr :rowboat_tone2: Committed by Demian Katz
Browse files

Use configured username field when updating password.

parent 7b96e587
No related merge requests found
......@@ -202,7 +202,8 @@ class ILS extends AbstractBase
}
// Update the user and send it back to the caller:
$user = $this->getUserTable()->getByUsername($patron['cat_username']);
$username = $patron[$this->getUsernameField()];
$user = $this->getUserTable()->getByUsername($username);
$user->saveCredentials($patron['cat_username'], $params['password']);
return $user;
}
......@@ -219,9 +220,7 @@ class ILS extends AbstractBase
{
// Figure out which field of the response to use as an identifier; fail
// if the expected field is missing or empty:
$config = $this->getConfig();
$usernameField = isset($config->Authentication->ILS_username_field)
? $config->Authentication->ILS_username_field : 'cat_username';
$usernameField = $this->getUsernameField();
if (!isset($info[$usernameField]) || empty($info[$usernameField])) {
throw new AuthException('authentication_error_technical');
}
......@@ -289,4 +288,16 @@ class ILS extends AbstractBase
$patron = $this->authenticator->storedCatalogLogin();
return $patron ? $patron : null;
}
/**
* Gets the configured username field.
*
* @return string
*/
protected function getUsernameField()
{
$config = $this->getConfig();
return isset($config->Authentication->ILS_username_field)
? $config->Authentication->ILS_username_field : 'cat_username';
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment