friendica/mod/removeme.php

60 lines
1.2 KiB
PHP
Raw Normal View History

2011-02-03 12:58:47 +01:00
<?php
use Friendica\App;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
use Friendica\Model\User;
function removeme_post(App $a)
{
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
if (User::authenticate($a->user['uid'], trim($_POST['qxz_password']))) {
User::remove($a->user['uid']);
2011-02-03 12:58:47 +01:00
// NOTREACHED
}
}
function removeme_content(App $a)
{
if (!local_user()) {
goaway(System::baseUrl());
}
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' => 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')
));
return $o;
}