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;
|
2019-12-16 00:28:31 +01:00
|
|
|
use Friendica\DI;
|
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
|
|
|
|
2017-12-04 04:15:31 +01:00
|
|
|
function regmod_content(App $a)
|
|
|
|
{
|
|
|
|
if (!local_user()) {
|
2020-02-21 23:03:33 +01:00
|
|
|
info(DI::l10n()->t('Please login.'));
|
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-02-21 23:03:33 +01:00
|
|
|
notice(DI::l10n()->t('Permission denied.'));
|
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') {
|
2020-02-21 23:03:33 +01:00
|
|
|
if (User::deny($hash)) {
|
|
|
|
notice(DI::l10n()->t('Registration revoked'));
|
|
|
|
}
|
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)) {
|
2020-02-21 23:03:33 +01:00
|
|
|
info(DI::l10n()->t('Account approved.'));
|
2020-02-21 22:57:17 +01:00
|
|
|
}
|
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
|
|
|
}
|