]> git.mxchange.org Git - friendica.git/blob - mod/removeme.php
Merge pull request #3970 from MrPetovan/task/3942-add-user-authenticate
[friendica.git] / mod / removeme.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\System;
5 use Friendica\Model\User;
6
7 function removeme_post(App $a)
8 {
9         if (!local_user()) {
10                 return;
11         }
12
13         if (x($_SESSION, 'submanage') && intval($_SESSION['submanage'])) {
14                 return;
15         }
16
17         if ((!x($_POST, 'qxz_password')) || (!strlen(trim($_POST['qxz_password'])))) {
18                 return;
19         }
20
21         if ((!x($_POST, 'verify')) || (!strlen(trim($_POST['verify'])))) {
22                 return;
23         }
24
25         if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
26                 return;
27         }
28
29         if (User::authenticate($a->user['uid'], trim($_POST['qxz_password']))) {
30                 User::remove($a->user['uid']);
31                 // NOTREACHED
32         }
33 }
34
35 function removeme_content(App $a)
36 {
37         if (!local_user()) {
38                 goaway(System::baseUrl());
39         }
40
41         $hash = random_string();
42
43         require_once("mod/settings.php");
44         settings_init($a);
45
46         $_SESSION['remove_account_verify'] = $hash;
47
48         $tpl = get_markup_template('removeme.tpl');
49         $o .= replace_macros($tpl, array(
50                 '$basedir' => System::baseUrl(),
51                 '$hash' => $hash,
52                 '$title' => t('Remove My Account'),
53                 '$desc' => t('This will completely remove your account. Once this has been done it is not recoverable.'),
54                 '$passwd' => t('Please enter your password for verification:'),
55                 '$submit' => t('Remove My Account')
56         ));
57
58         return $o;
59 }