aboutsummaryrefslogtreecommitdiffstats
path: root/mod/removeme.php
blob: 6a56963b6c8a8426ca75613b89ab46f976682250 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?php

function removeme_post(&$a) {

	if(! local_user())
		return;

	if((! x($_POST,'qxz_password')) || (! strlen(trim($_POST['qxz_password']))))
		return;

	if((! x($_POST,'verify')) || (! strlen(trim($_POST['verify']))))
		return;

	if($_POST['verify'] !== $_SESSION['remove_account_verify'])
		return;

	$encrypted = hash('whirlpool',trim($_POST['qxz_password']));

	if((strlen($a->user['password'])) && ($encrypted === $a->user['password'])) {
		require_once('include/Contact.php');
		user_remove($a->user['uid']);
		// NOTREACHED
	}

}



function removeme_content(&$a) {

	if(! local_user())
		goaway($a->get_baseurl());

	$hash = random_string();

	$_SESSION['remove_account_verify'] = $hash;

	$tpl = get_markup_template('removeme.tpl');
	$o .= replace_macros($tpl, array(
		'$basedir' => $a->get_baseurl(),
		'$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;		

}