Subversion Repositories oidplus

Rev

Rev 559 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

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