2011-02-03 06:58:47 -05:00
|
|
|
<?php
|
2018-01-22 09:16:25 -05:00
|
|
|
/**
|
2020-02-09 10:18:46 -05:00
|
|
|
* @copyright Copyright (C) 2020, Friendica
|
|
|
|
*
|
|
|
|
* @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 09:16:25 -05:00
|
|
|
*/
|
2018-07-07 17:46:30 -04:00
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
2018-10-31 10:35:50 -04:00
|
|
|
use Friendica\Core\Renderer;
|
2018-07-20 08:19:26 -04:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-15 18:28:31 -05:00
|
|
|
use Friendica\DI;
|
2018-07-07 17:46:30 -04:00
|
|
|
use Friendica\Model\User;
|
2018-11-10 19:14:50 -05:00
|
|
|
use Friendica\Util\Strings;
|
2017-04-30 00:07:00 -04:00
|
|
|
|
2017-11-26 14:18:45 -05:00
|
|
|
function removeme_post(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (!empty($_SESSION['submanage'])) {
|
2012-01-26 23:08:02 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2012-01-26 23:08:02 -05:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (empty($_POST['qxz_password'])) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-11-30 09:06:22 -05:00
|
|
|
if (empty($_POST['verify'])) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2016-12-20 04:35:28 -05:00
|
|
|
if ($_POST['verify'] !== $_SESSION['remove_account_verify']) {
|
2011-02-03 06:58:47 -05:00
|
|
|
return;
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-04-15 05:39:05 -04:00
|
|
|
// send notification to admins so that they can clean um the backups
|
|
|
|
// send email to admins
|
2020-01-19 15:21:13 -05:00
|
|
|
$admin_mails = explode(",", str_replace(" ", "", DI::config()->get('config', 'admin_email')));
|
2018-05-19 01:59:43 -04:00
|
|
|
foreach ($admin_mails as $mail) {
|
2018-08-18 02:20:50 -04:00
|
|
|
$admin = DBA::selectFirst('user', ['uid', 'language', 'email', 'username'], ['email' => $mail]);
|
2018-07-21 08:46:04 -04:00
|
|
|
if (!DBA::isResult($admin)) {
|
2018-05-18 23:38:43 -04:00
|
|
|
continue;
|
|
|
|
}
|
2020-02-01 14:08:54 -05:00
|
|
|
|
|
|
|
$email = DI::emailer()
|
2020-02-04 15:04:08 -05:00
|
|
|
->newSystemMail()
|
2020-02-02 03:22:30 -05: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 15:04:08 -05:00
|
|
|
->forUser($admin)
|
2020-02-02 03:22:30 -05:00
|
|
|
->withRecipient($admin['email'])
|
|
|
|
->build();
|
2020-02-01 14:08:54 -05:00
|
|
|
DI::emailer()->send($email);
|
2018-04-15 05:39:05 -04:00
|
|
|
}
|
|
|
|
|
2018-11-24 20:56:38 -05:00
|
|
|
if (User::getIdFromPasswordAuthentication($a->user, trim($_POST['qxz_password']))) {
|
2017-11-19 17:03:39 -05:00
|
|
|
User::remove($a->user['uid']);
|
2018-11-24 20:58:41 -05:00
|
|
|
|
|
|
|
unset($_SESSION['authenticated']);
|
|
|
|
unset($_SESSION['uid']);
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect();
|
2011-02-03 06:58:47 -05:00
|
|
|
// NOTREACHED
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-26 14:18:45 -05:00
|
|
|
function removeme_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2019-12-15 18:28:31 -05:00
|
|
|
DI::baseUrl()->redirect();
|
2016-12-20 04:35:28 -05:00
|
|
|
}
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2018-11-08 08:45:46 -05:00
|
|
|
$hash = Strings::getRandomHex();
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2016-12-20 04:35:28 -05:00
|
|
|
require_once("mod/settings.php");
|
|
|
|
settings_init($a);
|
2014-04-29 16:34:48 -04:00
|
|
|
|
2011-02-03 06:58:47 -05:00
|
|
|
$_SESSION['remove_account_verify'] = $hash;
|
|
|
|
|
2018-10-31 10:44:06 -04:00
|
|
|
$tpl = Renderer::getMarkupTemplate('removeme.tpl');
|
2018-10-31 10:35:50 -04:00
|
|
|
$o = Renderer::replaceMacros($tpl, [
|
2019-12-15 19:05:15 -05:00
|
|
|
'$basedir' => DI::baseUrl()->get(),
|
2011-02-03 06:58:47 -05:00
|
|
|
'$hash' => $hash,
|
2020-01-18 14:52:34 -05:00
|
|
|
'$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')
|
2018-01-15 08:05:12 -05:00
|
|
|
]);
|
2011-02-03 06:58:47 -05:00
|
|
|
|
2014-04-29 16:34:48 -04:00
|
|
|
return $o;
|
|
|
|
}
|