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