2011-02-03 06:58:47 -05:00
|
|
|
<?php
|
2018-01-22 09:16:25 -05:00
|
|
|
/**
|
|
|
|
* @file mod/removeme.php
|
|
|
|
*/
|
2018-07-07 17:46:30 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-07-07 17:46:30 -04:00
|
|
|
use Friendica\Core\Config;
|
2018-01-22 09:16:25 -05:00
|
|
|
use Friendica\Core\L10n;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2018-07-07 17:46:30 -04:00
|
|
|
use Friendica\Model\User;
|
2018-11-10 19:14:50 -05:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-11-26 14:18:45 -05:00
|
|
|
function removeme_post(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($_SESSION['submanage'])) {
|
2012-01-26 23:08:02 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2012-01-26 23:08:02 -05:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (empty($_POST['qxz_password'])) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (empty($_POST['verify'])) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2016-12-20 04:35:28 -05:00
|
|
|
if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-04-15 05:39:05 -04:00
|
|
|
// send notification to admins so that they can clean um the backups
|
|
|
|
// send email to admins
|
2018-07-07 17:46:30 -04:00
|
|
|
$admin_mails = explode(",", str_replace(" ", "", Config::get('config', 'admin_email')));
|
2018-05-19 01:59:43 -04:00
|
|
|
foreach ($admin_mails as $mail) {
|
2018-08-18 02:20:50 -04:00
|
|
|
$admin = DBA::selectFirst('user', ['uid', 'language', 'email', 'username'], ['email' => $mail]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($admin)) {
|
2018-05-18 23:38:43 -04:00
|
|
|
continue;
|
|
|
|
}
|
2018-04-15 05:39:05 -04: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 02:20:50 -04:00
|
|
|
'to_name' => $admin['username'],
|
2018-04-15 05:39:05 -04:00
|
|
|
'uid' => $admin['uid'],
|
|
|
|
'language' => $admin['language'] ? $admin['language'] : 'en',
|
|
|
|
'show_in_notification_page' => false
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2018-11-24 20:56:38 -05:00
|
|
|
if (User::getIdFromPasswordAuthentication($a->user, trim($_POST['qxz_password']))) {
|
2017-11-19 17:03:39 -05:00
|
|
|
User::remove($a->user['uid']);
|
2018-11-24 20:58:41 -05:00
|
|
|
|
|
|
|
unset($_SESSION['authenticated']);
|
|
|
|
unset($_SESSION['uid']);
|
|
|
|
$a->internalRedirect();
|
2011-02-03 06:58:47 -05:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-26 14:18:45 -05:00
|
|
|
function removeme_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2018-10-19 14:11:27 -04:00
|
|
|
$a->internalRedirect();
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-11-08 08:45:46 -05:00
|
|
|
$hash = Strings::getRandomHex();
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2016-12-20 04:35:28 -05:00
|
|
|
require_once("mod/settings.php");
|
|
|
|
settings_init($a);
|
2014-04-29 16:34:48 -04:00
|
|
|
|
2011-02-03 06:58:47 -05:00
|
|
|
$_SESSION['remove_account_verify'] = $hash;
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('removeme.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2018-10-13 14:02:04 -04:00
|
|
|
'$basedir' => $a->getBaseURL(),
|
2011-02-03 06:58:47 -05:00
|
|
|
'$hash' => $hash,
|
2018-01-22 09:16:25 -05: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 08:05:12 -05:00
|
|
|
]);
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2014-04-29 16:34:48 -04:00
|
|
|
return $o;
|
|
|
|
}
|