2011-02-03 11:58:47 +00:00
|
|
|
<?php
|
2018-01-22 14:16:25 +00:00
|
|
|
/**
|
|
|
|
* @file mod/removeme.php
|
|
|
|
*/
|
2018-07-07 21:46:30 +00:00
|
|
|
|
2017-04-30 04:07:00 +00:00
|
|
|
use Friendica\App;
|
2018-07-07 21:46:30 +00:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 14:16:25 +00:00
|
|
|
use Friendica\Core\L10n;
|
2017-08-26 06:04:21 +00:00
|
|
|
use Friendica\Core\System;
|
2018-07-20 12:19:26 +00:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-07 21:46:30 +00:00
|
|
|
use Friendica\Model\User;
|
2017-04-30 04:07:00 +00:00
|
|
|
|
2018-04-15 09:39:05 +00:00
|
|
|
require_once 'include/enotify.php';
|
|
|
|
|
2017-11-26 19:18:45 +00:00
|
|
|
function removeme_post(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2011-02-03 11:58:47 +00:00
|
|
|
return;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2011-02-03 11:58:47 +00:00
|
|
|
|
2017-11-26 19:18:45 +00:00
|
|
|
if (x($_SESSION, 'submanage') && intval($_SESSION['submanage'])) {
|
2012-01-27 04:08:02 +00:00
|
|
|
return;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2012-01-27 04:08:02 +00:00
|
|
|
|
2017-11-26 19:18:45 +00:00
|
|
|
if ((!x($_POST, 'qxz_password')) || (!strlen(trim($_POST['qxz_password'])))) {
|
2011-02-03 11:58:47 +00:00
|
|
|
return;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2011-02-03 11:58:47 +00:00
|
|
|
|
2017-11-26 19:18:45 +00:00
|
|
|
if ((!x($_POST, 'verify')) || (!strlen(trim($_POST['verify'])))) {
|
2011-02-03 11:58:47 +00:00
|
|
|
return;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2011-02-03 11:58:47 +00:00
|
|
|
|
2016-12-20 09:35:28 +00:00
|
|
|
if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
|
2011-02-03 11:58:47 +00:00
|
|
|
return;
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2011-02-03 11:58:47 +00:00
|
|
|
|
2018-04-15 09:39:05 +00:00
|
|
|
// send notification to admins so that they can clean um the backups
|
|
|
|
// send email to admins
|
2018-07-07 21:46:30 +00:00
|
|
|
$admin_mails = explode(",", str_replace(" ", "", Config::get('config', 'admin_email')));
|
2018-05-19 05:59:43 +00:00
|
|
|
foreach ($admin_mails as $mail) {
|
2018-08-18 06:20:50 +00:00
|
|
|
$admin = DBA::selectFirst('user', ['uid', 'language', 'email', 'username'], ['email' => $mail]);
|
2018-07-21 12:46:04 +00:00
|
|
|
if (!DBA::isResult($admin)) {
|
2018-05-19 03:38:43 +00:00
|
|
|
continue;
|
|
|
|
}
|
2018-04-15 09:39:05 +00:00
|
|
|
notification([
|
|
|
|
'type' => SYSTEM_EMAIL,
|
|
|
|
'subject' => L10n::t('[Friendica System Notify]') . ' ' . L10n::t('User deleted their account'),
|
|
|
|
'preamble' => L10n::t('On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'),
|
|
|
|
'body' => L10n::t('The user id is %d', local_user()),
|
|
|
|
'to_email' => $admin['email'],
|
2018-08-18 06:20:50 +00:00
|
|
|
'to_name' => $admin['username'],
|
2018-04-15 09:39:05 +00:00
|
|
|
'uid' => $admin['uid'],
|
|
|
|
'language' => $admin['language'] ? $admin['language'] : 'en',
|
|
|
|
'show_in_notification_page' => false
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2018-01-24 16:41:23 +00:00
|
|
|
if (User::authenticate($a->user, trim($_POST['qxz_password']))) {
|
2017-11-19 22:03:39 +00:00
|
|
|
User::remove($a->user['uid']);
|
2011-02-03 11:58:47 +00:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-26 19:18:45 +00:00
|
|
|
function removeme_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2017-08-26 07:32:10 +00:00
|
|
|
goaway(System::baseUrl());
|
2016-12-20 09:35:28 +00:00
|
|
|
}
|
2011-02-03 11:58:47 +00:00
|
|
|
|
|
|
|
$hash = random_string();
|
|
|
|
|
2016-12-20 09:35:28 +00:00
|
|
|
require_once("mod/settings.php");
|
|
|
|
settings_init($a);
|
2014-04-29 20:34:48 +00:00
|
|
|
|
2011-02-03 11:58:47 +00:00
|
|
|
$_SESSION['remove_account_verify'] = $hash;
|
|
|
|
|
2011-05-11 11:37:13 +00:00
|
|
|
$tpl = get_markup_template('removeme.tpl');
|
2018-02-12 02:25:09 +00:00
|
|
|
$o = replace_macros($tpl, [
|
2017-08-26 07:32:10 +00:00
|
|
|
'$basedir' => System::baseUrl(),
|
2011-02-03 11:58:47 +00:00
|
|
|
'$hash' => $hash,
|
2018-01-22 14:16:25 +00:00
|
|
|
'$title' => L10n::t('Remove My Account'),
|
|
|
|
'$desc' => L10n::t('This will completely remove your account. Once this has been done it is not recoverable.'),
|
|
|
|
'$passwd' => L10n::t('Please enter your password for verification:'),
|
|
|
|
'$submit' => L10n::t('Remove My Account')
|
2018-01-15 13:05:12 +00:00
|
|
|
]);
|
2011-02-03 11:58:47 +00:00
|
|
|
|
2014-04-29 20:34:48 +00:00
|
|
|
return $o;
|
|
|
|
}
|