. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Hooks\User; use Espo\Core\Hook\Hook\BeforeSave; use Espo\Entities\User; use Espo\ORM\Entity; use Espo\ORM\Repository\Option\SaveOptions; use RuntimeException; /** * @implements BeforeSave */ class IncrementPasswordVersion implements BeforeSave { public function beforeSave(Entity $entity, SaveOptions $options): void { if (!$entity->isAttributeChanged(User::FIELD_PASSWORD)) { return; } $version = $entity->get(User::FIELD_PASSWORD_VERSION) ?? 0; if (!is_int($version)) { throw new RuntimeException("Non-int passwordVersion."); } $version ++; $entity->set(User::FIELD_PASSWORD_VERSION, $version); } }