aboutsummaryrefslogtreecommitdiffstats
path: root/mod/removeme.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-03 03:58:47 -0800
committerFriendika <info@friendika.com>2011-02-03 03:58:47 -0800
commita4cbdc241423ca84eff2e888cf5c0a2cecea5f2a (patch)
tree68313d4a12742d0ea4f248a1bb353a030377f7f7 /mod/removeme.php
parent01c83f0e93400f7f5ad82b505d65c1b051186519 (diff)
downloadvolse-hubzilla-a4cbdc241423ca84eff2e888cf5c0a2cecea5f2a.tar.gz
volse-hubzilla-a4cbdc241423ca84eff2e888cf5c0a2cecea5f2a.tar.bz2
volse-hubzilla-a4cbdc241423ca84eff2e888cf5c0a2cecea5f2a.zip
remove self
Diffstat (limited to 'mod/removeme.php')
-rw-r--r--mod/removeme.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/mod/removeme.php b/mod/removeme.php
new file mode 100644
index 000000000..62b9a6d13
--- /dev/null
+++ b/mod/removeme.php
@@ -0,0 +1,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 = load_view_file('view/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;
+
+} \ No newline at end of file