kaystrobach/password 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

kaystrobach/password

Composer 安装命令:

composer require kaystrobach/password

包简介

Add description here

README 文档

README

Password Validation Package for version 4.x of the neos/flow framework. Update for flow 5.x is planned.

Inclusion in Template

The Validator requires 2 fields, which are named like the controller parameter appended with [0] and [1].

	<div class="form-group">
		<label for="newPassword" class="col-sm-4 control-label">neues Passwort</label>
		<div class="col-sm-4">
			<div class="input-group passwordfield">
				<f:form.password  id="newPassword" name="newPassword[0]" class="form-control"  />
				<span class="input-group-addon passwordDisplayArea" style="display: none;" data-behaviour="clipboard"></span>
				<span class="input-group-btn">
					<button class="btn btn-default" type="button" title="Passwort generieren">
						<span class="glyphicon glyphicon-random"></span>
					</button>
				</span>
			</div>
		</div>
	</div>
	<div class="form-group">
		<label for="newPasswordDuplicate" class="col-sm-4 control-label">neues Passwort bestätigen</label>
		<div class="col-sm-4">
			<f:form.password name="newPassword[1]" class="form-control passwordfield-duplicate" id="newPasswordDuplicate" />
			<p class="help-block">
				Wird nur gespeichert, wenn beide gleich sind und mindestens 6 Zeichen lang.
			</p>
		</div>
	</div>

Controller

Build an action controller and add an action to change the password.

	/**
	 * @Flow\Inject()
	 * @var HashService
	 */
	protected $hashService;
	
	/**
     * @Flow\Inject()
     * @var AccountRepository
     */
    protected $accountRepository;

	/**
	 * @param array $newPassword
	 * @throws StopActionException
     *
     * @Flow\Validate(argumentName="newPassword", type="KayStrobach\Password\Validation\Validator\PasswordValidator", options={"minimumChars":6, "accountIdentifierNotContained":1, "partyNameNotContained":1})
	 */
	public function changePasswordAction($newPassword) {

	    $account->setCredentialsSource($this->hashService->hashPassword($plainPassword, 'default'));
        if($this->persistenceManager->isNewObject($account)) {
            $this->accountRepository->add($account);
        } else {
            $this->accountRepository->update($account);
        }

		$this->addFlashMessage('Password changed');
		$this->redirect('index');
	}

统计信息

  • 总下载量: 6.98k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 2
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-07-03

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固