Apply password policy on user creation

This commit is contained in:
michag86 2016-08-03 11:52:15 +02:00
parent 3d0a7c49cc
commit 5fc59a1515
1 changed files with 2 additions and 0 deletions

View File

@ -83,6 +83,8 @@ class Database extends \OC\User\Backend implements \OCP\IUserBackend {
*/
public function createUser($uid, $password) {
if (!$this->userExists($uid)) {
$event = new GenericEvent($password);
$this->eventDispatcher->dispatch('OCP\PasswordPolicy::validate', $event);
$query = \OC_DB::prepare('INSERT INTO `*PREFIX*users` ( `uid`, `password` ) VALUES( ?, ? )');
$result = $query->execute(array($uid, \OC::$server->getHasher()->hash($password)));