]> git.mxchange.org Git - friendica.git/blob - include/user.php
allow Smarty use on international templates
[friendica.git] / include / user.php
1 <?php
2
3 require_once('include/config.php');
4 require_once('include/network.php');
5 require_once('include/plugin.php');
6 require_once('include/text.php');
7 require_once('include/pgettext.php');
8 require_once('include/datetime.php');
9
10
11 function create_user($arr) {
12
13         // Required: { username, nickname, email } or { openid_url }
14
15         $a = get_app();
16         $result = array('success' => false, 'user' => null, 'password' => '', 'message' => '');
17
18         $using_invites = get_config('system','invitation_only');
19         $num_invites   = get_config('system','number_invites');
20
21
22         $invite_id  = ((x($arr,'invite_id'))  ? notags(trim($arr['invite_id']))  : '');
23         $username   = ((x($arr,'username'))   ? notags(trim($arr['username']))   : '');
24         $nickname   = ((x($arr,'nickname'))   ? notags(trim($arr['nickname']))   : '');
25         $email      = ((x($arr,'email'))      ? notags(trim($arr['email']))      : '');
26         $openid_url = ((x($arr,'openid_url')) ? notags(trim($arr['openid_url'])) : '');
27         $photo      = ((x($arr,'photo'))      ? notags(trim($arr['photo']))      : '');
28         $password   = ((x($arr,'password'))   ? trim($arr['password'])           : '');
29         $blocked    = ((x($arr,'blocked'))    ? intval($arr['blocked'])  : 0);
30         $verified   = ((x($arr,'verified'))   ? intval($arr['verified']) : 0);
31
32         $publish    = ((x($arr,'profile_publish_reg') && intval($arr['profile_publish_reg'])) ? 1 : 0);
33         $netpublish = ((strlen(get_config('system','directory_submit_url'))) ? $publish : 0);
34                 
35         $tmp_str = $openid_url;
36
37         if($using_invites) {
38                 if(! $invite_id) {
39                         $result['message'] .= t('An invitation is required.') . EOL;
40                         return $result;
41                 }
42                 $r = q("select * from register where `hash` = '%s' limit 1", dbesc($invite_id));
43                 if(! results($r)) {
44                         $result['message'] .= t('Invitation could not be verified.') . EOL;
45                         return $result;
46                 }
47         } 
48
49         if((! x($username)) || (! x($email)) || (! x($nickname))) {
50                 if($openid_url) {
51                         if(! validate_url($tmp_str)) {
52                                 $result['message'] .= t('Invalid OpenID url') . EOL;
53                                 return $result;
54                         }
55                         $_SESSION['register'] = 1;
56                         $_SESSION['openid'] = $openid_url;
57                         require_once('library/openid.php');
58                         $openid = new LightOpenID;
59                         $openid->identity = $openid_url;
60                         $openid->returnUrl = $a->get_baseurl() . '/openid'; 
61                         $openid->required = array('namePerson/friendly', 'contact/email', 'namePerson');
62                         $openid->optional = array('namePerson/first','media/image/aspect11','media/image/default');
63                         goaway($openid->authUrl());
64                         // NOTREACHED   
65                 }
66
67                 notice( t('Please enter the required information.') . EOL );
68                 return;
69         }
70
71         if(! validate_url($tmp_str))
72                 $openid_url = '';
73
74
75         $err = '';
76
77         // collapse multiple spaces in name
78         $username = preg_replace('/ +/',' ',$username);
79
80         if(mb_strlen($username) > 48)
81                 $result['message'] .= t('Please use a shorter name.') . EOL;
82         if(mb_strlen($username) < 3)
83                 $result['message'] .= t('Name too short.') . EOL;
84
85         // I don't really like having this rule, but it cuts down
86         // on the number of auto-registrations by Russian spammers
87         
88         //  Using preg_match was completely unreliable, due to mixed UTF-8 regex support
89         //      $no_utf = get_config('system','no_utf');
90         //      $pat = (($no_utf) ? '/^[a-zA-Z]* [a-zA-Z]*$/' : '/^\p{L}* \p{L}*$/u' ); 
91
92         // So now we are just looking for a space in the full name. 
93         
94         $loose_reg = get_config('system','no_regfullname');
95         if(! $loose_reg) {
96                 $username = mb_convert_case($username,MB_CASE_TITLE,'UTF-8');
97                 if(! strpos($username,' '))
98                         $result['message'] .= t("That doesn't appear to be your full \x28First Last\x29 name.") . EOL;
99         }
100
101
102         if(! allowed_email($email))
103                 $result['message'] .= t('Your email domain is not among those allowed on this site.') . EOL;
104
105         if((! valid_email($email)) || (! validate_email($email)))
106                 $result['message'] .= t('Not a valid email address.') . EOL;
107                 
108         // Disallow somebody creating an account using openid that uses the admin email address,
109         // since openid bypasses email verification. We'll allow it if there is not yet an admin account.
110
111         if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0) && strlen($openid_url)) {
112                 $r = q("SELECT * FROM `user` WHERE `email` = '%s' LIMIT 1",
113                         dbesc($email)
114                 );
115                 if(count($r))
116                         $result['message'] .= t('Cannot use that email.') . EOL;
117         }
118
119         $nickname = $arr['nickname'] = strtolower($nickname);
120
121         if(! preg_match("/^[a-z][a-z0-9\-\_]*$/",$nickname))
122                 $result['message'] .= t('Your "nickname" can only contain "a-z", "0-9", "-", and "_", and must also begin with a letter.') . EOL;
123         $r = q("SELECT `uid` FROM `user`
124                 WHERE `nickname` = '%s' LIMIT 1",
125                 dbesc($nickname)
126         );
127         if(count($r))
128                 $result['message'] .= t('Nickname is already registered. Please choose another.') . EOL;
129
130         // Check deleted accounts that had this nickname. Doesn't matter to us,
131         // but could be a security issue for federated platforms.
132
133         $r = q("SELECT * FROM `userd`
134                 WHERE `username` = '%s' LIMIT 1",
135                 dbesc($nickname)
136         );
137         if(count($r))
138                 $result['message'] .= t('Nickname was once registered here and may not be re-used. Please choose another.') . EOL;
139
140         if(strlen($result['message'])) {
141                 return $result;
142         }
143
144         $new_password = ((strlen($password)) ? $password : autoname(6) . mt_rand(100,9999));
145         $new_password_encoded = hash('whirlpool',$new_password);
146
147         $result['password'] = $new_password;
148
149         require_once('include/crypto.php');
150
151         $keys = new_keypair(4096);
152
153         if($keys === false) {
154                 $result['message'] .= t('SERIOUS ERROR: Generation of security keys failed.') . EOL;
155                 return $result;
156         }
157
158         $default_service_class = get_config('system','default_service_class');
159         if(! $default_service_class)
160                 $default_service_class = '';
161
162
163         $prvkey = $keys['prvkey'];
164         $pubkey = $keys['pubkey'];
165
166         /**
167          *
168          * Create another keypair for signing/verifying
169          * salmon protocol messages. We have to use a slightly
170          * less robust key because this won't be using openssl
171          * but the phpseclib. Since it is PHP interpreted code
172          * it is not nearly as efficient, and the larger keys
173          * will take several minutes each to process.
174          *
175          */
176         
177         $sres    = new_keypair(512);
178         $sprvkey = $sres['prvkey'];
179         $spubkey = $sres['pubkey'];
180
181         $r = q("INSERT INTO `user` ( `guid`, `username`, `password`, `email`, `openid`, `nickname`,
182                 `pubkey`, `prvkey`, `spubkey`, `sprvkey`, `register_date`, `verified`, `blocked`, `timezone`, `service_class` )
183                 VALUES ( '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, 'UTC', '%s' )",
184                 dbesc(generate_user_guid()),
185                 dbesc($username),
186                 dbesc($new_password_encoded),
187                 dbesc($email),
188                 dbesc($openid_url),
189                 dbesc($nickname),
190                 dbesc($pubkey),
191                 dbesc($prvkey),
192                 dbesc($spubkey),
193                 dbesc($sprvkey),
194                 dbesc(datetime_convert()),
195                 intval($verified),
196                 intval($blocked),
197                 dbesc($default_service_class)
198         );
199
200         if($r) {
201                 $r = q("SELECT * FROM `user` 
202                         WHERE `username` = '%s' AND `password` = '%s' LIMIT 1",
203                         dbesc($username),
204                         dbesc($new_password_encoded)
205                 );
206                 if($r !== false && count($r)) {
207                         $u = $r[0];
208                         $newuid = intval($r[0]['uid']);
209                 }
210         }
211         else {
212                 $result['message'] .=  t('An error occurred during registration. Please try again.') . EOL ;
213                 return $result;
214         }               
215
216         /**
217          * if somebody clicked submit twice very quickly, they could end up with two accounts 
218          * due to race condition. Remove this one.
219          */
220
221         $r = q("SELECT `uid` FROM `user`
222                 WHERE `nickname` = '%s' ",
223                 dbesc($nickname)
224         );
225         if((count($r) > 1) && $newuid) {
226                 $result['message'] .= t('Nickname is already registered. Please choose another.') . EOL;
227                 q("DELETE FROM `user` WHERE `uid` = %d LIMIT 1",
228                         intval($newuid)
229                 );
230                 return $result;
231         }
232
233         if(x($newuid) !== false) {
234                 $r = q("INSERT INTO `profile` ( `uid`, `profile-name`, `is-default`, `name`, `photo`, `thumb`, `publish`, `net-publish` )
235                         VALUES ( %d, '%s', %d, '%s', '%s', '%s', %d, %d ) ",
236                         intval($newuid),
237                         t('default'),
238                         1,
239                         dbesc($username),
240                         dbesc($a->get_baseurl() . "/photo/profile/{$newuid}.jpg"),
241                         dbesc($a->get_baseurl() . "/photo/avatar/{$newuid}.jpg"),
242                         intval($publish),
243                         intval($netpublish)
244
245                 );
246                 if($r === false) {
247                         $result['message'] .=  t('An error occurred creating your default profile. Please try again.') . EOL;
248                         // Start fresh next time.
249                         $r = q("DELETE FROM `user` WHERE `uid` = %d",
250                                 intval($newuid));
251                         return $result;
252                 }
253                 $r = q("INSERT INTO `contact` ( `uid`, `created`, `self`, `name`, `nick`, `photo`, `thumb`, `micro`, `blocked`, `pending`, `url`, `nurl`,
254                         `request`, `notify`, `poll`, `confirm`, `poco`, `name-date`, `uri-date`, `avatar-date`, `closeness` )
255                         VALUES ( %d, '%s', 1, '%s', '%s', '%s', '%s', '%s', 0, 0, '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', '%s', 0 ) ",
256                         intval($newuid),
257                         datetime_convert(),
258                         dbesc($username),
259                         dbesc($nickname),
260                         dbesc($a->get_baseurl() . "/photo/profile/{$newuid}.jpg"),
261                         dbesc($a->get_baseurl() . "/photo/avatar/{$newuid}.jpg"),
262                         dbesc($a->get_baseurl() . "/photo/micro/{$newuid}.jpg"),
263                         dbesc($a->get_baseurl() . "/profile/$nickname"),
264                         dbesc(normalise_link($a->get_baseurl() . "/profile/$nickname")),
265                         dbesc($a->get_baseurl() . "/dfrn_request/$nickname"),
266                         dbesc($a->get_baseurl() . "/dfrn_notify/$nickname"),
267                         dbesc($a->get_baseurl() . "/dfrn_poll/$nickname"),
268                         dbesc($a->get_baseurl() . "/dfrn_confirm/$nickname"),
269                         dbesc($a->get_baseurl() . "/poco/$nickname"),
270                         dbesc(datetime_convert()),
271                         dbesc(datetime_convert()),
272                         dbesc(datetime_convert())
273                 );
274
275                 // Create a group with no members. This allows somebody to use it 
276                 // right away as a default group for new contacts. 
277
278                 require_once('include/group.php');
279                 group_add($newuid, t('Friends'));
280
281                 $r = q("SELECT id FROM `group` WHERE uid = %d AND name = '%s'",
282                         intval($newuid),
283                         dbesc(t('Friends'))
284                 );
285                 if($r && count($r)) {
286                         $def_gid = $r[0]['id'];
287
288                         q("UPDATE user SET def_gid = %d WHERE uid = %d",
289                                 intval($r[0]['id']),
290                                 intval($newuid)
291                         );
292                 }
293
294                 if(get_config('system', 'newuser_private') && $def_gid) {
295                         q("UPDATE user SET allow_gid = '%s' WHERE uid = %d",
296                            dbesc("<" . $def_gid . ">"),
297                            intval($newuid)
298                         );
299                 }
300
301         }
302
303         // if we have no OpenID photo try to look up an avatar
304         if(! strlen($photo))
305                 $photo = avatar_img($email);
306
307         // unless there is no avatar-plugin loaded
308         if(strlen($photo)) {
309                 require_once('include/Photo.php');
310                 $photo_failure = false;
311
312                 $filename = basename($photo);
313                 $img_str = fetch_url($photo,true);
314                 // guess mimetype from headers or filename
315                 $type = guess_image_type($photo,true);
316
317                 
318                 $img = new Photo($img_str, $type);
319                 if($img->is_valid()) {
320
321                         $img->scaleImageSquare(175);
322
323                         $hash = photo_new_resource();
324
325                         $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 4 );
326
327                         if($r === false)
328                                 $photo_failure = true;
329
330                         $img->scaleImage(80);
331
332                         $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 5 );
333
334                         if($r === false)
335                                 $photo_failure = true;
336
337                         $img->scaleImage(48);
338
339                         $r = $img->store($newuid, 0, $hash, $filename, t('Profile Photos'), 6 );
340
341                         if($r === false)
342                                 $photo_failure = true;
343
344                         if(! $photo_failure) {
345                                 q("UPDATE `photo` SET `profile` = 1 WHERE `resource-id` = '%s' ",
346                                         dbesc($hash)
347                                 );
348                         }
349                 }
350         }
351
352         call_hooks('register_account', $newuid);
353
354         $result['success'] = true;
355         $result['user'] = $u;
356         return $result;
357
358 }