2011-02-03 11:58:47 +00:00
|
|
|
<?php
|
|
|
|
|
2017-01-09 12:14:55 +00:00
|
|
|
function removeme_post(App $a) {
|
2011-02-03 11:58:47 +00:00
|
|
|
|
2016-12-20 09:35:28 +00:00
|
|
|
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
|
|
|
|
2016-12-20 09:35:28 +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
|
|
|
|
2016-12-20 09:35:28 +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
|
|
|
|
2016-12-20 09:35:28 +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
|
|
|
|
|
|
|
$encrypted = hash('whirlpool',trim($_POST['qxz_password']));
|
|
|
|
|
2016-12-20 09:35:28 +00:00
|
|
|
if ((strlen($a->user['password'])) && ($encrypted === $a->user['password'])) {
|
2011-02-03 11:58:47 +00:00
|
|
|
require_once('include/Contact.php');
|
|
|
|
user_remove($a->user['uid']);
|
|
|
|
// NOTREACHED
|
|
|
|
}
|
2016-02-07 14:11:34 +00:00
|
|
|
|
2011-02-03 11:58:47 +00:00
|
|
|
}
|
|
|
|
|
2017-01-09 12:14:55 +00:00
|
|
|
function removeme_content(App $a) {
|
2011-02-03 11:58:47 +00:00
|
|
|
|
2016-12-20 09:35:28 +00:00
|
|
|
if (! local_user()) {
|
2011-08-02 04:02:25 +00:00
|
|
|
goaway(z_root());
|
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');
|
2011-02-03 11:58:47 +00:00
|
|
|
$o .= replace_macros($tpl, array(
|
2016-12-20 11:45:16 +00:00
|
|
|
'$basedir' => App::get_baseurl(),
|
2011-02-03 11:58:47 +00: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 20:34:48 +00:00
|
|
|
return $o;
|
2016-02-07 14:11:34 +00:00
|
|
|
|
2014-04-29 20:34:48 +00:00
|
|
|
}
|