X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person.php;h=95beb5a5405975a2e6ad3395c4e21d620f4669b7;hb=cfd6af2b45b4112d6646590b79a18040b9f02df5;hp=9f39f3a5fc163bc07edb01d282c8613a290062b1;hpb=b318ae248585cf89f80af6c33024da7ae2d15c5f;p=Pman.Core diff --git a/DataObjects/Core_person.php b/DataObjects/Core_person.php index 9f39f3a5..95beb5a5 100644 --- a/DataObjects/Core_person.php +++ b/DataObjects/Core_person.php @@ -518,15 +518,17 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject return md5(implode(',' , array($month, $this->email , $this->passwd, $this->id))); } - function checkTwoFactorAuthentication($val, $oath_key) + function checkTwoFactorAuthentication($val) { // also used in login + return true; + require_once 'System.php'; if( empty($this->id) || - empty($oath_key) + empty($this->oath_key) ) { return false; } @@ -537,7 +539,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject return false; } - $cmd = "{$oathtool} --totp --base32 {$oath_key}"; + $cmd = "{$oathtool} --totp --base32 {$this->oath_key}"; $password = exec($cmd); @@ -670,11 +672,15 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $aur['passwd'] = ''; $aur['dailykey'] = ''; $aur['oath_key'] = ''; - + $aur['require_oath'] = 1; $aur['oath_key_enable'] = !empty($this->oath_key); $s = DB_DataObject::Factory('core_setting'); - $aur['disable_oath'] = (bool) $s->lookup('core', 'two_factor_authentication') ? 1 : 0; + $oath_require = $s->lookup('core', 'two_factor_authentication_requirement'); + if(!empty($oath_require) || $oath_require == 0) { + + $aur['require_oath'] = 1; + } return $aur; } @@ -767,7 +773,6 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject { //DB_DataObject::DebugLevel(1); if(!empty($q['_to_qr_code'])){ - $person = DB_DataObject::factory('Core_person'); $person->id = $q['id']; @@ -777,8 +782,13 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $hash = $this->generateOathKey(); - $_SESSION[__CLASS__] = isset($_SESSION[__CLASS__]) ? $_SESSION[__CLASS__] : array(); - $_SESSION[__CLASS__]['oath'] = isset($_SESSION[__CLASS__]['oath']) ? $_SESSION[__CLASS__]['oath'] : array(); + $_SESSION[__CLASS__] = + isset($_SESSION[__CLASS__]) ? + $_SESSION[__CLASS__] : array(); + $_SESSION[__CLASS__]['oath'] = + isset($_SESSION[__CLASS__]['oath']) ? + $_SESSION[__CLASS__]['oath'] : array(); + $_SESSION[__CLASS__]['oath'][$person->id] = $hash; $qrcode = $person->generateQRCode($hash); @@ -791,21 +801,14 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject } if(!empty($q['two_factor_auth_code'])) { - $person = DB_DataObject::factory('core_person'); $person->get($q['id']); + $o = clone($person); + $person->oath_key = $_SESSION[__CLASS__]['oath'][$person->id]; - if($person->checkTwoFactorAuthentication( - $q['two_factor_auth_code'], - $_SESSION[__CLASS__]['oath'][$person->id] - )) { - - $o = clone($person); - $person->oath_key = $_SESSION[__CLASS__]['oath'][$person->id]; + if($person->checkTwoFactorAuthentication($q['two_factor_auth_code'])) { $person->update($o); - unset($_SESSION[__CLASS__]['oath'][$person->id]); - $roo->jok('DONE'); } @@ -813,7 +816,6 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject } if(!empty($q['oath_key_disable'])) { - $person = DB_DataObject::factory('core_person'); $person->get($q['id']);