3 if(! function_exists('register_post')) {
4 function register_post(&$a) {
9 switch($a->config['register_policy']) {
17 case REGISTER_APPROVE:
24 if((! x($_SESSION,'authenticated') && (! x($_SESSION,'administrator')))) {
25 notice( t('Permission denied.') . EOL );
34 $username = ((x($_POST,'username')) ? notags(trim($_POST['username'])) : '');
35 $nickname = ((x($_POST,'nickname')) ? notags(trim($_POST['nickname'])) : '');
36 $email = ((x($_POST,'email')) ? notags(trim($_POST['email'])) : '');
37 $openid_url = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : '');
38 $photo = ((x($_POST,'photo')) ? notags(trim($_POST['photo'])) : '');
39 $publish = ((x($_POST,'profile_publish_reg') && intval($_POST['profile_publish_reg'])) ? 1 : 0);
41 $netpublish = ((strlen(get_config('system','directory_submit_url'))) ? $publish : 0);
43 $tmp_str = $openid_url;
44 if((! x($username)) || (! x($email)) || (! x($nickname))) {
46 if(! validate_url($tmp_str)) {
47 notice( t('Invalid OpenID url') . EOL);
50 $_SESSION['register'] = 1;
51 $_SESSION['openid'] = $openid_url;
52 require_once('library/openid.php');
53 $openid = new LightOpenID;
54 $openid->identity = $openid_url;
55 $openid->returnUrl = $a->get_baseurl() . '/openid';
56 $openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
57 $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
58 goaway($openid->authUrl());
62 notice( t('Please enter the required information.') . EOL );
66 if(! validate_url($tmp_str))
73 if(mb_strlen($username) > 48)
74 $err .= t('Please use a shorter name.') . EOL;
75 if(mb_strlen($username) < 3)
76 $err .= t('Name too short.') . EOL;
78 // I don't really like having this rule, but it cuts down
79 // on the number of auto-registrations by Russian spammers
81 // Using preg_match was completely unreliable, due to mixed UTF-8 regex support
82 // $no_utf = get_config('system','no_utf');
83 // $pat = (($no_utf) ? '/^[a-zA-Z]* [a-zA-Z]*$/' : '/^\p{L}* \p{L}*$/u' );
85 // So now we are just looking for a space in the full name.
87 $loose_reg = get_config('system','no_regfullname');
89 $username = mb_convert_case($username,MB_CASE_TITLE,'UTF-8');
90 if(! strpos($username,' '))
91 $err .= t("That doesn't appear to be your full \x28First Last\x29 name.") . EOL;
94 if(! allowed_email($email))
95 $err .= t('Your email domain is not among those allowed on this site.') . EOL;
97 if((! valid_email($email)) || (! validate_email($email)))
98 $err .= t('Not a valid email address.') . EOL;
100 // Disallow somebody creating an account using openid that uses the admin email address,
101 // since openid bypasses email verification.
103 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0) && strlen($openid_url))
104 $err .= t('Cannot use that email.') . EOL;
106 $nickname = $_POST['nickname'] = strtolower($nickname);
108 if(! preg_match("/^[a-z][a-z0-9\-\_]*$/",$nickname))
109 $err .= t('Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.') . EOL;
110 $r = q("SELECT `uid` FROM `user`
111 WHERE `nickname` = '%s' LIMIT 1",
115 $err .= t('Nickname is already registered. Please choose another.') . EOL;
123 $new_password = autoname(6) . mt_rand(100,9999);
124 $new_password_encoded = hash('whirlpool',$new_password);
126 $res=openssl_pkey_new(array(
127 'digest_alg' => 'sha1',
128 'private_key_bits' => 4096,
129 'encrypt_key' => false ));
134 notice( t('SERIOUS ERROR: Generation of security keys failed.') . EOL);
140 openssl_pkey_export($res, $prvkey);
144 $pkey = openssl_pkey_get_details($res);
145 $pubkey = $pkey["key"];
149 * Create another keypair for signing/verifying
150 * salmon protocol messages. We have to use a slightly
151 * less robust key because this won't be using openssl
152 * but the phpseclib. Since it is PHP interpreted code
153 * it is not nearly as efficient, and the larger keys
154 * will take several minutes each to process.
158 $sres=openssl_pkey_new(array(
159 'digest_alg' => 'sha1',
160 'private_key_bits' => 512,
161 'encrypt_key' => false ));
167 openssl_pkey_export($sres, $sprvkey);
171 $spkey = openssl_pkey_get_details($sres);
172 $spubkey = $spkey["key"];
174 $r = q("INSERT INTO `user` ( `username`, `password`, `email`, `openid`, `nickname`,
175 `pubkey`, `prvkey`, `spubkey`, `sprvkey`, `register_date`, `verified`, `blocked` )
176 VALUES ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d )",
178 dbesc($new_password_encoded),
186 dbesc(datetime_convert()),
192 $r = q("SELECT `uid` FROM `user`
193 WHERE `username` = '%s' AND `password` = '%s' LIMIT 1",
195 dbesc($new_password_encoded)
197 if($r !== false && count($r))
198 $newuid = intval($r[0]['uid']);
201 notice( t('An error occurred during registration. Please try again.') . EOL );
206 * if somebody clicked submit twice very quickly, they could end up with two accounts
207 * due to race condition. Remove this one.
210 $r = q("SELECT `uid` FROM `user`
211 WHERE `nickname` = '%s' ",
214 if((count($r) > 1) && $newuid) {
215 $err .= t('Nickname is already registered. Please choose another.') . EOL;
216 q("DELETE FROM `user` WHERE `uid` = %d LIMIT 1",
223 if(x($newuid) !== false) {
224 $r = q("INSERT INTO `profile` ( `uid`, `profile-name`, `is-default`, `name`, `photo`, `thumb`, `publish`, `net-publish` )
225 VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, %d ) ",
230 dbesc($a->get_baseurl() . "/photo/profile/{$newuid}.jpg"),
231 dbesc($a->get_baseurl() . "/photo/avatar/{$newuid}.jpg"),
237 notice( t('An error occurred creating your default profile. Please try again.') . EOL );
238 // Start fresh next time.
239 $r = q("DELETE FROM `user` WHERE `uid` = %d",
243 $r = q("INSERT INTO `contact` ( `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`,
244 `request`, `notify`, `poll`, `confirm`, `name-date`, `uri-date`, `avatar-date` )
245 VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ",
250 dbesc($a->get_baseurl() . "/photo/profile/{$newuid}.jpg"),
251 dbesc($a->get_baseurl() . "/photo/avatar/{$newuid}.jpg"),
252 dbesc($a->get_baseurl() . "/photo/micro/{$newuid}.jpg"),
253 dbesc($a->get_baseurl() . "/profile/$nickname"),
254 dbesc($a->get_baseurl() . "/dfrn_request/$nickname"),
255 dbesc($a->get_baseurl() . "/dfrn_notify/$nickname"),
256 dbesc($a->get_baseurl() . "/dfrn_poll/$nickname"),
257 dbesc($a->get_baseurl() . "/dfrn_confirm/$nickname"),
258 dbesc(datetime_convert()),
259 dbesc(datetime_convert()),
260 dbesc(datetime_convert())
266 $use_gravatar = ((get_config('system','no_gravatar')) ? false : true);
268 // if we have an openid photo use it.
269 // otherwise unless it is disabled, use gravatar
271 if($use_gravatar || strlen($photo)) {
273 require_once('include/Photo.php');
275 if(($use_gravatar) && (! strlen($photo)))
276 $photo = gravatar_img($email);
277 $photo_failure = false;
279 $filename = basename($photo);
280 $img_str = fetch_url($photo,true);
281 $img = new Photo($img_str);
282 if($img->is_valid()) {
284 $img->scaleImageSquare(175);
286 $hash = photo_new_resource();
288 $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 4 );
291 $photo_failure = true;
293 $img->scaleImage(80);
295 $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 5 );
298 $photo_failure = true;
300 $img->scaleImage(48);
302 $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 6 );
305 $photo_failure = true;
307 if(! $photo_failure) {
308 q("UPDATE `photo` SET `profile` = 1 WHERE `resource-id` = '%s' ",
315 if($netpublish && $a->config['register_policy'] != REGISTER_APPROVE) {
316 $url = $a->get_baseurl() . "/profile/$nickname";
317 proc_run('php',"include/directory.php","$url");
321 if( $a->config['register_policy'] == REGISTER_OPEN ) {
322 $email_tpl = get_intltext_template("register_open_eml.tpl");
323 $email_tpl = replace_macros($email_tpl, array(
324 '$sitename' => $a->config['sitename'],
325 '$siteurl' => $a->get_baseurl(),
326 '$username' => $username,
328 '$password' => $new_password,
329 '$uid' => $newuid ));
331 $res = mail($email, sprintf(t('Registration details for %s'), $a->config['sitename']),
333 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
334 . 'Content-type: text/plain; charset=UTF-8' . "\n"
335 . 'Content-transfer-encoding: 8bit' );
339 notice( t('Registration successful. Please check your email for further instructions.') . EOL ) ;
340 goaway($a->get_baseurl());
343 notice( t('Failed to send email message. Here is the message that failed.') . $email_tpl . EOL );
346 elseif($a->config['register_policy'] == REGISTER_APPROVE) {
347 if(! strlen($a->config['admin_email'])) {
348 notice( t('Your registration can not be processed.') . EOL);
349 goaway($a->get_baseurl());
352 $hash = random_string();
353 $r = q("INSERT INTO `register` ( `hash`, `created`, `uid`, `password` ) VALUES ( '%s', '%s', %d, '%s' ) ",
355 dbesc(datetime_convert()),
360 $email_tpl = get_intltext_template("register_verify_eml.tpl");
361 $email_tpl = replace_macros($email_tpl, array(
362 '$sitename' => $a->config['sitename'],
363 '$siteurl' => $a->get_baseurl(),
364 '$username' => $username,
366 '$password' => $new_password,
371 $res = mail($a->config['admin_email'], sprintf(t('Registration request at %s'), $a->config['sitename']),
373 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
374 . 'Content-type: text/plain; charset=UTF-8' . "\n"
375 . 'Content-transfer-encoding: 8bit' );
377 notice( t('Your registration is pending approval by the site owner.') . EOL ) ;
378 goaway($a->get_baseurl());
391 if(! function_exists('register_content')) {
392 function register_content(&$a) {
394 // logged in users can register others (people/pages/groups)
395 // even with closed registrations, unless specifically prohibited by site policy.
396 // 'block_extended_register' blocks all registrations, period.
398 $block = get_config('system','block_extended_register');
400 if((($a->config['register_policy'] == REGISTER_CLOSED) && (! local_user())) || ($block)) {
401 notice("Permission denied." . EOL);
405 if(x($_SESSION,'theme'))
406 unset($_SESSION['theme']);
409 $username = ((x($_POST,'username')) ? $_POST['username'] : ((x($_GET,'username')) ? $_GET['username'] : ''));
410 $email = ((x($_POST,'email')) ? $_POST['email'] : ((x($_GET,'email')) ? $_GET['email'] : ''));
411 $openid_url = ((x($_POST,'openid_url')) ? $_POST['openid_url'] : ((x($_GET,'openid_url')) ? $_GET['openid_url'] : ''));
412 $nickname = ((x($_POST,'nickname')) ? $_POST['nickname'] : ((x($_GET,'nickname')) ? $_GET['nickname'] : ''));
413 $photo = ((x($_POST,'photo')) ? $_POST['photo'] : ((x($_GET,'photo')) ? hex2bin($_GET['photo']) : ''));
415 $noid = get_config('system','no_openid');
424 $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" >';
425 $fillwith = t("You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'.");
426 $fillext = t('If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.');
427 $oidlabel = t("Your OpenID \x28optional\x29: ");
430 // I set this and got even more fake names than before...
432 $realpeople = ''; // t('Members of this network prefer to communicate with real people who use their real names.');
434 if(get_config('system','publish_all')) {
435 $profile_publish_reg = '<input type="hidden" name="profile_publish_reg" value="1" />';
438 $publish_tpl = get_markup_template("profile_publish.tpl");
439 $profile_publish = replace_macros($publish_tpl,array(
440 '$instance' => 'reg',
441 '$pubdesc' => t('Include your profile in member directory?'),
442 '$yes_selected' => ' checked="checked" ',
443 '$no_selected' => '',
444 '$str_yes' => t('Yes'),
450 $license = t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.');
453 $o = get_markup_template("register.tpl");
454 $o = replace_macros($o, array(
455 '$oidhtml' => $oidhtml,
456 '$realpeople' => $realpeople,
457 '$regtitle' => t('Registration'),
458 '$registertext' =>((x($a->config,'register_text'))
459 ? '<div class="error-message">' . $a->config['register_text'] . '</div>'
461 '$fillwith' => $fillwith,
462 '$fillext' => $fillext,
463 '$oidlabel' => $oidlabel,
464 '$openid' => $openid_url,
465 '$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '),
466 '$addrlabel' => t('Your Email Address: '),
467 '$nickdesc' => t('Choose a profile nickname. This must begin with a text character. Your profile address on this site will then be \'<strong>nickname@$sitename</strong>\'.'),
468 '$nicklabel' => t('Choose a nickname: '),
470 '$publish' => $profile_publish,
471 '$regbutt' => t('Register'),
472 '$username' => $username,
474 '$nickname' => $nickname,
475 '$license' => $license,
476 '$sitename' => $a->get_hostname()