]> git.mxchange.org Git - friendica.git/blob - mod/register.php
resolve file inclusion conflicts w/ multiple plugins, improve the typo checker
[friendica.git] / mod / register.php
1 <?php
2
3 if(! function_exists('register_post')) {
4 function register_post(&$a) {
5
6         $verified = 0;
7         $blocked  = 1;
8
9         switch($a->config['register_policy']) {
10
11         
12         case REGISTER_OPEN:
13                 $blocked = 0;
14                 $verified = 1;
15                 break;
16
17         case REGISTER_APPROVE:
18                 $blocked = 1;
19                 $verified = 0;
20                 break;
21
22         default:
23         case REGISTER_CLOSED:
24                 if((! x($_SESSION,'authenticated') && (! x($_SESSION,'administrator')))) {
25                         notice( t('Permission denied.') . EOL );
26                         return;
27                 }
28                 $blocked = 1;
29                 $verified = 0;
30                 break;
31         }
32
33
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);
40
41         $netpublish = ((strlen(get_config('system','directory_submit_url'))) ? $publish : 0);
42                 
43         $tmp_str = $openid_url;
44         if((! x($username)) || (! x($email)) || (! x($nickname))) {
45                 if($openid_url) {
46                         if(! validate_url($tmp_str)) {
47                                 notice( t('Invalid OpenID url') . EOL);
48                                 return;
49                         }
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());
59                         // NOTREACHED   
60                 }
61
62                 notice( t('Please enter the required information.') . EOL );
63                 return;
64         }
65
66         if(! validate_url($tmp_str))
67                 $openid_url = '';
68
69
70         $err = '';
71
72
73         if(strlen($username) > 48)
74                 $err .= t('Please use a shorter name.') . EOL;
75         if(strlen($username) < 3)
76                 $err .= t('Name too short.') . EOL;
77
78         // I don't really like having this rule, but it cuts down
79         // on the number of auto-registrations by Russian spammers
80         
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' ); 
84
85         // So now we are just looking for a space in the full name. 
86         
87         $loose_reg = get_config('system','no_regfullname');
88         if((! $loose_reg) && (! strpos($username,' ')))
89                 $err .= t("That doesn\'t appear to be your full \x28First Last\x29 name.") . EOL;
90
91         if(! allowed_email($email))
92                         $err .= t('Your email domain is not among those allowed on this site.') . EOL;
93
94         if((! valid_email($email)) || (! validate_email($email)))
95                 $err .= t('Not a valid email address.') . EOL;
96
97         // Disallow somebody creating an account using openid that uses the admin email address,
98         // since openid bypasses email verification.
99
100         if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0) && strlen($openid_url))
101                 $err .= t('Cannot use that email.') . EOL;
102
103         $nickname = $_POST['nickname'] = strtolower($nickname);
104
105         if(! preg_match("/^[a-z][a-z0-9\-\_]*$/",$nickname))
106                 $err .= t('Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.') . EOL;
107         $r = q("SELECT `uid` FROM `user`
108                 WHERE `nickname` = '%s' LIMIT 1",
109                 dbesc($nickname)
110         );
111         if(count($r))
112                 $err .= t('Nickname is already registered. Please choose another.') . EOL;
113
114         if(strlen($err)) {
115                 notice( $err );
116                 return;
117         }
118
119
120         $new_password = autoname(6) . mt_rand(100,9999);
121         $new_password_encoded = hash('whirlpool',$new_password);
122
123         $res=openssl_pkey_new(array(
124                 'digest_alg' => 'sha1',
125                 'private_key_bits' => 4096,
126                 'encrypt_key' => false ));
127
128         // Get private key
129
130         if(empty($res)) {
131                 notice( t('SERIOUS ERROR: Generation of security keys failed.') . EOL);
132                 return;
133         }
134
135         $prvkey = '';
136
137         openssl_pkey_export($res, $prvkey);
138
139         // Get public key
140
141         $pkey = openssl_pkey_get_details($res);
142         $pubkey = $pkey["key"];
143
144         /**
145          *
146          * Create another keypair for signing/verifying
147          * salmon protocol messages. We have to use a slightly
148          * less robust key because this won't be using openssl
149          * but the phpseclib. Since it is PHP interpreted code
150          * it is not nearly as efficient, and the larger keys
151          * will take several minutes each to process.
152          *
153          */
154         
155         $sres=openssl_pkey_new(array(
156                 'digest_alg' => 'sha1',
157                 'private_key_bits' => 512,
158                 'encrypt_key' => false ));
159
160         // Get private key
161
162         $sprvkey = '';
163
164         openssl_pkey_export($sres, $sprvkey);
165
166         // Get public key
167
168         $spkey = openssl_pkey_get_details($sres);
169         $spubkey = $spkey["key"];
170
171         $r = q("INSERT INTO `user` ( `username`, `password`, `email`, `openid`, `nickname`,
172                 `pubkey`, `prvkey`, `spubkey`, `sprvkey`, `register_date`, `verified`, `blocked` )
173                 VALUES ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d )",
174                 dbesc($username),
175                 dbesc($new_password_encoded),
176                 dbesc($email),
177                 dbesc($openid_url),
178                 dbesc($nickname),
179                 dbesc($pubkey),
180                 dbesc($prvkey),
181                 dbesc($spubkey),
182                 dbesc($sprvkey),
183                 dbesc(datetime_convert()),
184                 intval($verified),
185                 intval($blocked)
186                 );
187
188         if($r) {
189                 $r = q("SELECT `uid` FROM `user` 
190                         WHERE `username` = '%s' AND `password` = '%s' LIMIT 1",
191                         dbesc($username),
192                         dbesc($new_password_encoded)
193                         );
194                 if($r !== false && count($r))
195                         $newuid = intval($r[0]['uid']);
196         }
197         else {
198                 notice( t('An error occurred during registration. Please try again.') . EOL );
199                 return;
200         }               
201
202         if(x($newuid) !== false) {
203                 $r = q("INSERT INTO `profile` ( `uid`, `profile-name`, `is-default`, `name`, `photo`, `thumb`, `publish`, `net-publish` )
204                         VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, %d ) ",
205                         intval($newuid),
206                         'default',
207                         1,
208                         dbesc($username),
209                         dbesc($a->get_baseurl() . "/photo/profile/{$newuid}.jpg"),
210                         dbesc($a->get_baseurl() . "/photo/avatar/{$newuid}.jpg"),
211                         intval($publish),
212                         intval($netpublish)
213
214                 );
215                 if($r === false) {
216                         notice( t('An error occurred creating your default profile. Please try again.') . EOL );
217                         // Start fresh next time.
218                         $r = q("DELETE FROM `user` WHERE `uid` = %d",
219                                 intval($newuid));
220                         return;
221                 }
222                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`,
223                         `request`, `notify`, `poll`, `confirm`, `name-date`, `uri-date`, `avatar-date` )
224                         VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s' ) ",
225                         intval($newuid),
226                         datetime_convert(),
227                         dbesc($username),
228                         dbesc($nickname),
229                         dbesc($a->get_baseurl() . "/photo/profile/{$newuid}.jpg"),
230                         dbesc($a->get_baseurl() . "/photo/avatar/{$newuid}.jpg"),
231                         dbesc($a->get_baseurl() . "/photo/micro/{$newuid}.jpg"),
232                         dbesc($a->get_baseurl() . "/profile/$nickname"),
233                         dbesc($a->get_baseurl() . "/dfrn_request/$nickname"),
234                         dbesc($a->get_baseurl() . "/dfrn_notify/$nickname"),
235                         dbesc($a->get_baseurl() . "/dfrn_poll/$nickname"),
236                         dbesc($a->get_baseurl() . "/dfrn_confirm/$nickname"),
237                         dbesc(datetime_convert()),
238                         dbesc(datetime_convert()),
239                         dbesc(datetime_convert())
240                 );
241
242
243         }
244
245         $use_gravatar = ((get_config('system','no_gravatar')) ? false : true);
246
247         // if we have an openid photo use it. 
248         // otherwise unless it is disabled, use gravatar
249
250         if($use_gravatar || strlen($photo)) {
251
252                 require_once('include/Photo.php');
253
254                 if(($use_gravatar) && (! strlen($photo))) 
255                         $photo = gravatar_img($email);
256                 $photo_failure = false;
257
258                 $filename = basename($photo);
259                 $img_str = fetch_url($photo,true);
260                 $img = new Photo($img_str);
261                 if($img->is_valid()) {
262
263                         $img->scaleImageSquare(175);
264                                         
265                         $hash = photo_new_resource();
266
267                         $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 4 );
268
269                         if($r === false)
270                                 $photo_failure = true;
271
272                         $img->scaleImage(80);
273
274                         $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 5 );
275
276                         if($r === false)
277                                 $photo_failure = true;
278
279                         $img->scaleImage(48);
280
281                         $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 6 );
282
283                         if($r === false)
284                                 $photo_failure = true;
285
286                         if(! $photo_failure) {
287                                 q("UPDATE `photo` SET `profile` = 1 WHERE `resource-id` = '%s' ",
288                                         dbesc($hash)
289                                 );
290                         }
291                 }
292         }
293
294         if( $a->config['register_policy'] == REGISTER_OPEN ) {
295                 $email_tpl = load_view_file("view/register_open_eml.tpl");
296                 $email_tpl = replace_macros($email_tpl, array(
297                                 '$sitename' => $a->config['sitename'],
298                                 '$siteurl' =>  $a->get_baseurl(),
299                                 '$username' => $username,
300                                 '$email' => $email,
301                                 '$password' => $new_password,
302                                 '$uid' => $newuid ));
303
304                 $res = mail($email, t('Registration details for ') . $a->config['sitename'],
305                         $email_tpl, 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME']);
306
307
308                 if($res) {
309                         notice( t('Registration successful. Please check your email for further instructions.') . EOL ) ;
310                         goaway($a->get_baseurl());
311                 }
312                 else {
313                         notice( t('Failed to send email message. Here is the message that failed.') . $email_tpl . EOL );
314                 }
315         }
316         elseif($a->config['register_policy'] == REGISTER_APPROVE) {
317                 if(! strlen($a->config['admin_email'])) {
318                         notice( t('Your registration can not be processed.') . EOL);
319                         goaway($a->get_baseurl());
320                 }
321
322                 $hash = random_string();
323                 $r = q("INSERT INTO `register` ( `hash`, `created`, `uid`, `password` ) VALUES ( '%s', '%s', %d, '%s' ) ",
324                         dbesc($hash),
325                         dbesc(datetime_convert()),
326                         intval($newuid),
327                         dbesc($new_password)
328                 );
329
330                 $email_tpl = load_view_file("view/register_verify_eml.tpl");
331                 $email_tpl = replace_macros($email_tpl, array(
332                                 '$sitename' => $a->config['sitename'],
333                                 '$siteurl' =>  $a->get_baseurl(),
334                                 '$username' => $username,
335                                 '$email' => $email,
336                                 '$password' => $new_password,
337                                 '$uid' => $newuid,
338                                 '$hash' => $hash
339                  ));
340
341                 $res = mail($a->config['admin_email'], t('Registration request at ') . $a->config['sitename'],
342                         $email_tpl,'From: ' .  t('Administrator') . '@' . $_SERVER['SERVER_NAME']);
343
344                 if($res) {
345                         notice( t('Your registration is pending approval by the site owner.') . EOL ) ;
346                         goaway($a->get_baseurl());
347                 }
348
349         }
350         return;
351 }}
352
353
354
355
356
357
358 if(! function_exists('register_content')) {
359 function register_content(&$a) {
360
361         // logged in users can register others (people/pages/groups)
362         // even with closed registrations, unless specifically prohibited by site policy.
363         // 'block_extended_register' blocks all registrations, period.
364
365         $block = get_config('system','block_extended_register');
366
367         if((($a->config['register_policy'] == REGISTER_CLOSED) && (! local_user())) || ($block)) {
368                 notice("Permission denied." . EOL);
369                 return;
370         }
371
372         if(x($_SESSION,'theme'))
373                 unset($_SESSION['theme']);
374
375
376         $username     = ((x($_POST,'username'))     ? $_POST['username']     : ((x($_GET,'username'))     ? $_GET['username']              : ''));
377         $email        = ((x($_POST,'email'))        ? $_POST['email']        : ((x($_GET,'email'))        ? $_GET['email']                 : ''));
378         $openid_url   = ((x($_POST,'openid_url'))   ? $_POST['openid_url']   : ((x($_GET,'openid_url'))   ? $_GET['openid_url']            : ''));
379         $nickname     = ((x($_POST,'nickname'))     ? $_POST['nickname']     : ((x($_GET,'nickname'))     ? $_GET['nickname']              : ''));
380         $photo        = ((x($_POST,'photo'))        ? $_POST['photo']        : ((x($_GET,'photo'))        ? hex2bin($_GET['photo'])        : ''));
381
382         $noid = get_config('system','no_openid');
383
384         if($noid) {
385                 $oidhtml = '';
386                 $fillwith = '';
387                 $fillext = '';
388                 $oidlabel = '';
389         }
390         else {
391                 $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" >';
392                 $fillwith = t("You may \x28optionally\x29 fill in this form via OpenID by supplying your OpenID and clicking 'Register'.");
393                 $fillext =  t('If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items.');
394                 $oidlabel = t("Your OpenID \x28optional\x29: ");
395         }
396
397         if(get_config('system','publish_all')) {
398                 $profile_publish_reg = '<input type="hidden" name="profile_publish_reg" value="1" />';
399         }
400         else {
401                 $publish_tpl = load_view_file("view/profile_publish.tpl");
402                 $profile_publish = replace_macros($publish_tpl,array(
403                         '$instance'     => 'reg',
404                         '$pubdesc'      => t('Include your profile in member directory?'),
405                         '$yes_selected' => ' checked="checked" ',
406                         '$no_selected'  => '',
407                         '$str_yes'      => t('Yes'),
408                         '$str_no'       => t('No')
409                 ));
410         }
411
412
413         $license = t('Shared content is covered by the <a href="http://creativecommons.org/licenses/by/3.0/">Creative Commons Attribution 3.0</a> license.');
414
415
416         $o = load_view_file("view/register.tpl");
417         $o = replace_macros($o, array(
418                 '$oidhtml' => $oidhtml,
419                 '$regtitle'  => t('Registration'),
420                 '$registertext' =>((x($a->config,'register_text'))
421                         ? '<div class="error-message">' . $a->config['register_text'] . '</div>'
422                         : "" ),
423                 '$fillwith'  => $fillwith,
424                 '$fillext'   => $fillext,
425                 '$oidlabel'  => $oidlabel,
426                 '$openid'    => $openid_url,
427                 '$namelabel' => t('Your Full Name ' . "\x28" . 'e.g. Joe Smith' . "\x29" . ': '),
428                 '$addrlabel' => t('Your Email Address: '),
429                 '$nickdesc'  => t('Choose a profile nickname. This must begin with a text character. Your global profile locator will then be \'<strong>nickname@$sitename</strong>\'.'),
430                 '$nicklabel' => t('Choose a nickname: '),
431                 '$photo'     => $photo,
432                 '$publish'   => $profile_publish,
433                 '$regbutt'   => t('Register'),
434                 '$username'  => $username,
435                 '$email'     => $email,
436                 '$nickname'  => $nickname,
437                 '$license'   => $license,
438                 '$sitename'  => $a->get_hostname()
439         ));
440         return $o;
441
442 }}
443