friendica/mod/register.php

284 lines
9.5 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
use Friendica\App;
use Friendica\Core\Config;
use Friendica\Core\PConfig;
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\Model\User;
require_once 'include/enotify.php';
require_once 'include/bbcode.php';
2013-01-05 00:47:29 +01:00
2017-12-09 01:24:43 +01:00
function register_post(App $a)
{
2017-05-06 14:49:53 +02:00
check_form_security_token_redirectOnErr('/register', 'register');
2010-07-02 01:48:07 +02:00
2011-05-24 05:30:37 +02:00
global $lang;
2010-07-02 01:48:07 +02:00
$verified = 0;
$blocked = 1;
2012-03-31 15:15:33 +02:00
$arr = array('post' => $_POST);
call_hooks('register_post', $arr);
2011-12-21 05:12:29 +01:00
2017-12-09 01:24:43 +01:00
$max_dailies = intval(Config::get('system', 'max_daily_registrations'));
if ($max_dailies) {
2011-12-21 05:12:29 +01:00
$r = q("select count(*) as total from user where register_date > UTC_TIMESTAMP - INTERVAL 1 day");
2017-12-09 01:24:43 +01:00
if ($r && $r[0]['total'] >= $max_dailies) {
2011-12-21 05:12:29 +01:00
return;
}
}
2017-12-09 01:24:43 +01:00
switch ($a->config['register_policy']) {
case REGISTER_OPEN:
$blocked = 0;
$verified = 1;
break;
case REGISTER_APPROVE:
$blocked = 1;
$verified = 0;
break;
default:
case REGISTER_CLOSED:
if ((!x($_SESSION, 'authenticated') && (!x($_SESSION, 'administrator')))) {
notice(t('Permission denied.') . EOL);
return;
}
$blocked = 1;
$verified = 0;
break;
2010-07-02 01:48:07 +02:00
}
2014-09-07 12:29:13 +02:00
2010-07-02 01:48:07 +02:00
2012-06-02 00:42:13 +02:00
$arr = $_POST;
$arr['blocked'] = $blocked;
$arr['verified'] = $verified;
$arr['language'] = get_browser_language();
2012-06-02 00:42:13 +02:00
2017-12-13 02:43:21 +01:00
try {
$result = User::create($arr);
} catch (Exception $e) {
notice($e->getMessage());
2010-07-02 01:48:07 +02:00
return;
}
$user = $result['user'];
2014-09-07 12:29:13 +02:00
2017-12-09 01:24:43 +01:00
if ($netpublish && $a->config['register_policy'] != REGISTER_APPROVE) {
$url = System::baseUrl() . '/profile/' . $user['nickname'];
2017-11-18 08:59:30 +01:00
Worker::add(PRIORITY_LOW, "Directory", $url);
}
2017-12-09 01:24:43 +01:00
$using_invites = Config::get('system', 'invitation_only');
$num_invites = Config::get('system', 'number_invites');
$invite_id = ((x($_POST, 'invite_id')) ? notags(trim($_POST['invite_id'])) : '');
2017-12-09 01:24:43 +01:00
if ($a->config['register_policy'] == REGISTER_OPEN) {
if ($using_invites && $invite_id) {
2011-07-18 06:12:31 +02:00
q("delete * from register where hash = '%s' limit 1", dbesc($invite_id));
2017-12-09 01:24:43 +01:00
PConfig::set($user['uid'], 'system', 'invites_remaining', $num_invites);
2011-07-18 06:12:31 +02:00
}
// Only send a password mail when the password wasn't manually provided
2017-12-09 01:24:43 +01:00
if (!x($_POST, 'password1') || !x($_POST, 'confirm')) {
$res = User::sendRegisterOpenEmail(
2017-12-09 01:24:43 +01:00
$user['email'], $a->config['sitename'], System::baseUrl(), $user['username'], $result['password']);
if ($res) {
info(t('Registration successful. Please check your email for further instructions.') . EOL);
goaway(System::baseUrl());
} else {
notice(
2017-12-09 01:24:43 +01:00
t('Failed to send email message. Here your accout details:<br> login: %s<br> password: %s<br><br>You can change your password after login.',
$user['email'],
$result['password'])
. EOL
);
}
} else {
2017-12-09 01:24:43 +01:00
info(t('Registration successful.') . EOL);
goaway(System::baseUrl());
2010-07-29 08:15:10 +02:00
}
2017-12-09 01:24:43 +01:00
} elseif ($a->config['register_policy'] == REGISTER_APPROVE) {
if (!strlen($a->config['admin_email'])) {
notice(t('Your registration can not be processed.') . EOL);
goaway(System::baseUrl());
2010-07-29 08:15:10 +02:00
}
$hash = random_string();
$r = q("INSERT INTO `register` ( `hash`, `created`, `uid`, `password`, `language`, `note` ) VALUES ( '%s', '%s', %d, '%s', '%s', '%s' ) ",
2010-07-29 08:15:10 +02:00
dbesc($hash),
dbesc(datetime_convert()),
intval($user['uid']),
dbesc($result['password']),
dbesc($lang),
dbesc($_POST['permonlybox'])
2011-05-24 05:30:37 +02:00
);
// invite system
2017-12-09 01:24:43 +01:00
if ($using_invites && $invite_id) {
q("DELETE * FROM `register` WHERE `hash` = '%s' LIMIT 1", dbesc($invite_id));
PConfig::set($user['uid'], 'system', 'invites_remaining', $num_invites);
2011-07-18 06:12:31 +02:00
}
2010-07-29 08:15:10 +02:00
// send email to admins
2017-12-09 01:24:43 +01:00
$admin_mail_list = "'" . implode("','", array_map(dbesc, explode(",", str_replace(" ", "", $a->config['admin_email'])))) . "'";
$adminlist = q("SELECT uid, language, email FROM user WHERE email IN (%s)",
$admin_mail_list
);
2011-05-24 05:30:37 +02:00
// send notification to admins
foreach ($adminlist as $admin) {
notification(array(
2017-12-09 01:24:43 +01:00
'type' => NOTIFY_SYSTEM,
'event' => 'SYSTEM_REGISTER_REQUEST',
'source_name' => $user['username'],
'source_mail' => $user['email'],
'source_nick' => $user['nickname'],
'source_link' => System::baseUrl() . "/admin/users/",
'link' => System::baseUrl() . "/admin/users/",
'source_photo' => System::baseUrl() . "/photo/avatar/" . $user['uid'] . ".jpg",
'to_email' => $admin['email'],
'uid' => $admin['uid'],
'language' => $admin['language'] ? $admin['language'] : 'en',
'show_in_notification_page' => false
));
}
// send notification to the user, that the registration is pending
User::sendRegisterPendingEmail(
2017-12-09 01:24:43 +01:00
$user['email'], $a->config['sitename'], $user['username']);
2017-12-09 01:24:43 +01:00
info(t('Your registration is pending approval by the site owner.') . EOL);
goaway(System::baseUrl());
}
2010-07-02 01:48:07 +02:00
return;
2017-12-09 01:24:43 +01:00
}
2010-07-02 01:48:07 +02:00
2017-12-09 01:24:43 +01:00
function register_content(App $a)
{
// logged in users can register others (people/pages/groups)
// even with closed registrations, unless specifically prohibited by site policy.
// 'block_extended_register' blocks all registrations, period.
2017-12-09 01:24:43 +01:00
$block = Config::get('system', 'block_extended_register');
2017-12-09 01:24:43 +01:00
if (local_user() && ($block)) {
notice("Permission denied." . EOL);
return;
}
2017-12-09 01:24:43 +01:00
if ((!local_user()) && ($a->config['register_policy'] == REGISTER_CLOSED)) {
2010-07-11 12:35:33 +02:00
notice("Permission denied." . EOL);
return;
}
2017-12-09 01:24:43 +01:00
$max_dailies = intval(Config::get('system', 'max_daily_registrations'));
if ($max_dailies) {
2011-12-21 05:12:29 +01:00
$r = q("select count(*) as total from user where register_date > UTC_TIMESTAMP - INTERVAL 1 day");
2017-12-09 01:24:43 +01:00
if ($r && $r[0]['total'] >= $max_dailies) {
2011-12-21 05:12:29 +01:00
logger('max daily registrations exceeded.');
2017-12-09 01:24:43 +01:00
notice(t('This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.') . EOL);
2011-12-21 05:12:29 +01:00
return;
}
}
2017-12-09 01:24:43 +01:00
if (x($_SESSION, 'theme')) {
unset($_SESSION['theme']);
2017-12-09 01:24:43 +01:00
}
if (x($_SESSION, 'mobile-theme')) {
unset($_SESSION['mobile-theme']);
2017-12-09 01:24:43 +01:00
}
2017-12-09 01:24:43 +01:00
$username = x($_REQUEST, 'username') ? $_REQUEST['username'] : '';
$email = x($_REQUEST, 'email') ? $_REQUEST['email'] : '';
$openid_url = x($_REQUEST, 'openid_url') ? $_REQUEST['openid_url'] : '';
$nickname = x($_REQUEST, 'nickname') ? $_REQUEST['nickname'] : '';
$photo = x($_REQUEST, 'photo') ? $_REQUEST['photo'] : '';
$invite_id = x($_REQUEST, 'invite_id') ? $_REQUEST['invite_id'] : '';
2017-12-09 01:24:43 +01:00
$noid = Config::get('system', 'no_openid');
2017-12-09 01:24:43 +01:00
if ($noid) {
$oidhtml = '';
$fillwith = '';
2017-12-09 01:24:43 +01:00
$fillext = '';
$oidlabel = '';
2017-12-09 01:24:43 +01:00
} else {
$oidhtml = '<label for="register-openid" id="label-register-openid" >$oidlabel</label><input type="text" maxlength="60" size="32" name="openid_url" class="openid" id="register-openid" value="$openid" >';
$fillwith = t("You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'.");
2017-12-09 01:24:43 +01:00
$fillext = t('If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.');
$oidlabel = t("Your OpenID \x28optional\x29: ");
}
// I set this and got even more fake names than before...
$realpeople = ''; // t('Members of this network prefer to communicate with real people who use their real names.');
2017-12-09 01:24:43 +01:00
if (Config::get('system', 'publish_all')) {
$profile_publish = '<input type="hidden" name="profile_publish_reg" value="1" />';
} else {
2011-05-11 13:37:13 +02:00
$publish_tpl = get_markup_template("profile_publish.tpl");
2017-12-09 01:24:43 +01:00
$profile_publish = replace_macros($publish_tpl, array(
'$instance' => 'reg',
'$pubdesc' => t('Include your profile in member directory?'),
'$yes_selected' => ' checked="checked" ',
2017-12-09 01:24:43 +01:00
'$no_selected' => '',
'$str_yes' => t('Yes'),
'$str_no' => t('No'),
));
}
2017-12-09 01:24:43 +01:00
$r = q("SELECT COUNT(*) AS `contacts` FROM `contact`");
$passwords = !$r[0]["contacts"];
2011-09-24 14:45:34 +02:00
$license = '';
2011-05-11 13:37:13 +02:00
$o = get_markup_template("register.tpl");
2012-03-31 15:15:33 +02:00
$arr = array('template' => $o);
2017-12-09 01:24:43 +01:00
call_hooks('register_form', $arr);
2012-03-31 15:15:33 +02:00
2012-09-22 03:04:09 +02:00
$o = $arr['template'];
2017-12-09 01:24:43 +01:00
$o = replace_macros($o, [
'$oidhtml' => $oidhtml,
2017-12-09 01:24:43 +01:00
'$invitations' => Config::get('system', 'invitation_only'),
'$permonly' => $a->config['register_policy'] == REGISTER_APPROVE,
'$permonlybox' => array('permonlybox', t('Note for the admin'), '', t('Leave a message for the admin, why you want to join this node')),
2011-07-18 06:12:31 +02:00
'$invite_desc' => t('Membership on this site is by invitation only.'),
'$invite_label' => t('Your invitation ID: '),
2017-12-09 01:24:43 +01:00
'$invite_id' => $invite_id,
'$realpeople' => $realpeople,
'$regtitle' => t('Registration'),
2017-12-09 01:24:43 +01:00
'$registertext' => x($a->config, 'register_text') ? bbcode($a->config['register_text']) : "",
'$fillwith' => $fillwith,
'$fillext' => $fillext,
'$oidlabel' => $oidlabel,
2010-11-18 05:35:50 +01:00
'$openid' => $openid_url,
2015-11-07 13:19:55 +01:00
'$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith, real or real-looking' . "\x29" . ': '),
'$addrlabel' => t('Your Email Address: (Initial information will be send there, so this has to be an existing address.)'),
'$passwords' => $passwords,
2015-07-01 00:41:04 +02:00
'$password1' => array('password1', t('New Password:'), '', t('Leave empty for an auto generated password.')),
'$password2' => array('confirm', t('Confirm:'), '', ''),
2017-12-09 01:24:43 +01:00
'$nickdesc' => t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@%s</strong>\'.', $a->get_hostname()),
'$nicklabel' => t('Choose a nickname: '),
'$photo' => $photo,
'$publish' => $profile_publish,
'$regbutt' => t('Register'),
'$username' => $username,
'$email' => $email,
'$nickname' => $nickname,
'$license' => $license,
'$sitename' => $a->get_hostname(),
'$importh' => t('Import'),
'$importt' => t('Import your profile to this friendica instance'),
2017-12-09 01:24:43 +01:00
'$form_security_token' => get_form_security_token("register")
]);
2010-07-02 01:48:07 +02:00
return $o;
2017-12-09 01:24:43 +01:00
}