friendica/mod/removeme.php

61 lines
1.2 KiB
PHP
Raw Normal View History

2011-02-03 12:58:47 +01:00
<?php
function removeme_post(App $a) {
2011-02-03 12:58:47 +01:00
if (! local_user()) {
2011-02-03 12:58:47 +01:00
return;
}
2011-02-03 12:58:47 +01:00
if (x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
2012-01-27 05:08:02 +01:00
return;
}
2012-01-27 05:08:02 +01:00
if ((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password'])))) {
2011-02-03 12:58:47 +01:00
return;
}
2011-02-03 12:58:47 +01:00
if ((! x($_POST,'verify')) || (! strlen(trim($_POST['verify'])))) {
2011-02-03 12:58:47 +01:00
return;
}
2011-02-03 12:58:47 +01:00
if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
2011-02-03 12:58:47 +01:00
return;
}
2011-02-03 12:58:47 +01:00
$encrypted = hash('whirlpool',trim($_POST['qxz_password']));
if ((strlen($a->user['password'])) && ($encrypted === $a->user['password'])) {
2011-02-03 12:58:47 +01:00
require_once('include/Contact.php');
user_remove($a->user['uid']);
// NOTREACHED
}
2011-02-03 12:58:47 +01:00
}
function removeme_content(App $a) {
2011-02-03 12:58:47 +01:00
if (! local_user()) {
goaway(z_root());
}
2011-02-03 12:58:47 +01:00
$hash = random_string();
require_once("mod/settings.php");
settings_init($a);
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(
'$basedir' => App::get_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')
));
return $o;
}