2010-07-29 08:15:10 +02:00
|
|
|
<?php
|
2018-01-21 17:38:01 +01:00
|
|
|
/**
|
2020-02-09 16:18:46 +01: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-21 17:38:01 +01:00
|
|
|
*/
|
2018-07-07 23:46:30 +02:00
|
|
|
|
2017-04-30 06:07:00 +02:00
|
|
|
use Friendica\App;
|
2018-07-20 14:19:26 +02:00
|
|
|
use Friendica\Database\DBA;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
2018-10-14 17:57:28 +02:00
|
|
|
use Friendica\Model\Register;
|
2017-12-07 20:12:03 +01:00
|
|
|
use Friendica\Model\User;
|
2019-12-27 22:19:28 +01:00
|
|
|
use Friendica\Module\Security\Login;
|
2017-04-30 06:07:00 +02:00
|
|
|
|
2012-03-22 09:46:52 +01:00
|
|
|
// This does not have to go through user_remove() and save the nickname
|
|
|
|
// permanently against re-registration, as the person was not yet
|
|
|
|
// allowed to have friends on this system
|
2017-12-04 04:15:31 +01:00
|
|
|
function user_deny($hash)
|
|
|
|
{
|
2018-10-14 17:57:28 +02:00
|
|
|
$register = Register::getByHash($hash);
|
2018-07-21 14:46:04 +02:00
|
|
|
if (!DBA::isResult($register)) {
|
2011-06-16 14:56:43 +02:00
|
|
|
return false;
|
2017-05-13 06:04:17 +02:00
|
|
|
}
|
2011-06-16 14:56:43 +02:00
|
|
|
|
2018-10-15 17:58:52 +02:00
|
|
|
$user = User::getById($register['uid']);
|
|
|
|
if (!DBA::isResult($user)) {
|
|
|
|
exit();
|
|
|
|
}
|
2013-12-08 14:49:24 +01:00
|
|
|
|
2018-10-14 17:57:28 +02:00
|
|
|
DBA::delete('user', ['uid' => $register['uid']]);
|
|
|
|
|
|
|
|
Register::deleteByHash($register['hash']);
|
2011-06-16 14:56:43 +02:00
|
|
|
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Registration revoked for %s', $user['username']) . EOL);
|
2011-06-16 14:56:43 +02:00
|
|
|
return true;
|
|
|
|
}
|
2010-07-29 08:15:10 +02:00
|
|
|
|
2017-12-04 04:15:31 +01:00
|
|
|
function regmod_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-01-18 20:52:34 +01:00
|
|
|
info(DI::l10n()->t('Please login.') . EOL);
|
2020-01-19 21:21:13 +01:00
|
|
|
return Login::form(DI::args()->getQueryString(), intval(DI::config()->get('config', 'register_policy')) === \Friendica\Module\Register::CLOSED ? 0 : 1);
|
2010-07-29 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
2018-10-15 17:58:52 +02:00
|
|
|
if (!is_site_admin() || !empty($_SESSION['submanage'])) {
|
2020-01-18 20:52:34 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.') . EOL);
|
2011-01-05 07:17:58 +01:00
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($a->argc != 3) {
|
2018-10-15 17:58:52 +02:00
|
|
|
exit();
|
2016-12-20 11:56:34 +01:00
|
|
|
}
|
2010-07-29 08:15:10 +02:00
|
|
|
|
2017-12-04 04:15:31 +01:00
|
|
|
$cmd = $a->argv[1];
|
2010-07-29 08:15:10 +02:00
|
|
|
$hash = $a->argv[2];
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($cmd === 'deny') {
|
2014-09-09 22:07:47 +02:00
|
|
|
user_deny($hash);
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('admin/users/');
|
2010-07-29 08:15:10 +02:00
|
|
|
}
|
|
|
|
|
2016-12-20 11:56:34 +01:00
|
|
|
if ($cmd === 'allow') {
|
2020-02-21 22:57:17 +01:00
|
|
|
if (User::allow($hash)) {
|
|
|
|
info(DI::l10n()->t('Account approved.') . EOL);
|
|
|
|
}
|
2019-12-16 00:28:31 +01:00
|
|
|
DI::baseUrl()->redirect('admin/users/');
|
2010-07-29 08:15:10 +02:00
|
|
|
}
|
2011-05-23 11:39:57 +02:00
|
|
|
}
|