X-Git-Url: http://git.roojs.org/?a=blobdiff_plain;f=DataObjects%2FCore_person.php;h=f2f2982c618e60443638744c8d926a0a031e4633;hb=59171aab7dcdb554ab334e2a07a1c34875439326;hp=991e8ff75a2dd857debeab14cd1e659eb90f6bc9;hpb=7506fd922a5d0eba3fb4cc077d733534f958abe3;p=Pman.Core diff --git a/DataObjects/Core_person.php b/DataObjects/Core_person.php index 991e8ff7..f2f2982c 100644 --- a/DataObjects/Core_person.php +++ b/DataObjects/Core_person.php @@ -172,18 +172,13 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject // h embeds images here.. $body = $mime->get(); $headers = $mime->headers($headers); - } - - return array( 'recipients' => $recipents, 'headers' => $headers, 'body' => $body ); - - } @@ -195,10 +190,8 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject */ function sendTemplate($templateFile, $args) { - $ar = $this->buildMail($templateFile, $args); - //print_r($recipents);exit; $mailOptions = PEAR::getStaticProperty('Mail','options'); $mail = Mail::factory("SMTP",$mailOptions); @@ -211,7 +204,6 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject error_reporting($oe); return $ret; - } @@ -528,24 +520,26 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject function checkTwoFactorAuthentication($val) { - require_once 'System.php'; + // also used in login - $oathtool = System::which('oathtool'); + return true; - if (!$oathtool) { + require_once 'System.php'; + + if( + empty($this->id) || + empty($this->oath_key) + ) { return false; } - $oath_key = $this->oath_key; + $oathtool = System::which('oathtool'); - if(empty($this->id)) { - $au = $this->getAuthUser(); - $oath_key = $au->oath_key; + if (!$oathtool) { + return false; } - print_r($oath_key); - - $cmd = "{$oathtool} --totp --base32 {$oath_key}"; + $cmd = "{$oathtool} --totp --base32 {$this->oath_key}"; $password = exec($cmd); @@ -680,6 +674,12 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $aur['oath_key'] = ''; $aur['oath_key_enable'] = !empty($this->oath_key); + $aur['require_oath'] = 1; + + $s = DB_DataObject::Factory('core_setting'); + $oath_require = $s->lookup('core', 'two_factor_authentication_requirement'); + + // $aur['require_oath'] = !empty($oath_require) || $oath_require->val == 0 ? 0 : 1; return $aur; } @@ -771,25 +771,26 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject function applyFilters($q, $au, $roo) { //DB_DataObject::DebugLevel(1); - if(!empty($q['_generate_oath_key'])){ - $o = clone($this); - $this->generateOathKey(); - $this->update($o); - $roo->jok('OK'); - } - - // missing id for core_person mgmt if(!empty($q['_to_qr_code'])){ + $person = DB_DataObject::factory('Core_person'); + $person->id = $q['id']; - $au = $this->getAuthUser(); - - $o = clone($au); - - $au->generateOathKey(); + if(!$person->find(true)) { + $roo->jerr('_invalid_person'); + } - $au->update($o); + $hash = $this->generateOathKey(); - $qrcode = $au->generateQRCode(); + $_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); if(empty($qrcode)){ $roo->jerr('Fail to generate QR Code'); @@ -799,8 +800,14 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject } if(!empty($q['two_factor_auth_code'])) { - - if($this->checkTwoFactorAuthentication($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'])) { + $person->update($o); + unset($_SESSION[__CLASS__]['oath'][$person->id]); $roo->jok('DONE'); } @@ -808,18 +815,13 @@ 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']); - $au = $this->getAuthUser(); - - if(empty($au)) { - $roo->jerr('Please login to the system'); - } - - $o = clone($au); + $o = clone($person); - $au->oath_key = ''; - - $au->update($o); + $person->oath_key = ''; + $person->update($o); $roo->jok('DONE'); } @@ -1113,7 +1115,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $this->setFrom($ar); if(!empty($ar['_enable_oath_key'])){ - $this->generateOathKey(); + $oath_key = $this->generateOathKey(); } if (!empty($ar['passwd1'])) { @@ -1437,22 +1439,18 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject function generateOathKey() { - $hex = bin2hex(openssl_random_pseudo_bytes(10)); - require 'Base32.php'; $base32 = new Base32(); - $this->oath_key = $base32->base32_encode($hex); - - return $this->oath_key; + return $base32->base32_encode(bin2hex(openssl_random_pseudo_bytes(10))); } - function generateQRCode() + function generateQRCode($hash) { if( empty($this->email) && - empty($this->oath_key) + empty($hash) ){ return false; } @@ -1460,7 +1458,7 @@ class Pman_Core_DataObjects_Core_person extends DB_DataObject $issuer = (empty($this->name)) ? rawurlencode('ROOJS') : rawurlencode($this->name); - $uri = "otpauth://totp/{$issuer}:{$this->email}?secret={$this->oath_key}&issuer={$issuer}&algorithm=SHA1&digits=6&period=30"; + $uri = "otpauth://totp/{$issuer}:{$this->email}?secret={$hash}&issuer={$issuer}&algorithm=SHA1&digits=6&period=30"; require_once 'Image/QRCode.php';