]> git.mxchange.org Git - friendica.git/blob - mod/removeme.php
Revert using Config class in dba
[friendica.git] / mod / removeme.php
1 <?php
2 /**
3  * @file mod/removeme.php
4  */
5
6 use Friendica\App;
7 use Friendica\Core\Config;
8 use Friendica\Core\L10n;
9 use Friendica\Core\System;
10 use Friendica\Database\DBM;
11 use Friendica\Model\User;
12
13 require_once 'include/enotify.php';
14
15 function removeme_post(App $a)
16 {
17         if (!local_user()) {
18                 return;
19         }
20
21         if (x($_SESSION, 'submanage') && intval($_SESSION['submanage'])) {
22                 return;
23         }
24
25         if ((!x($_POST, 'qxz_password')) || (!strlen(trim($_POST['qxz_password'])))) {
26                 return;
27         }
28
29         if ((!x($_POST, 'verify')) || (!strlen(trim($_POST['verify'])))) {
30                 return;
31         }
32
33         if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
34                 return;
35         }
36
37         // send notification to admins so that they can clean um the backups
38         // send email to admins
39         $admin_mails = explode(",", str_replace(" ", "", Config::get('config', 'admin_email')));
40         foreach ($admin_mails as $mail) {
41                 $admin = dba::selectFirst('user', ['uid', 'language', 'email'], ['email' => $mail]);
42                 if (!DBM::is_result($admin)) {
43                         continue;
44                 }
45                 notification([
46                         'type'         => SYSTEM_EMAIL,
47                         'subject'      => L10n::t('[Friendica System Notify]') . ' ' . L10n::t('User deleted their account'),
48                         'preamble'     => L10n::t('On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'),
49                         'body'         => L10n::t('The user id is %d', local_user()),
50                         'to_email'     => $admin['email'],
51                         'uid'          => $admin['uid'],
52                         'language'     => $admin['language'] ? $admin['language'] : 'en',
53                         'show_in_notification_page' => false
54                 ]);
55         }
56
57         if (User::authenticate($a->user, trim($_POST['qxz_password']))) {
58                 User::remove($a->user['uid']);
59                 // NOTREACHED
60         }
61 }
62
63 function removeme_content(App $a)
64 {
65         if (!local_user()) {
66                 goaway(System::baseUrl());
67         }
68
69         $hash = random_string();
70
71         require_once("mod/settings.php");
72         settings_init($a);
73
74         $_SESSION['remove_account_verify'] = $hash;
75
76         $tpl = get_markup_template('removeme.tpl');
77         $o = replace_macros($tpl, [
78                 '$basedir' => System::baseUrl(),
79                 '$hash' => $hash,
80                 '$title' => L10n::t('Remove My Account'),
81                 '$desc' => L10n::t('This will completely remove your account. Once this has been done it is not recoverable.'),
82                 '$passwd' => L10n::t('Please enter your password for verification:'),
83                 '$submit' => L10n::t('Remove My Account')
84         ]);
85
86         return $o;
87 }