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