friendica/mod/regmod.php

132 lines
2.6 KiB
PHP
Raw Normal View History

2010-07-29 08:15:10 +02:00
<?php
use Friendica\App;
2017-08-26 08:04:21 +02:00
use Friendica\Core\System;
2014-09-07 12:29:13 +02:00
require_once('include/enotify.php');
require_once('include/user.php');
2013-01-05 00:47:29 +01: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",
dbesc($hash)
);
2010-07-29 08:15:10 +02:00
if (! dbm::is_result($register)) {
return false;
}
$user = q("SELECT * FROM `user` WHERE `uid` = %d LIMIT 1",
intval($register[0]['uid'])
);
if (! dbm::is_result($user)) {
killme();
}
$r = q("DELETE FROM `register` WHERE `hash` = '%s'",
dbesc($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'])
);
if (dbm::is_result($r) && $r[0]['net-publish']) {
$url = System::baseUrl() . '/profile/' . $user[0]['nickname'];
if ($url && strlen(get_config('system','directory'))) {
proc_run(PRIORITY_LOW, "include/directory.php", $url);
}
}
push_lang($register[0]['language']);
2014-09-07 12:29:13 +02:00
send_register_open_eml(
$user[0]['email'],
$a->config['sitename'],
System::baseUrl(),
2014-09-07 12:29:13 +02:00
$user[0]['username'],
$register[0]['password']);
pop_lang();
if($res) {
info( 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",
dbesc($hash)
);
2017-05-13 06:04:17 +02:00
if (!dbm::is_result($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'])
);
2017-05-13 06:04:17 +02:00
dba::delete('user', array('uid' => $register[0]['uid']));
dba::delete('register', array('hash' => $register[0]['hash']));
2017-05-13 06:04:17 +02:00
notice(sprintf(t('Registration revoked for %s'), $user[0]['username']) . EOL);
return true;
}
2010-07-29 08:15:10 +02:00
function regmod_content(App $a) {
2010-07-29 08:15:10 +02:00
2011-05-24 05:30:37 +02:00
global $lang;
$_SESSION['return_url'] = $a->cmd;
if (! local_user()) {
info( t('Please login.') . EOL);
$o .= '<br /><br />' . login(($a->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']))) {
2011-01-05 07:17:58 +01:00
notice( t('Permission denied.') . EOL);
return '';
}
if ($a->argc != 3) {
2010-07-29 08:15:10 +02:00
killme();
}
2010-07-29 08:15:10 +02:00
2010-11-08 02:29:30 +01: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
}
}