friendica/mod/register.php

290 lines
9.7 KiB
PHP
Raw Normal View History

2010-07-02 01:48:07 +02:00
<?php
/**
2018-02-15 21:10:00 +01:00
* @file mod/register.php
*/
use Friendica\App;
use Friendica\BaseModule;
use Friendica\Content\Text\BBCode;
use Friendica\Core\Addon;
use Friendica\Core\Config;
use Friendica\Core\L10n;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger;
use Friendica\Core\PConfig;
use Friendica\Core\Renderer;
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;
use Friendica\Module\Tos;
use Friendica\Util\Strings;
2017-12-09 01:24:43 +01:00
function register_post(App $a)
{
BaseModule::checkFormSecurityTokenRedirectOnError('/register', 'register');
2010-07-02 01:48:07 +02:00
$verified = 0;
$blocked = 1;
$arr = ['post' => $_POST];
Addon::callHooks('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;
}
}
switch (Config::get('config', 'register_policy')) {
2017-12-09 01:24:43 +01:00
case REGISTER_OPEN:
$blocked = 0;
$verified = 1;
break;
case REGISTER_APPROVE:
$blocked = 1;
$verified = 0;
break;
default:
case REGISTER_CLOSED:
if (empty($_SESSION['authenticated']) && empty($_SESSION['administrator'])) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Permission denied.') . EOL);
2017-12-09 01:24:43 +01:00
return;
}
$blocked = 1;
$verified = 0;
break;
2010-07-02 01:48:07 +02:00
}
2014-09-07 12:29:13 +02:00
2018-02-12 04:10:11 +01:00
$netpublish = !empty($_POST['profile_publish_reg']);
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'] = L10n::detectLanguage();
2012-06-02 00:42:13 +02:00
2017-12-13 02:43:21 +01:00
try {
$result = Model\User::create($arr);
2017-12-13 02:43:21 +01:00
} 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
if ($netpublish && intval(Config::get('config', 'register_policy')) !== REGISTER_APPROVE) {
$url = $a->getBaseUrl() . '/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 = (!empty($_POST['invite_id']) ? Strings::escapeTags(trim($_POST['invite_id'])) : '');
if (intval(Config::get('config', 'register_policy')) === REGISTER_OPEN) {
2017-12-09 01:24:43 +01:00
if ($using_invites && $invite_id) {
Model\Register::deleteByHash($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
if (empty($_POST['password1']) || empty($_POST['confirm'])) {
$res = Model\User::sendRegisterOpenEmail(
$user,
Config::get('config', 'sitename'),
$a->getBaseUrl(),
$result['password']
);
2017-12-09 01:24:43 +01:00
if ($res) {
2018-01-22 15:16:25 +01:00
info(L10n::t('Registration successful. Please check your email for further instructions.') . EOL);
$a->internalRedirect();
} else {
notice(
2018-01-22 15:16:25 +01:00
L10n::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.',
2017-12-09 01:24:43 +01:00
$user['email'],
$result['password'])
. EOL
);
}
} else {
2018-01-22 15:16:25 +01:00
info(L10n::t('Registration successful.') . EOL);
$a->internalRedirect();
2010-07-29 08:15:10 +02:00
}
} elseif (intval(Config::get('config', 'register_policy')) === REGISTER_APPROVE) {
if (!strlen(Config::get('config', 'admin_email'))) {
2018-01-21 19:33:59 +01:00
notice(L10n::t('Your registration can not be processed.') . EOL);
$a->internalRedirect();
2010-07-29 08:15:10 +02:00
}
Model\Register::createForApproval($user['uid'], Config::get('system', 'language'), $_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) {
Model\Register::deleteByHash($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
}
2010-07-29 08:15:10 +02:00
// send email to admins
2018-07-21 15:10:13 +02:00
$admin_mail_list = "'" . implode("','", array_map(['Friendica\Database\DBA', 'escape'], explode(",", str_replace(" ", "", Config::get('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([
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' => $a->getBaseUrl() . "/admin/users/",
'link' => $a->getBaseUrl() . "/admin/users/",
'source_photo' => $a->getBaseUrl() . "/photo/avatar/" . $user['uid'] . ".jpg",
2017-12-09 01:24:43 +01:00
'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
Model\User::sendRegisterPendingEmail(
$user,
Config::get('config', 'sitename'),
$a->getBaseURL(),
$result['password']
);
2018-01-22 15:16:25 +01:00
info(L10n::t('Your registration is pending approval by the site owner.') . EOL);
$a->internalRedirect();
}
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;
}
if ((!local_user()) && (intval(Config::get('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) {
2018-10-29 22:20:46 +01:00
Logger::log('max daily registrations exceeded.');
2018-01-21 19:33:59 +01:00
notice(L10n::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;
}
}
if (!empty($_SESSION['theme'])) {
unset($_SESSION['theme']);
2017-12-09 01:24:43 +01:00
}
if (!empty($_SESSION['mobile-theme'])) {
unset($_SESSION['mobile-theme']);
2017-12-09 01:24:43 +01:00
}
$username = defaults($_REQUEST, 'username' , '');
$email = defaults($_REQUEST, 'email' , '');
$openid_url = defaults($_REQUEST, 'openid_url', '');
$nickname = defaults($_REQUEST, 'nickname' , '');
$photo = defaults($_REQUEST, 'photo' , '');
$invite_id = defaults($_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) {
$fillwith = '';
2017-12-09 01:24:43 +01:00
$fillext = '';
$oidlabel = '';
2017-12-09 01:24:43 +01:00
} else {
2018-01-22 15:16:25 +01:00
$fillwith = L10n::t("You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'.");
$fillext = L10n::t('If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.');
$oidlabel = L10n::t("Your OpenID \x28optional\x29: ");
}
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 {
$publish_tpl = Renderer::getMarkupTemplate("profile_publish.tpl");
$profile_publish = Renderer::replaceMacros($publish_tpl, [
2017-12-09 01:24:43 +01:00
'$instance' => 'reg',
2018-01-22 15:16:25 +01:00
'$pubdesc' => L10n::t('Include your profile in member directory?'),
2018-05-26 07:09:32 +02:00
'$yes_selected' => '',
'$no_selected' => ' checked="checked"',
2018-01-22 15:16:25 +01:00
'$str_yes' => L10n::t('Yes'),
'$str_no' => L10n::t('No'),
]);
}
2017-12-09 01:24:43 +01:00
$r = q("SELECT COUNT(*) AS `contacts` FROM `contact`");
$passwords = !$r[0]["contacts"];
$tpl = Renderer::getMarkupTemplate("register.tpl");
2012-03-31 15:15:33 +02:00
$arr = ['template' => $tpl];
2012-03-31 15:15:33 +02:00
Addon::callHooks('register_form', $arr);
2012-03-31 15:15:33 +02:00
$tpl = $arr['template'];
2012-09-22 03:04:09 +02:00
$tos = new Tos();
$o = Renderer::replaceMacros($tpl, [
2017-12-09 01:24:43 +01:00
'$invitations' => Config::get('system', 'invitation_only'),
'$permonly' => intval(Config::get('config', 'register_policy')) === REGISTER_APPROVE,
2018-01-22 15:16:25 +01:00
'$permonlybox' => ['permonlybox', L10n::t('Note for the admin'), '', L10n::t('Leave a message for the admin, why you want to join this node')],
'$invite_desc' => L10n::t('Membership on this site is by invitation only.'),
'$invite_label' => L10n::t('Your invitation code: '),
2017-12-09 01:24:43 +01:00
'$invite_id' => $invite_id,
2018-01-22 15:16:25 +01:00
'$regtitle' => L10n::t('Registration'),
2018-04-02 08:42:11 +02:00
'$registertext' => BBCode::convert(Config::get('config', 'register_text', '')),
'$fillwith' => $fillwith,
'$fillext' => $fillext,
'$oidlabel' => $oidlabel,
2010-11-18 05:35:50 +01:00
'$openid' => $openid_url,
2018-01-22 15:16:25 +01:00
'$namelabel' => L10n::t('Your Full Name ' . "\x28" . 'e.g. Joe Smith, real or real-looking' . "\x29" . ': '),
'$addrlabel' => L10n::t("Your Email Address: \x28Initial information will be send there, so this has to be an existing address.\x29"),
'$passwords' => $passwords,
2018-01-22 15:16:25 +01:00
'$password1' => ['password1', L10n::t('New Password:'), '', L10n::t('Leave empty for an auto generated password.')],
'$password2' => ['confirm', L10n::t('Confirm:'), '', ''],
'$nickdesc' => L10n::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->getHostName()),
2018-01-22 15:16:25 +01:00
'$nicklabel' => L10n::t('Choose a nickname: '),
'$photo' => $photo,
'$publish' => $profile_publish,
2018-01-22 15:16:25 +01:00
'$regbutt' => L10n::t('Register'),
'$username' => $username,
'$email' => $email,
'$nickname' => $nickname,
'$sitename' => $a->getHostName(),
2018-01-22 15:16:25 +01:00
'$importh' => L10n::t('Import'),
'$importt' => L10n::t('Import your profile to this friendica instance'),
2018-04-02 18:40:30 +02:00
'$showtoslink' => Config::get('system', 'tosdisplay'),
'$tostext' => L10n::t('Terms of Service'),
'$showprivstatement' => Config::get('system', 'tosprivstatement'),
2018-05-20 08:43:43 +02:00
'$privstatement' => $tos->privacy_complete,
2018-04-02 18:40:30 +02:00
'$baseurl' => System::baseurl(),
'$form_security_token' => BaseModule::getFormSecurityToken("register"),
'$explicit_content' => Config::get('system', 'explicit_content', false),
'$explicit_content_note' => L10n::t('Note: This node explicitly contains adult content')
2017-12-09 01:24:43 +01:00
]);
2010-07-02 01:48:07 +02:00
return $o;
2017-12-09 01:24:43 +01:00
}