2011-02-03 12:58:47 +01:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2017-08-26 08:04:21 +02:00
|
|
|
use Friendica\Core\System;
|
2017-11-19 22:55:28 +01:00
|
|
|
use Friendica\Model\User;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2017-11-26 20:18:45 +01:00
|
|
|
function removeme_post(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2011-02-03 12:58:47 +01:00
|
|
|
return;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2011-02-03 12:58:47 +01:00
|
|
|
|
2017-11-26 20:18:45 +01:00
|
|
|
if (x($_SESSION, 'submanage') && intval($_SESSION['submanage'])) {
|
2012-01-27 05:08:02 +01:00
|
|
|
return;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2012-01-27 05:08:02 +01:00
|
|
|
|
2017-11-26 20:18:45 +01:00
|
|
|
if ((!x($_POST, 'qxz_password')) || (!strlen(trim($_POST['qxz_password'])))) {
|
2011-02-03 12:58:47 +01:00
|
|
|
return;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2011-02-03 12:58:47 +01:00
|
|
|
|
2017-11-26 20:18:45 +01:00
|
|
|
if ((!x($_POST, 'verify')) || (!strlen(trim($_POST['verify'])))) {
|
2011-02-03 12:58:47 +01:00
|
|
|
return;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2011-02-03 12:58:47 +01:00
|
|
|
|
2016-12-20 10:35:28 +01:00
|
|
|
if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
|
2011-02-03 12:58:47 +01:00
|
|
|
return;
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2011-02-03 12:58:47 +01:00
|
|
|
|
2017-11-26 20:46:08 +01:00
|
|
|
if (User::authenticate($a->user['uid'], trim($_POST['qxz_password']))) {
|
2017-11-19 23:03:39 +01:00
|
|
|
User::remove($a->user['uid']);
|
2011-02-03 12:58:47 +01:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-26 20:18:45 +01:00
|
|
|
function removeme_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2017-08-26 09:32:10 +02:00
|
|
|
goaway(System::baseUrl());
|
2016-12-20 10:35:28 +01:00
|
|
|
}
|
2011-02-03 12:58:47 +01:00
|
|
|
|
|
|
|
$hash = random_string();
|
|
|
|
|
2016-12-20 10:35:28 +01:00
|
|
|
require_once("mod/settings.php");
|
|
|
|
settings_init($a);
|
2014-04-29 22:34:48 +02:00
|
|
|
|
2011-02-03 12:58:47 +01:00
|
|
|
$_SESSION['remove_account_verify'] = $hash;
|
|
|
|
|
2011-05-11 13:37:13 +02:00
|
|
|
$tpl = get_markup_template('removeme.tpl');
|
2011-02-03 12:58:47 +01:00
|
|
|
$o .= replace_macros($tpl, array(
|
2017-08-26 09:32:10 +02:00
|
|
|
'$basedir' => System::baseUrl(),
|
2011-02-03 12:58:47 +01:00
|
|
|
'$hash' => $hash,
|
|
|
|
'$title' => t('Remove My Account'),
|
|
|
|
'$desc' => t('This will completely remove your account. Once this has been done it is not recoverable.'),
|
|
|
|
'$passwd' => t('Please enter your password for verification:'),
|
|
|
|
'$submit' => t('Remove My Account')
|
|
|
|
));
|
|
|
|
|
2014-04-29 22:34:48 +02:00
|
|
|
return $o;
|
|
|
|
}
|