friendica/mod/removeme.php

107 lines
3.0 KiB
PHP
Raw Normal View History

2011-02-03 12:58:47 +01:00
<?php
2018-01-22 15:16:25 +01:00
/**
2022-01-02 08:27:47 +01:00
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
2018-01-22 15:16:25 +01:00
*/
use Friendica\App;
use Friendica\Core\Renderer;
use Friendica\Database\DBA;
use Friendica\DI;
use Friendica\Model\User;
use Friendica\Util\Strings;
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 (!empty($_SESSION['submanage'])) {
2012-01-27 05:08:02 +01:00
return;
}
2012-01-27 05:08:02 +01:00
if (empty($_POST['qxz_password'])) {
2011-02-03 12:58:47 +01:00
return;
}
2011-02-03 12:58:47 +01:00
if (empty($_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
2018-04-15 11:39:05 +02:00
// send notification to admins so that they can clean um the backups
// send email to admins
$admin_mails = explode(",", str_replace(" ", "", DI::config()->get('config', 'admin_email')));
2018-05-19 07:59:43 +02:00
foreach ($admin_mails as $mail) {
$admin = DBA::selectFirst('user', ['uid', 'language', 'email', 'username'], ['email' => $mail]);
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($admin)) {
continue;
}
$email = DI::emailer()
2020-02-04 21:04:08 +01:00
->newSystemMail()
2020-02-02 09:22:30 +01:00
->withMessage(
DI::l10n()->t('[Friendica System Notify]') . ' ' . DI::l10n()->t('User deleted their account'),
DI::l10n()->t('On your Friendica node an user deleted their account. Please ensure that their data is removed from the backups.'),
DI::l10n()->t('The user id is %d', local_user()))
2020-02-04 21:04:08 +01:00
->forUser($admin)
2020-02-02 09:22:30 +01:00
->withRecipient($admin['email'])
->build();
DI::emailer()->send($email);
2018-04-15 11:39:05 +02:00
}
2021-08-09 22:33:46 +02:00
if (User::getIdFromPasswordAuthentication($a->getLoggedInUserId(), trim($_POST['qxz_password']))) {
User::remove($a->getLoggedInUserId());
2018-11-25 02:58:41 +01:00
unset($_SESSION['authenticated']);
unset($_SESSION['uid']);
DI::baseUrl()->redirect();
2011-02-03 12:58:47 +01:00
// NOTREACHED
}
}
function removeme_content(App $a)
{
if (!local_user()) {
DI::baseUrl()->redirect();
}
2011-02-03 12:58:47 +01:00
$hash = Strings::getRandomHex();
2011-02-03 12:58:47 +01:00
require_once("mod/settings.php");
settings_init($a);
2011-02-03 12:58:47 +01:00
$_SESSION['remove_account_verify'] = $hash;
$tpl = Renderer::getMarkupTemplate('removeme.tpl');
$o = Renderer::replaceMacros($tpl, [
'$basedir' => DI::baseUrl()->get(),
2011-02-03 12:58:47 +01:00
'$hash' => $hash,
'$title' => DI::l10n()->t('Remove My Account'),
'$desc' => DI::l10n()->t('This will completely remove your account. Once this has been done it is not recoverable.'),
'$passwd' => DI::l10n()->t('Please enter your password for verification:'),
'$submit' => DI::l10n()->t('Remove My Account')
]);
2011-02-03 12:58:47 +01:00
return $o;
}