]> git.mxchange.org Git - friendica.git/blob - mod/removeme.php
Fix formatting
[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         $encrypted = hash('whirlpool',trim($_POST['qxz_password']));
30
31         if ((strlen($a->user['password'])) && ($encrypted === $a->user['password'])) {
32                 User::remove($a->user['uid']);
33                 // NOTREACHED
34         }
35 }
36
37 function removeme_content(App $a)
38 {
39         if (!local_user()) {
40                 goaway(System::baseUrl());
41         }
42
43         $hash = random_string();
44
45         require_once("mod/settings.php");
46         settings_init($a);
47
48         $_SESSION['remove_account_verify'] = $hash;
49
50         $tpl = get_markup_template('removeme.tpl');
51         $o .= replace_macros($tpl, array(
52                 '$basedir' => System::baseUrl(),
53                 '$hash' => $hash,
54                 '$title' => t('Remove My Account'),
55                 '$desc' => t('This will completely remove your account. Once this has been done it is not recoverable.'),
56                 '$passwd' => t('Please enter your password for verification:'),
57                 '$submit' => t('Remove My Account')
58         ));
59
60         return $o;
61 }