3 * @file mod/removeme.php
6 use Friendica\Core\L10n;
7 use Friendica\Core\System;
8 use Friendica\Model\User;
9 use Friendica\Database\DBM;
11 require_once 'include/enotify.php';
13 function removeme_post(App $a)
19 if (x($_SESSION, 'submanage') && intval($_SESSION['submanage'])) {
23 if ((!x($_POST, 'qxz_password')) || (!strlen(trim($_POST['qxz_password'])))) {
27 if ((!x($_POST, 'verify')) || (!strlen(trim($_POST['verify'])))) {
31 if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
35 // send notification to admins so that they can clean um the backups
36 // send email to admins
37 $admin_mails = explode(",", str_replace(" ", "", $a->config['admin_email']));
38 foreach ($admin_mails as $mail) {
39 $admin = dba::selectFirst('user', ['uid', 'language', 'email'], ['email' => $mail]);
40 if (!DBM::is_result($admin)) {
44 'type' => SYSTEM_EMAIL,
45 'subject' => L10n::t('[Friendica System Notify]') . ' ' . L10n::t('User deleted their account'),
46 'preamble' => L10n::t('On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'),
47 'body' => L10n::t('The user id is %d', local_user()),
48 'to_email' => $admin['email'],
49 'uid' => $admin['uid'],
50 'language' => $admin['language'] ? $admin['language'] : 'en',
51 'show_in_notification_page' => false
55 if (User::authenticate($a->user, trim($_POST['qxz_password']))) {
56 User::remove($a->user['uid']);
61 function removeme_content(App $a)
64 goaway(System::baseUrl());
67 $hash = random_string();
69 require_once("mod/settings.php");
72 $_SESSION['remove_account_verify'] = $hash;
74 $tpl = get_markup_template('removeme.tpl');
75 $o = replace_macros($tpl, [
76 '$basedir' => System::baseUrl(),
78 '$title' => L10n::t('Remove My Account'),
79 '$desc' => L10n::t('This will completely remove your account. Once this has been done it is not recoverable.'),
80 '$passwd' => L10n::t('Please enter your password for verification:'),
81 '$submit' => L10n::t('Remove My Account')