2010-07-02 01:48:07 +02:00
< ? php
2018-01-21 17:38:01 +01:00
/**
2018-02-15 21:10:00 +01:00
* @ file mod / register . php
2018-01-21 17:38:01 +01:00
*/
2018-01-25 03:08:45 +01:00
2017-04-30 06:07:00 +02:00
use Friendica\App ;
2018-10-17 21:30:41 +02:00
use Friendica\BaseModule ;
2018-02-15 03:33:55 +01:00
use Friendica\Content\Text\BBCode ;
2017-11-07 03:22:52 +01:00
use Friendica\Core\Config ;
2018-12-26 07:06:24 +01:00
use Friendica\Core\Hook ;
2018-01-21 17:38:01 +01:00
use Friendica\Core\L10n ;
2018-10-29 22:20:46 +01:00
use Friendica\Core\Logger ;
2017-11-07 03:22:52 +01:00
use Friendica\Core\PConfig ;
2018-10-31 15:35:50 +01:00
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 ;
2018-10-14 14:58:27 +02:00
use Friendica\Model ;
2018-05-19 18:53:54 +02:00
use Friendica\Module\Tos ;
2018-11-08 16:14:37 +01:00
use Friendica\Util\Strings ;
2017-04-30 06:07:00 +02:00
2017-12-09 01:24:43 +01:00
function register_post ( App $a )
{
2018-10-17 21:30:41 +02:00
BaseModule :: checkFormSecurityTokenRedirectOnError ( '/register' , 'register' );
2010-07-02 01:48:07 +02:00
2018-01-15 14:05:12 +01:00
$arr = [ 'post' => $_POST ];
2018-12-26 07:06:24 +01:00
Hook :: callAll ( '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 ;
}
}
2018-07-07 23:46:30 +02:00
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 :
2018-07-07 23:46:30 +02:00
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 ;
2018-10-22 06:16:30 +02:00
$arr [ 'language' ] = L10n :: detectLanguage ();
2012-06-02 00:42:13 +02:00
2017-12-13 02:43:21 +01:00
try {
2018-10-14 14:58:27 +02:00
$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 ;
}
2012-06-01 04:06:17 +02:00
$user = $result [ 'user' ];
2014-09-07 12:29:13 +02:00
2018-07-15 21:04:48 +02:00
if ( $netpublish && intval ( Config :: get ( 'config' , 'register_policy' )) !== REGISTER_APPROVE ) {
2018-10-14 14:58:27 +02:00
$url = $a -> getBaseUrl () . '/profile/' . $user [ 'nickname' ];
2017-11-18 08:59:30 +01:00
Worker :: add ( PRIORITY_LOW , " Directory " , $url );
2011-02-23 23:04:00 +01:00
}
2017-12-09 01:24:43 +01:00
$using_invites = Config :: get ( 'system' , 'invitation_only' );
$num_invites = Config :: get ( 'system' , 'number_invites' );
2018-11-30 15:06:22 +01:00
$invite_id = ( ! empty ( $_POST [ 'invite_id' ]) ? Strings :: escapeTags ( trim ( $_POST [ 'invite_id' ])) : '' );
2011-02-23 23:04:00 +01:00
2018-07-15 21:04:48 +02:00
if ( intval ( Config :: get ( 'config' , 'register_policy' )) === REGISTER_OPEN ) {
2017-12-09 01:24:43 +01:00
if ( $using_invites && $invite_id ) {
2018-10-14 17:57:28 +02:00
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
}
2015-06-30 23:37:31 +02:00
// Only send a password mail when the password wasn't manually provided
2018-11-30 15:06:22 +01:00
if ( empty ( $_POST [ 'password1' ]) || empty ( $_POST [ 'confirm' ])) {
2018-10-14 14:58:27 +02:00
$res = Model\User :: sendRegisterOpenEmail (
2018-10-15 17:58:52 +02:00
$user ,
2018-10-14 14:58:27 +02:00
Config :: get ( 'config' , 'sitename' ),
$a -> getBaseUrl (),
2018-10-15 17:58:52 +02:00
$result [ 'password' ]
2018-10-14 14:58:27 +02:00
);
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 );
2018-10-19 20:11:27 +02:00
$a -> internalRedirect ();
2015-06-30 23:37:31 +02:00
} 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
2015-06-30 23:37:31 +02:00
);
}
2015-11-14 08:07:09 +01:00
} else {
2018-01-22 15:16:25 +01:00
info ( L10n :: t ( 'Registration successful.' ) . EOL );
2018-10-19 20:11:27 +02:00
$a -> internalRedirect ();
2010-07-29 08:15:10 +02:00
}
2018-07-15 21:04:48 +02:00
} elseif ( intval ( Config :: get ( 'config' , 'register_policy' )) === REGISTER_APPROVE ) {
2018-07-07 23:46:30 +02:00
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 );
2018-10-19 20:11:27 +02:00
$a -> internalRedirect ();
2010-07-29 08:15:10 +02:00
}
2018-10-14 17:57:28 +02:00
Model\Register :: createForApproval ( $user [ 'uid' ], Config :: get ( 'system' , 'language' ), $_POST [ 'permonlybox' ]);
2011-05-24 05:30:37 +02:00
2014-09-07 13:55:02 +02:00
// invite system
2017-12-09 01:24:43 +01:00
if ( $using_invites && $invite_id ) {
2018-10-14 17:57:28 +02:00
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
2014-09-07 13:55:02 +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' ))))) . " ' " ;
2014-09-07 14:23:03 +02:00
$adminlist = q ( " SELECT uid, language, email FROM user WHERE email IN (%s) " ,
2014-09-07 13:55:02 +02:00
$admin_mail_list
);
2011-05-24 05:30:37 +02:00
2016-11-18 20:16:22 +01:00
// send notification to admins
2016-09-30 14:57:16 +02:00
foreach ( $adminlist as $admin ) {
2018-01-15 14:05:12 +01:00
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' ],
2018-10-14 14:58:27 +02:00
'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' ,
2016-09-30 14:57:16 +02:00
'show_in_notification_page' => false
2018-01-15 14:05:12 +01:00
]);
2016-09-30 14:57:16 +02:00
}
2016-11-18 20:16:22 +01:00
// send notification to the user, that the registration is pending
2018-10-14 14:58:27 +02:00
Model\User :: sendRegisterPendingEmail (
2018-10-15 17:58:52 +02:00
$user ,
2018-10-14 14:58:27 +02:00
Config :: get ( 'config' , 'sitename' ),
$a -> getBaseURL (),
$result [ 'password' ]
);
2016-09-30 14:57:16 +02:00
2018-01-22 15:16:25 +01:00
info ( L10n :: t ( 'Your registration is pending approval by the site owner.' ) . EOL );
2018-10-19 20:11:27 +02:00
$a -> internalRedirect ();
2011-02-23 10:37:15 +01:00
}
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 )
{
2010-10-18 05:04:17 +02:00
// 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' );
2010-10-18 05:04:17 +02:00
2017-12-09 01:24:43 +01:00
if ( local_user () && ( $block )) {
2011-12-10 01:50:13 +01:00
notice ( " Permission denied. " . EOL );
return ;
}
2018-07-15 21:04:48 +02:00
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 ;
}
}
2018-11-30 15:06:22 +01:00
if ( ! empty ( $_SESSION [ 'theme' ])) {
2011-01-07 13:33:34 +01:00
unset ( $_SESSION [ 'theme' ]);
2017-12-09 01:24:43 +01:00
}
2018-11-30 15:06:22 +01:00
if ( ! empty ( $_SESSION [ 'mobile-theme' ])) {
2012-09-07 01:24:34 +02:00
unset ( $_SESSION [ 'mobile-theme' ]);
2017-12-09 01:24:43 +01:00
}
2011-01-07 13:33:34 +01:00
2018-11-30 15:06:22 +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' , '' );
2010-11-16 05:10:19 +01:00
2017-12-09 01:24:43 +01:00
$noid = Config :: get ( 'system' , 'no_openid' );
2010-11-29 05:58:23 +01:00
2017-12-09 01:24:43 +01:00
if ( $noid ) {
2010-11-29 05:58:23 +01:00
$fillwith = '' ;
2017-12-09 01:24:43 +01:00
$fillext = '' ;
2010-11-29 05:58:23 +01:00
$oidlabel = '' ;
2017-12-09 01:24:43 +01:00
} else {
2018-01-22 15:16:25 +01:00
$fillwith = L10n :: t ( " You may \x28 optionally \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 \x28 optional \x29 : " );
2010-11-29 05:58:23 +01:00
}
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 {
2018-10-31 15:44:06 +01:00
$publish_tpl = Renderer :: getMarkupTemplate ( " profile_publish.tpl " );
2018-10-31 15:35:50 +01:00
$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' ),
2018-01-15 14:05:12 +01:00
]);
2011-02-22 01:50:06 +01:00
}
2017-12-09 01:24:43 +01:00
$r = q ( " SELECT COUNT(*) AS `contacts` FROM `contact` " );
2015-06-30 23:37:31 +02:00
$passwords = ! $r [ 0 ][ " contacts " ];
2018-10-31 15:44:06 +01:00
$tpl = Renderer :: getMarkupTemplate ( " register.tpl " );
2012-03-31 15:15:33 +02:00
2018-01-15 14:05:12 +01:00
$arr = [ 'template' => $tpl ];
2012-03-31 15:15:33 +02:00
2018-12-26 07:06:24 +01:00
Hook :: callAll ( 'register_form' , $arr );
2012-03-31 15:15:33 +02:00
2018-01-08 01:10:09 +01:00
$tpl = $arr [ 'template' ];
2012-09-22 03:04:09 +02:00
2018-05-19 18:53:54 +02:00
$tos = new Tos ();
2018-10-31 15:35:50 +01:00
$o = Renderer :: replaceMacros ( $tpl , [
2017-12-09 01:24:43 +01:00
'$invitations' => Config :: get ( 'system' , 'invitation_only' ),
2018-07-15 21:04:48 +02:00
'$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.' ),
2018-03-01 20:29:01 +01:00
'$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' , '' )),
2010-11-29 05:58:23 +01:00
'$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 " . ': ' ),
2018-01-24 22:51:32 +01:00
'$addrlabel' => L10n :: t ( " Your Email Address: \x28 Initial information will be send there, so this has to be an existing address. \x29 " ),
2015-06-30 23:37:31 +02:00
'$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:' ), '' , '' ],
2018-10-09 19:58:58 +02:00
'$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: ' ),
2010-11-24 05:56:20 +01:00
'$photo' => $photo ,
2011-02-22 01:50:06 +01:00
'$publish' => $profile_publish ,
2018-01-22 15:16:25 +01:00
'$regbutt' => L10n :: t ( 'Register' ),
2010-11-16 05:10:19 +01:00
'$username' => $username ,
'$email' => $email ,
'$nickname' => $nickname ,
2018-10-09 19:58:58 +02:00
'$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' ),
2018-05-19 18:53:54 +02:00
'$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 (),
2018-10-17 21:30:41 +02:00
'$form_security_token' => BaseModule :: getFormSecurityToken ( " register " ),
2018-07-14 18:08:06 +02:00
'$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
}