Subversion Repositories oidplus

Rev

Rev 801 | Rev 1050 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. /*
  4.  * OIDplus 2.0
  5.  * Copyright 2019 - 2021 Daniel Marschall, ViaThinkSoft
  6.  *
  7.  * Licensed under the Apache License, Version 2.0 (the "License");
  8.  * you may not use this file except in compliance with the License.
  9.  * You may obtain a copy of the License at
  10.  *
  11.  *     http://www.apache.org/licenses/LICENSE-2.0
  12.  *
  13.  * Unless required by applicable law or agreed to in writing, software
  14.  * distributed under the License is distributed on an "AS IS" BASIS,
  15.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  16.  * See the License for the specific language governing permissions and
  17.  * limitations under the License.
  18.  */
  19.  
  20. if (!defined('INSIDE_OIDPLUS')) die();
  21.  
  22. class OIDplusPageRaChangeEMail extends OIDplusPagePluginRa {
  23.  
  24.         public function action($actionID, $params) {
  25.                 if ($actionID == 'change_ra_email') {
  26.                         if (!OIDplus::config()->getValue('allow_ra_email_change') && !OIDplus::authUtils()->isAdminLoggedIn()) {
  27.                                 throw new OIDplusException(_L('This functionality has been disabled by the administrator.'));
  28.                         }
  29.  
  30.                         _CheckParamExists($params, 'old_email');
  31.                         _CheckParamExists($params, 'new_email');
  32.  
  33.                         $old_email = $params['old_email'];
  34.                         $new_email = $params['new_email'];
  35.  
  36.                         $ra = new OIDplusRA($old_email);
  37.                         if ($ra->isPasswordLess() && !OIDplus::authUtils()->isAdminLoggedIn()) {
  38.                                 throw new OIDplusException(_L('E-Mail-Address cannot be changed because this user does not have a password'));
  39.                         }
  40.  
  41.                         if (!OIDplus::authUtils()->isRaLoggedIn($old_email) && !OIDplus::authUtils()->isAdminLoggedIn()) {
  42.                                 throw new OIDplusException(_L('Authentication error. Please log in as admin, or as the RA to update its email address.'));
  43.                         }
  44.  
  45.                         if (!OIDplus::mailUtils()->validMailAddress($new_email)) {
  46.                                 throw new OIDplusException(_L('eMail address is invalid.'));
  47.                         }
  48.  
  49.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($old_email));
  50.                         if (!$res->any()) {
  51.                                 throw new OIDplusException(_L('eMail address does not exist anymore. It was probably already changed.'));
  52.                         }
  53.  
  54.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($new_email));
  55.                         if ($res->any()) {
  56.                                 throw new OIDplusException(_L('eMail address is already used by another RA. To merge accounts, please contact the superior RA of your objects and request an owner change of your objects.'));
  57.                         }
  58.  
  59.                         if (OIDplus::authUtils()->isAdminLoggedIn()) {
  60.                                 $ra_was_logged_in = OIDplus::authUtils()->isRaLoggedIn($old_email);
  61.  
  62.                                 $ra = new OIDplusRA($old_email);
  63.  
  64.                                 // Change RA email
  65.                                 $ra->change_email($new_email);
  66.                                 OIDplus::logger()->log("[WARN]RA($old_email)!+[INFO]RA($new_email)!+[OK]A!", "Admin changed email address '$old_email' to '$new_email'");
  67.  
  68.                                 // Change objects
  69.                                 $res = OIDplus::db()->query("select id from ###objects where ra_email = ?", array($old_email));
  70.                                 while ($row = $res->fetch_array()) {
  71.                                         OIDplus::logger()->log("[INFO]OID(".$row['id'].")+SUPOID(".$row['id'].")", "Admin changed email address of RA '$old_email' (owner of ".$row['id'].") to '$new_email'");
  72.                                 }
  73.                                 OIDplus::db()->query("update ###objects set ra_email = ? where ra_email = ?", array($new_email, $old_email));
  74.                                 OIDplusObject::resetObjectInformationCache();
  75.  
  76.                                 // Re-login
  77.                                 if ($ra_was_logged_in) {
  78.                                         OIDplus::authUtils()->raLogout($old_email);
  79.                                         OIDplus::authUtils()->raLogin($new_email);
  80.                                 }
  81.  
  82.                                 return array("status" => 0);
  83.                         } else {
  84.                                 OIDplus::logger()->log("[INFO]RA($old_email)!+RA($new_email)!", "Requested email address change from '$old_email' to '$new_email'");
  85.  
  86.                                 $timestamp = time();
  87.                                 $activate_url = OIDplus::webpath(null,OIDplus::PATH_ABSOLUTE_CANONICAL) . '?goto='.urlencode('oidplus:activate_new_ra_email$'.$old_email.'$'.$new_email.'$'.$timestamp.'$'.OIDplus::authUtils()->makeAuthKey('activate_new_ra_email;'.$old_email.';'.$new_email.';'.$timestamp));
  88.  
  89.                                 $message = file_get_contents(__DIR__ . '/change_request_email.tpl');
  90.                                 $message = str_replace('{{SYSTEM_URL}}', OIDplus::webpath(null,OIDplus::PATH_ABSOLUTE_CANONICAL), $message);
  91.                                 $message = str_replace('{{SYSTEM_TITLE}}', OIDplus::config()->getValue('system_title'), $message);
  92.                                 $message = str_replace('{{ADMIN_EMAIL}}', OIDplus::config()->getValue('admin_email'), $message);
  93.                                 $message = str_replace('{{OLD_EMAIL}}', $old_email, $message);
  94.                                 $message = str_replace('{{NEW_EMAIL}}', $new_email, $message);
  95.                                 $message = str_replace('{{ACTIVATE_URL}}', $activate_url, $message);
  96.                                 OIDplus::mailUtils()->sendMail($new_email, OIDplus::config()->getValue('system_title').' - Change email request', $message);
  97.  
  98.                                 return array("status" => 0);
  99.                         }
  100.                 }
  101.  
  102.                 else if ($actionID == 'activate_new_ra_email') {
  103.                         if (!OIDplus::config()->getValue('allow_ra_email_change')) {
  104.                                 throw new OIDplusException(_L('This functionality has been disabled by the administrator.'));
  105.                         }
  106.  
  107.                         _CheckParamExists($params, 'old_email');
  108.                         _CheckParamExists($params, 'new_email');
  109.                         _CheckParamExists($params, 'password');
  110.                         _CheckParamExists($params, 'auth');
  111.                         _CheckParamExists($params, 'timestamp');
  112.  
  113.                         $old_email = $params['old_email'];
  114.                         $new_email = $params['new_email'];
  115.                         $password = $params['password'];
  116.  
  117.                         $auth = $params['auth'];
  118.                         $timestamp = $params['timestamp'];
  119.  
  120.                         $ra_was_logged_in = OIDplus::authUtils()->isRaLoggedIn($old_email);
  121.  
  122.                         $ra = new OIDplusRA($old_email);
  123.                         if ($ra->isPasswordLess() && !OIDplus::authUtils()->isAdminLoggedIn()) {
  124.                                 throw new OIDplusException(_L('E-Mail-Address cannot be changed because this user does not have a password'));
  125.                         }
  126.  
  127.                         if (!OIDplus::authUtils()->validateAuthKey('activate_new_ra_email;'.$old_email.';'.$new_email.';'.$timestamp, $auth)) {
  128.                                 throw new OIDplusException(_L('Invalid auth key'));
  129.                         }
  130.  
  131.                         if ((OIDplus::config()->getValue('max_ra_email_change_time') > 0) && (time()-$timestamp > OIDplus::config()->maxEmailChangeTime())) {
  132.                                 throw new OIDplusException(_L('Activation link expired!'));
  133.                         }
  134.  
  135.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($old_email));
  136.                         if (!$res->any()) {
  137.                                 throw new OIDplusException(_L('eMail address does not exist anymore. It was probably already changed.'));
  138.                         }
  139.  
  140.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($new_email));
  141.                         if ($res->any()) {
  142.                                 throw new OIDplusException(_L('eMail address is already used by another RA. To merge accounts, please contact the superior RA of your objects and request an owner change of your objects.'));
  143.                         }
  144.  
  145.                         $ra = new OIDplusRA($old_email);
  146.                         if (!$ra->isPasswordLess()) {
  147.                                 if (!$ra->checkPassword($password)) {
  148.                                         throw new OIDplusException(_L('Wrong password'));
  149.                                 }
  150.                         }
  151.  
  152.                         // Change address of RA
  153.                         $ra->change_email($new_email);
  154.                         OIDplus::logger()->log("[OK]RA($new_email)!+RA($old_email)!", "RA '$old_email' has changed their email address to '$new_email'");
  155.  
  156.                         // Change objects
  157.                         $res = OIDplus::db()->query("select id from ###objects where ra_email = ?", array($old_email));
  158.                         while ($row = $res->fetch_array()) {
  159.                                 OIDplus::logger()->log("[INFO]OID(".$row['id'].")+SUPOID(".$row['id'].")", "RA '$old_email' (owner of ".$row['id'].") has changed their email address to '$new_email'");
  160.                         }
  161.                         OIDplus::db()->query("update ###objects set ra_email = ? where ra_email = ?", array($new_email, $old_email));
  162.                         OIDplusObject::resetObjectInformationCache();
  163.  
  164.                         // Re-login
  165.                         if ($ra_was_logged_in) {
  166.                                 OIDplus::authUtils()->raLogout($old_email);
  167.                                 OIDplus::authUtils()->raLogin($new_email);
  168.                         }
  169.  
  170.                         // Send email
  171.                         $message = file_get_contents(__DIR__ . '/email_change_confirmation.tpl');
  172.                         $message = str_replace('{{SYSTEM_URL}}', OIDplus::webpath(null,OIDplus::PATH_ABSOLUTE_CANONICAL), $message);
  173.                         $message = str_replace('{{SYSTEM_TITLE}}', OIDplus::config()->getValue('system_title'), $message);
  174.                         $message = str_replace('{{ADMIN_EMAIL}}', OIDplus::config()->getValue('admin_email'), $message);
  175.                         $message = str_replace('{{OLD_EMAIL}}', $old_email, $message);
  176.                         $message = str_replace('{{NEW_EMAIL}}', $new_email, $message);
  177.                         OIDplus::mailUtils()->sendMail($old_email, OIDplus::config()->getValue('system_title').' - eMail address changed', $message);
  178.  
  179.                         return array("status" => 0);
  180.                 } else {
  181.                         throw new OIDplusException(_L('Unknown action ID'));
  182.                 }
  183.         }
  184.  
  185.         public function init($html=true) {
  186.                 OIDplus::config()->prepareConfigKey('max_ra_email_change_time', 'Max RA email change time in seconds (0 = infinite)', '0', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
  187.                         if (!is_numeric($value) || ($value < 0)) {
  188.                                 throw new OIDplusException(_L('Please enter a valid value.'));
  189.                         }
  190.                 });
  191.                 OIDplus::config()->prepareConfigKey('allow_ra_email_change', 'Allow that RAs change their email address (0/1)', '1', OIDplusConfig::PROTECTION_EDITABLE, function($value) {
  192.                         if (($value != '0') && ($value != '1')) {
  193.                                 throw new OIDplusException(_L('Please enter a valid value (0=no, 1=yes).'));
  194.                         }
  195.                 });
  196.         }
  197.  
  198.         public function gui($id, &$out, &$handled) {
  199.                 if (explode('$',$id)[0] == 'oidplus:change_ra_email') {
  200.                         $handled = true;
  201.  
  202.                         $ra_email = explode('$',$id)[1];
  203.  
  204.                         $out['title'] = _L('Change RA email');
  205.                         $out['icon'] = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png' : '';
  206.  
  207.                         if (!OIDplus::authUtils()->isRaLoggedIn($ra_email) && !OIDplus::authUtils()->isAdminLoggedIn()) {
  208.                                 $out['icon'] = 'img/error.png';
  209.                                 $out['text'] = '<p>'._L('You need to <a %1>log in</a> as the requested RA %2 or as admin.',OIDplus::gui()->link('oidplus:login$ra$'.$ra_email),'<b>'.htmlentities($ra_email).'</b>').'</p>';
  210.                                 return;
  211.                         }
  212.  
  213.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($ra_email));
  214.                         if (!$res->any()) {
  215.                                 $out['icon'] = 'img/error.png';
  216.                                 $out['text'] = _L('RA "%1" does not exist','<b>'.htmlentities($ra_email).'</b>');
  217.                                 return;
  218.                         }
  219.  
  220.                         if (!OIDplus::config()->getValue('allow_ra_email_change') && !OIDplus::authUtils()->isAdminLoggedIn()) {
  221.                                 $out['icon'] = 'img/error.png';
  222.                                 $out['text'] = '<p>'._L('This functionality has been disabled by the administrator.').'</p>';
  223.                                 return;
  224.                         }
  225.  
  226.                         if (OIDplus::authUtils()->isAdminLoggedIn()) {
  227.                                 $ra = new OIDplusRA($ra_email);
  228.                                 if ($ra->isPasswordLess()) {
  229.                                         $out['text'] .= '<p>'._L('Attention: This user does not have a password because they log in using LDAP or Google OAuth etc.').'</p>';
  230.                                         $out['text'] .= '<p>'._L('If you change the email address, the user cannot log in anymore, because the LDAP/OAuth plugin identifies the user via email address, not OpenID.').'</p>';
  231.                                         $out['text'] .= '<p>'._L('If you want to change the email address of the user, please <a %1>define a password</a> for them, so that they can use the regular login method using their new email address.', OIDplus::gui()->link('oidplus:change_ra_password$'.$ra_email)).'</p>';
  232.                                 }
  233.  
  234.                                 $out['text'] .= '<form id="changeRaEmailForm" action="javascript:void(0);" action="javascript:void(0);" onsubmit="return OIDplusPageRaChangeEMail.changeRaEmailFormOnSubmit(true);">';
  235.                                 $out['text'] .= '<input type="hidden" id="old_email" value="'.htmlentities($ra_email).'"/><br>';
  236.                                 $out['text'] .= '<div><label class="padding_label">'._L('Old address').':</label><b>'.htmlentities($ra_email).'</b></div>';
  237.                                 $out['text'] .= '<div><label class="padding_label">'._L('New address').':</label><input type="text" id="new_email" value=""/></div>';
  238.                                 $out['text'] .= '<br><input type="submit" value="'._L('Change password').'"> '._L('(admin does not require email verification)').'</form>';
  239.                         } else {
  240.                                 $ra = new OIDplusRA($ra_email);
  241.                                 if ($ra->isPasswordLess()) {
  242.                                         $out['icon'] = 'img/error.png';
  243.                                         $out['text'] .= '<p>'._L('Attention: You are logged in without password (via LDAP or Google OAuth etc.).').'</p>';
  244.                                         $out['text'] .= '<p>'._L('Therefore, you cannot change your email address, otherwise you would love access to your account!').'</p>';
  245.                                         $out['text'] .= '<p>'._L('If you want to change your email address, then please <a %1>setup a password</a> first, and then use the regular login method to log in using your new email address.', OIDplus::gui()->link('oidplus:change_ra_password$'.$ra_email)).'</p>';
  246.                                         return;
  247.                                 }
  248.  
  249.                                 $out['text'] .= '<form id="changeRaEmailForm" action="javascript:void(0);" action="javascript:void(0);" onsubmit="return OIDplusPageRaChangeEMail.changeRaEmailFormOnSubmit(false);">';
  250.                                 $out['text'] .= '<input type="hidden" id="old_email" value="'.htmlentities($ra_email).'"/><br>';
  251.                                 $out['text'] .= '<div><label class="padding_label">'._L('Old address').':</label><b>'.htmlentities($ra_email).'</b></div>';
  252.                                 $out['text'] .= '<div><label class="padding_label">'._L('New address').':</label><input type="text" id="new_email" value=""/></div>';
  253.                                 $out['text'] .= '<br><input type="submit" value="'._L('Send new activation email').'"></form>';
  254.                         }
  255.                 } else if (explode('$',$id)[0] == 'oidplus:activate_new_ra_email') {
  256.                         $handled = true;
  257.  
  258.                         $old_email = explode('$',$id)[1];
  259.                         $new_email = explode('$',$id)[2];
  260.                         $timestamp = explode('$',$id)[3];
  261.                         $auth = explode('$',$id)[4];
  262.  
  263.                         $out['title'] = _L('Perform email address change');
  264.                         $out['icon'] = file_exists(__DIR__.'/img/main_icon.png') ? OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon.png' : '';
  265.  
  266.                         if (!OIDplus::config()->getValue('allow_ra_email_change') && !OIDplus::authUtils()->isAdminLoggedIn()) {
  267.                                 $out['icon'] = 'img/error.png';
  268.                                 $out['text'] = '<p>'._L('This functionality has been disabled by the administrator.').'</p>';
  269.                                 return;
  270.                         }
  271.  
  272.                         $ra = new OIDplusRA($old_email);
  273.                         if ($ra->isPasswordLess() && !OIDplus::authUtils()->isAdminLoggedIn()) {
  274.                                 $out['icon'] = 'img/error.png';
  275.                                 $out['text'] = '<p>'._L('E-Mail-Address cannot be changed because this user does not have a password').'</p>';
  276.                                 return;
  277.                         }
  278.  
  279.                         $res = OIDplus::db()->query("select * from ###ra where email = ?", array($old_email));
  280.                         if (!$res->any()) {
  281.                                 $out['icon'] = 'img/error.png';
  282.                                 $out['text'] = _L('eMail address does not exist anymore. It was probably already changed.');
  283.                         } else {
  284.                                 $res = OIDplus::db()->query("select * from ###ra where email = ?", array($new_email));
  285.                                 if ($res->any()) {
  286.                                         $out['icon'] = 'img/error.png';
  287.                                         $out['text'] = _L('eMail address is already used by another RA. To merge accounts, please contact the superior RA of your objects and request an owner change of your objects.');
  288.                                 } else {
  289.                                         if (!OIDplus::authUtils()->validateAuthKey('activate_new_ra_email;'.$old_email.';'.$new_email.';'.$timestamp, $auth)) {
  290.                                                 $out['icon'] = 'img/error.png';
  291.                                                 $out['text'] = _L('Invalid authorization. Is the URL OK?');
  292.                                         } else {
  293.                                                 $out['text'] = '<p>'._L('Old eMail-Address').': <b>'.$old_email.'</b></p>
  294.                                                 <p>'._L('New eMail-Address').': <b>'.$new_email.'</b></p>
  295.  
  296.                                                  <form id="activateNewRaEmailForm" action="javascript:void(0);" onsubmit="return OIDplusPageRaChangeEMail.activateNewRaEmailFormOnSubmit();">
  297.                                             <input type="hidden" id="old_email" value="'.htmlentities($old_email).'"/>
  298.                                             <input type="hidden" id="new_email" value="'.htmlentities($new_email).'"/>
  299.                                             <input type="hidden" id="timestamp" value="'.htmlentities($timestamp).'"/>
  300.                                             <input type="hidden" id="auth" value="'.htmlentities($auth).'"/>
  301.  
  302.                                             <div><label class="padding_label">'._L('Please verify your password').':</label><input type="password" id="password" value=""/></div>
  303.                                             <br><input type="submit" value="'._L('Change email address').'">
  304.                                           </form>';
  305.                                         }
  306.                                 }
  307.                         }
  308.                 }
  309.         }
  310.  
  311.         public function tree(&$json, $ra_email=null, $nonjs=false, $req_goto='') {
  312.                 if (!$ra_email) return false;
  313.                 if (!OIDplus::authUtils()->isRaLoggedIn($ra_email) && !OIDplus::authUtils()->isAdminLoggedIn()) return false;
  314.  
  315.                 if (file_exists(__DIR__.'/img/main_icon16.png')) {
  316.                         $tree_icon = OIDplus::webpath(__DIR__,OIDplus::PATH_RELATIVE).'img/main_icon16.png';
  317.                 } else {
  318.                         $tree_icon = null; // default icon (folder)
  319.                 }
  320.  
  321.                 $json[] = array(
  322.                         'id' => 'oidplus:change_ra_email$'.$ra_email,
  323.                         'icon' => $tree_icon,
  324.                         'text' => _L('Change email address')
  325.                 );
  326.  
  327.                 return true;
  328.         }
  329.  
  330.         public function tree_search($request) {
  331.                 return false;
  332.         }
  333. }
  334.