3 * @file mod/removeme.php
7 use Friendica\Core\Config;
8 use Friendica\Core\L10n;
9 use Friendica\Core\System;
10 use Friendica\Database\DBA;
11 use Friendica\Model\User;
13 require_once 'include/enotify.php';
15 function removeme_post(App $a)
21 if (x($_SESSION, 'submanage') && intval($_SESSION['submanage'])) {
25 if ((!x($_POST, 'qxz_password')) || (!strlen(trim($_POST['qxz_password'])))) {
29 if ((!x($_POST, 'verify')) || (!strlen(trim($_POST['verify'])))) {
33 if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
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', 'username'], ['email' => $mail]);
42 if (!DBA::isResult($admin)) {
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 'to_name' => $admin['username'],
52 'uid' => $admin['uid'],
53 'language' => $admin['language'] ? $admin['language'] : 'en',
54 'show_in_notification_page' => false
58 if (User::authenticate($a->user, trim($_POST['qxz_password']))) {
59 User::remove($a->user['uid']);
64 function removeme_content(App $a)
67 goaway(System::baseUrl());
70 $hash = random_string();
72 require_once("mod/settings.php");
75 $_SESSION['remove_account_verify'] = $hash;
77 $tpl = get_markup_template('removeme.tpl');
78 $o = replace_macros($tpl, [
79 '$basedir' => System::baseUrl(),
81 '$title' => L10n::t('Remove My Account'),
82 '$desc' => L10n::t('This will completely remove your account. Once this has been done it is not recoverable.'),
83 '$passwd' => L10n::t('Please enter your password for verification:'),
84 '$submit' => L10n::t('Remove My Account')