friendica/mod/regmod.php

130 lines
2.8 KiB
PHP
Raw Normal View History

2010-07-29 08:15:10 +02:00
<?php
/**
* @file mod/regmod.php
*/
use Friendica\App;
use Friendica\Core\Config;
use Friendica\Core\L10n;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
2017-11-05 13:15:53 +01:00
use Friendica\Core\Worker;
use Friendica\Database\DBA;
2017-12-07 20:12:03 +01:00
use Friendica\Model\User;
use Friendica\Module\Login;
require_once 'include/enotify.php';
2011-06-29 09:40:43 +02:00
function user_allow($hash)
{
2011-06-29 09:40:43 +02:00
$a = get_app();
$register = q("SELECT * FROM `register` WHERE `hash` = '%s' LIMIT 1",
2018-07-21 15:10:13 +02:00
DBA::escape($hash)
);
2010-07-29 08:15:10 +02:00
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($register)) {
return false;
}
$user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
intval($register[0]['uid'])
);
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($user)) {
killme();
}
$r = q("DELETE FROM `register` WHERE `hash` = '%s'",
2018-07-21 15:10:13 +02:00
DBA::escape($register[0]['hash'])
);
$r = q("UPDATE `user` SET `blocked` = 0, `verified` = 1 WHERE `uid` = %d",
intval($register[0]['uid'])
);
$r = q("SELECT * FROM `profile` WHERE `uid` = %d AND `is-default` = 1",
intval($user[0]['uid'])
);
2018-07-21 14:46:04 +02:00
if (DBA::isResult($r) && $r[0]['net-publish']) {
$url = System::baseUrl() . '/profile/' . $user[0]['nickname'];
if ($url && strlen(Config::get('system', 'directory'))) {
2017-11-18 08:59:30 +01:00
Worker::add(PRIORITY_LOW, "Directory", $url);
}
}
L10n::pushLang($register[0]['language']);
$res = User::sendRegisterOpenEmail(
2014-09-07 12:29:13 +02:00
$user[0]['email'],
Config::get('config', 'sitename'),
System::baseUrl(),
2014-09-07 12:29:13 +02:00
$user[0]['username'],
$register[0]['password']);
L10n::popLang();
if ($res) {
info(L10n::t('Account approved.') . EOL);
return true;
}
}
// 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
function user_deny($hash)
{
$register = q("SELECT * FROM `register` WHERE `hash` = '%s' LIMIT 1",
2018-07-21 15:10:13 +02:00
DBA::escape($hash)
);
2018-07-21 14:46:04 +02:00
if (!DBA::isResult($register)) {
return false;
2017-05-13 06:04:17 +02:00
}
$user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
intval($register[0]['uid'])
);
DBA::delete('user', ['uid' => $register[0]['uid']]);
DBA::delete('register', ['hash' => $register[0]['hash']]);
notice(L10n::t('Registration revoked for %s', $user[0]['username']) . EOL);
return true;
}
2010-07-29 08:15:10 +02:00
function regmod_content(App $a)
{
if (!local_user()) {
info(L10n::t('Please login.') . EOL);
$o = '<br /><br />' . Login::form($a->query_string, intval(Config::get('config', 'register_policy')) === REGISTER_CLOSED ? 0 : 1);
2010-07-29 08:15:10 +02:00
return $o;
}
if ((!is_site_admin()) || (x($_SESSION, 'submanage') && intval($_SESSION['submanage']))) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2011-01-05 07:17:58 +01:00
return '';
}
if ($a->argc != 3) {
2010-07-29 08:15:10 +02:00
killme();
}
2010-07-29 08:15:10 +02:00
$cmd = $a->argv[1];
2010-07-29 08:15:10 +02:00
$hash = $a->argv[2];
if ($cmd === 'deny') {
user_deny($hash);
goaway(System::baseUrl() . "/admin/users/");
killme();
2010-07-29 08:15:10 +02:00
}
if ($cmd === 'allow') {
user_allow($hash);
goaway(System::baseUrl() . "/admin/users/");
killme();
2010-07-29 08:15:10 +02:00
}
}