Allow login of 'ax' accounts.
[platal.git] / classes / user.php
CommitLineData
9f8ebb9f
VZ
1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 Polytechnique.org *
9f8ebb9f
VZ
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
2d96cf7b 22class User extends PlUser
9f8ebb9f 23{
3e53a496
FB
24 private $_profile_fetched = false;
25 private $_profile = null;
26
956608bc
RB
27 // Additional fields (non core)
28 protected $promo = null;
29
70232020 30 // Implementation of the login to uid method.
b1719b13
VZ
31 protected function getLogin($login)
32 {
33 global $globals;
34
f6c58d14
VZ
35 if (!$login) {
36 throw new UserNotFoundException();
37 }
38
455ea0c9 39 if ($login instanceof User) {
14da7ef4 40 return $login->id();
455ea0c9
FB
41 }
42
e7b93962 43 if ($login instanceof Profile) {
3e53a496
FB
44 $this->_profile = $login;
45 $this->_profile_fetched = true;
e7b93962
FB
46 $res = XDB::query('SELECT ap.uid
47 FROM account_profiles AS ap
48 WHERE ap.pid = {?} AND FIND_IN_SET(\'owner\', perms)',
49 $login->id());
50 if ($res->numRows()) {
51 return $res->fetchOneCell();
52 }
53 throw new UserNotFoundException();
54 }
55
b1719b13
VZ
56 // If $data is an integer, fetches directly the result.
57 if (is_numeric($login)) {
e7b93962
FB
58 $res = XDB::query('SELECT a.uid
59 FROM accounts AS a
60 WHERE a.uid = {?}', $login);
b1719b13 61 if ($res->numRows()) {
70232020 62 return $res->fetchOneCell();
b1719b13
VZ
63 }
64
65 throw new UserNotFoundException();
66 }
67
68 // Checks whether $login is a valid hruid or not.
e7b93962
FB
69 $res = XDB::query('SELECT a.uid
70 FROM accounts AS a
71 WHERE a.hruid = {?}', $login);
b1719b13 72 if ($res->numRows()) {
70232020 73 return $res->fetchOneCell();
b1719b13
VZ
74 }
75
76 // From now, $login can only by an email alias, or an email redirection.
77 // If it doesn't look like a valid address, appends the plat/al's main domain.
78 $login = trim(strtolower($login));
79 if (strstr($login, '@') === false) {
80 $login = $login . '@' . $globals->mail->domain;
81 }
82
83 // Checks if $login is a valid alias on the main domains.
84 list($mbox, $fqdn) = explode('@', $login);
85 if ($fqdn == $globals->mail->domain || $fqdn == $globals->mail->domain2) {
e7b93962
FB
86 $res = XDB::query('SELECT a.uid
87 FROM accounts AS a
fe13bc1d 88 INNER JOIN aliases AS al ON (al.uid = a.uid AND al.type IN (\'alias\', \'a_vie\'))
e7b93962 89 WHERE al.alias = {?}', $mbox);
b1719b13 90 if ($res->numRows()) {
70232020 91 return $res->fetchOneCell();
b1719b13
VZ
92 }
93
94 if (preg_match('/^(.*)\.([0-9]{4})$/u', $mbox, $matches)) {
e7b93962 95 $res = XDB::query('SELECT a.uid
d47dcad7
SJ
96 FROM accounts AS a
97 INNER JOIN aliases AS al ON (al.uid = a.uid AND al.type IN (\'alias\', \'a_vie\'))
98 INNER JOIN account_profiles AS ap ON (a.uid = ap.uid AND FIND_IN_SET(\'owner\', ap.perms))
99 INNER JOIN profiles AS p ON (p.pid = ap.pid)
100 INNER JOIN profile_education AS pe ON (p.pid = pe.pid AND FIND_IN_SET(\'primary\', pe.flags))
101 WHERE p.hrpid = {?} OR ((pe.entry_year <= {?} AND pe.grad_year >= {?}) AND al.alias = {?})
102 GROUP BY a.uid',
103 $matches[0], $matches[2], $matches[2], $matches[1]);
b1719b13 104 if ($res->numRows() == 1) {
70232020 105 return $res->fetchOneCell();
b1719b13 106 }
d47dcad7 107 }
b1719b13
VZ
108
109 throw new UserNotFoundException();
110 }
111
112 // Looks for $login as an email alias from the dedicated alias domain.
113 if ($fqdn == $globals->mail->alias_dom || $fqdn == $globals->mail->alias_dom2) {
114 $res = XDB::query("SELECT redirect
115 FROM virtual_redirect
116 INNER JOIN virtual USING(vid)
117 WHERE alias = {?}", $mbox . '@' . $globals->mail->alias_dom);
118 if ($redir = $res->fetchOneCell()) {
119 // We now have a valid alias, which has to be translated to an hruid.
120 list($alias, $alias_fqdn) = explode('@', $redir);
e7b93962
FB
121 $res = XDB::query("SELECT a.uid
122 FROM accounts AS a
fe13bc1d 123 LEFT JOIN aliases AS al ON (al.uid = a.uid AND al.type IN ('alias', 'a_vie'))
e7b93962 124 WHERE al.alias = {?}", $alias);
b1719b13 125 if ($res->numRows()) {
70232020 126 return $res->fetchOneCell();
b1719b13
VZ
127 }
128 }
129
130 throw new UserNotFoundException();
131 }
132
cb8a8977
FB
133 // Looks for an account with the given email.
134 $res = XDB::query('SELECT a.uid
135 FROM accounts AS a
136 WHERE a.email = {?}', $login);
137 if ($res->numRows() == 1) {
138 return $res->fetchOneCell();
139 }
140
b1719b13 141 // Otherwise, we do suppose $login is an email redirection.
e7b93962
FB
142 $res = XDB::query("SELECT a.uid
143 FROM accounts AS a
144 LEFT JOIN emails AS e ON (e.uid = a.uid)
b1719b13
VZ
145 WHERE e.email = {?}", $login);
146 if ($res->numRows() == 1) {
70232020 147 return $res->fetchOneCell();
b1719b13
VZ
148 }
149
150 throw new UserNotFoundException($res->fetchColumn(1));
151 }
152
0d906109 153 protected static function loadMainFieldsFromUIDs(array $uids, $respect_order = true)
832e6fcb 154 {
6d33f1d3
FB
155 if (empty($uids)) {
156 return PlIteratorUtils::emptyIterator();
157 }
158
45dcd6dd 159 global $globals;
832e6fcb 160 $joins = '';
45dcd6dd 161 $fields = array();
45dcd6dd 162 if ($globals->asso('id')) {
eb41eda9 163 $joins .= XDB::format("LEFT JOIN group_members AS gpm ON (gpm.uid = a.uid AND gpm.asso_id = {?})\n", $globals->asso('id'));
45dcd6dd 164 $fields[] = 'gpm.perms AS group_perms';
a6761ca9 165 $fields[] = 'gpm.comm AS group_comm';
45dcd6dd
FB
166 }
167 if (count($fields) > 0) {
168 $fields = ', ' . implode(', ', $fields);
a3118782
FB
169 } else {
170 $fields = '';
45dcd6dd 171 }
0d906109
RB
172
173 if ($respect_order) {
174 $order = 'ORDER BY ' . XDB::formatCustomOrder('a.uid', $uids);
175 } else {
176 $order = '';
177 }
178
45dcd6dd 179 $uids = array_map(array('XDB', 'escape'), $uids);
0d906109 180
777c5910 181 return XDB::iterator('SELECT a.uid, a.hruid, a.registration_date, ah.alias AS homonym,
33a4f3f9
SJ
182 IF (af.alias IS NULL, NULL, CONCAT(af.alias, \'@' . $globals->mail->domain . '\')) AS forlife,
183 IF (af.alias IS NULL, NULL, CONCAT(af.alias, \'@' . $globals->mail->domain2 . '\')) AS forlife_alternate,
184 IF (ab.alias IS NULL, NULL, CONCAT(ab.alias, \'@' . $globals->mail->domain . '\')) AS bestalias,
185 IF (ab.alias IS NULL, NULL, CONCAT(ab.alias, \'@' . $globals->mail->domain2 . '\')) AS bestalias_alternate,
186 a.email, a.full_name, a.directory_name, a.display_name, a.sex = \'female\' AS gender,
7fd6dbb3 187 IF(a.state = \'active\', CONCAT(at.perms, \',\', IF(a.user_perms IS NULL, \'\', a.user_perms)), \'\') AS perms,
2914271e 188 a.user_perms, a.email_format, a.is_admin, a.state, a.type, a.skin,
832e6fcb 189 FIND_IN_SET(\'watch\', a.flags) AS watch, a.comment,
2ab3486b
SJ
190 a.weak_password IS NOT NULL AS weak_access, g.g_account_name IS NOT NULL AS googleapps,
191 a.token IS NOT NULL AS token_access, a.token, a.last_version,
192 (e.email IS NULL AND NOT FIND_IN_SET(\'googleapps\', eo.storage)) AND a.state != \'pending\' AS lost,
193 UNIX_TIMESTAMP(s.start) AS lastlogin, s.host, UNIX_TIMESTAMP(fp.last_seen) AS banana_last
2c411733 194 ' . $fields . '
832e6fcb
FB
195 FROM accounts AS a
196 INNER JOIN account_types AS at ON (at.type = a.type)
fe13bc1d
FB
197 LEFT JOIN aliases AS af ON (af.uid = a.uid AND af.type = \'a_vie\')
198 LEFT JOIN aliases AS ab ON (ab.uid = a.uid AND FIND_IN_SET(\'bestalias\', ab.flags))
777c5910 199 LEFT JOIN aliases AS ah ON (ah.uid = a.uid AND ah.type = \'homonyme\')
2c411733
FB
200 LEFT JOIN emails AS e ON (e.uid = a.uid AND e.flags = \'active\')
201 LEFT JOIN email_options AS eo ON (eo.uid = a.uid)
2ab3486b
SJ
202 LEFT JOIN gapps_accounts AS g ON (a.uid = g.l_userid AND g.g_status = \'active\')
203 LEFT JOIN log_last_sessions AS ls ON (ls.uid = a.uid)
204 LEFT JOIN log_sessions AS s ON (s.id = ls.id)
205 LEFT JOIN forum_profiles AS fp ON (fp.uid = a.uid)
d865c296 206 ' . $joins . '
832e6fcb 207 WHERE a.uid IN (' . implode(', ', $uids) . ')
0d906109
RB
208 GROUP BY a.uid
209 ' . $order);
832e6fcb
FB
210 }
211
70232020
VZ
212 // Implementation of the data loader.
213 protected function loadMainFields()
214 {
c4012d9b
VZ
215 if ($this->hruid !== null && $this->forlife !== null
216 && $this->bestalias !== null && $this->display_name !== null
8f2104cb 217 && $this->full_name !== null && $this->perms !== null
c4012d9b 218 && $this->gender !== null && $this->email_format !== null) {
70232020
VZ
219 return;
220 }
1bf36cd1 221 $this->fillFromArray(self::loadMainFieldsFromUIDs(array($this->uid))->next());
70232020
VZ
222 }
223
50d5ec0b
FB
224 // Specialization of the buildPerms method
225 // This function build 'generic' permissions for the user. It does not take
226 // into account page specific permissions (e.g X.net group permissions)
227 protected function buildPerms()
228 {
229 if (!is_null($this->perm_flags)) {
230 return;
231 }
232 if ($this->perms === null) {
233 $this->loadMainFields();
234 }
365ba8c3 235 $this->perm_flags = self::makePerms($this->perms, $this->is_admin);
50d5ec0b
FB
236 }
237
7f1ff426
FB
238 // We do not want to store the password in the object.
239 // So, fetch it 'on demand'
240 public function password()
241 {
242 return XDB::fetchOneCell('SELECT a.password
243 FROM accounts AS a
244 WHERE a.uid = {?}', $this->id());
245 }
246
280806d9
SJ
247 public function isActive()
248 {
249 return $this->state == 'active';
250 }
251
8f2104cb
FB
252 /** Overload PlUser::promo(): there no promo defined for a user in the current
253 * schema. The promo is a field from the profile.
254 */
255 public function promo()
256 {
257 if (!$this->hasProfile()) {
258 return '';
259 }
260 return $this->profile()->promo();
261 }
262
a6761ca9
FB
263 public function firstName()
264 {
265 if (!$this->hasProfile()) {
266 return $this->displayName();
267 }
268 return $this->profile()->firstName();
269 }
270
271 public function lastName()
272 {
273 if (!$this->hasProfile()) {
274 return '';
275 }
276 return $this->profile()->lastName();
277 }
278
2ab3486b
SJ
279 public function displayName()
280 {
281 if (!$this->hasProfile()) {
282 return $this->display_name;
283 }
284 return $this->profile()->yourself;
285 }
286
09e54905
SJ
287 public function fullName($with_promo = false)
288 {
289 if (!$this->hasProfile()) {
290 return $this->full_name;
291 }
292 return $this->profile()->fullName($with_promo);
293 }
294
295 public function directoryName()
296 {
297 if (!$this->hasProfile()) {
d081acb2 298 return $this->directory_name;
09e54905
SJ
299 }
300 return $this->profile()->directory_name;
301 }
302
e7b93962
FB
303 /** Return the main profile attached with this account if any.
304 */
4e698dc9 305 public function profile($forceFetch = false)
e7b93962 306 {
4e698dc9 307 if (!$this->_profile_fetched || $forceFetch) {
3e53a496
FB
308 $this->_profile_fetched = true;
309 $this->_profile = Profile::get($this);
310 }
311 return $this->_profile;
312 }
313
314 /** Return true if the user has an associated profile.
315 */
316 public function hasProfile()
317 {
318 return !is_null($this->profile());
319 }
320
3af21f99
FB
321 /** Check if the user can edit to given profile.
322 */
323 public function canEdit(Profile $profile)
324 {
325 // XXX: Check permissions (e.g. secretary permission)
326 // and flags from the profile
327 return XDB::fetchOneCell('SELECT pid
328 FROM account_profiles
329 WHERE uid = {?} AND pid = {?}',
330 $this->id(), $profile->id());
331 }
332
3e53a496
FB
333 /** Get the email alias of the user.
334 */
335 public function emailAlias()
336 {
337 global $globals;
8f2104cb
FB
338 $data = $this->emailAliases($globals->mail->alias_dom);
339 if (count($data) > 0) {
340 return array_pop($data);
341 }
342 return null;
343 }
344
345 /** Get all the aliases the user belongs to.
346 */
a6761ca9 347 public function emailAliases($domain = null, $type = 'user', $sub_state = false)
8f2104cb 348 {
a6761ca9
FB
349 $join = XDB::format('(vr.redirect = {?} OR vr.redirect = {?}) ',
350 $this->forlifeEmail(), $this->m4xForlifeEmail());
8f2104cb
FB
351 $where = '';
352 if (!is_null($domain)) {
a6761ca9
FB
353 $where = XDB::format('WHERE v.alias LIKE CONCAT("%@", {?})', $domain);
354 }
355 if (!is_null($type)) {
356 if (empty($where)) {
357 $where = XDB::format('WHERE v.type = {?}', $type);
358 } else {
359 $where .= XDB::format(' AND v.type = {?}', $type);
360 }
361 }
362 if ($sub_state) {
363 return XDB::fetchAllAssoc('alias', 'SELECT v.alias, vr.redirect IS NOT NULL AS sub
364 FROM virtual AS v
365 LEFT JOIN virtual_redirect AS vr ON (v.vid = vr.vid AND ' . $join . ')
366 ' . $where);
367 } else {
368 return XDB::fetchColumn('SELECT v.alias
369 FROM virtual AS v
370 INNER JOIN virtual_redirect AS vr ON (v.vid = vr.vid AND ' . $join . ')
371 ' . $where);
8f2104cb 372 }
3e53a496
FB
373 }
374
375 /** Get the alternative forlife email
376 * TODO: remove this uber-ugly hack. The issue is that you need to remove
377 * all @m4x.org addresses in virtual_redirect first.
378 * XXX: This is juste to make code more readable, to be remove as soon as possible
379 */
380 public function m4xForlifeEmail()
381 {
382 global $globals;
383 trigger_error('USING M4X FORLIFE', E_USER_NOTICE);
384 return $this->login() . '@' . $globals->mail->domain2;
e7b93962
FB
385 }
386
38c6fe96
FB
387
388 /** Get marketing informations
389 */
390 private function fetchMarketingData()
391 {
db8432d5 392 if (isset($this->pending_registration_date)) {
38c6fe96
FB
393 return;
394 }
db8432d5
SJ
395 $infos = XDB::fetchOneAssoc('SELECT rp.date AS pending_registration_date, rp.email AS pending_registration_email,
396 rm.last AS last_marketing_date, rm.email AS last_marketing_email
397 FROM accounts AS a
398 LEFT JOIN register_pending AS rp ON (rp.uid = a.uid)
399 LEFT JOIN register_marketing AS rm ON (rm.uid = a.uid AND rm.last != \'0000-00-00\')
400 WHERE a.uid = {?}
401 ORDER BY rm.last DESC', $this->id());
402 if (is_null($infos)) {
403 $infos = array(
404 'pending_registration_date' => null,
405 'pending_registration_email' => null,
406 'last_marketing_date' => null,
407 'last_marketing_email' => null
408 );
38c6fe96
FB
409 }
410 $this->fillFromArray($infos);
411 }
412
db8432d5 413 public function pendingRegistrationDate()
38c6fe96
FB
414 {
415 $this->fetchMarketingData();
db8432d5
SJ
416 return $this->pending_registration_date;
417 }
418
419 public function pendingRegistrationEmail()
420 {
421 $this->fetchMarketingData();
422 return $this->pending_registration_email;
423 }
424
425 public function lastMarketingDate()
426 {
427 $this->fetchMarketingData();
428 return $this->last_marketing_date;
429 }
430
431 public function lastMarketingEmail()
432 {
433 $this->fetchMarketingData();
434 return $this->last_marketing_email;
38c6fe96
FB
435 }
436
437 public function lastKnownEmail()
438 {
439 $this->fetchMarketingData();
db8432d5
SJ
440 if ($this->pending_registration_email > $this->last_marketing_date) {
441 return $this->pending_registration_email;
442 }
443 return $this->last_marketing_email;
38c6fe96
FB
444 }
445
009b8ab7 446
8d308ee4
FB
447 /** Format of the emails sent by the site
448 */
449 public function setEmailFormat($format)
450 {
451 Platal::assert($format == self::FORMAT_HTML || $format == self::FORMAT_TEXT,
452 "Invalid email format \"$format\"");
453 XDB::execute("UPDATE accounts
454 SET email_format = {?}
455 WHERE uid = {?}",
456 $format, $this->uid);
457 $this->email_format = $format;
458 }
459
009b8ab7
FB
460 /** Get watch informations
461 */
462 private function fetchWatchData()
463 {
464 if (isset($this->watch_actions)) {
465 return;
466 }
467 $watch = XDB::fetchOneAssoc('SELECT flags AS watch_flags, actions AS watch_actions,
468 UNIX_TIMESTAMP(last) AS watch_last
469 FROM watch
470 WHERE uid = {?}', $this->id());
471 $watch['watch_flags'] = new PlFlagSet($watch['watch_flags']);
472 $watch['watch_actions'] = new PlFlagSet($watch['watch_actions']);
473 $watch['watch_promos'] = XDB::fetchColumn('SELECT promo
474 FROM watch_promo
475 WHERE uid = {?}', $this->id());
476 $watch['watch_users'] = XDB::fetchColumn('SELECT ni_id
477 FROM watch_nonins
478 WHERE uid = {?}', $this->id());
479 $this->fillFromArray($watch);
480 }
481
a87530ea 482 public function watchType($type)
009b8ab7
FB
483 {
484 $this->fetchWatchData();
485 return $this->watch_actions->hasFlag($type);
486 }
487
488 public function watchContacts()
489 {
490 $this->fetchWatchData();
491 return $this->watch_flags->hasFlag('contacts');
492 }
493
494 public function watchEmail()
495 {
496 $this->fetchWatchData();
497 return $this->watch_flags->hasFlag('mail');
498 }
499
500 public function watchPromos()
501 {
502 $this->fetchWatchData();
503 return $this->watch_promos;
504 }
505
506 public function watchUsers()
507 {
508 $this->fetchWatchData();
509 return $this->watch_users;
510 }
511
512 public function watchLast()
513 {
514 $this->fetchWatchData();
515 return $this->watch_last;
516 }
517
069ddda8
FB
518 public function invalidWatchCache()
519 {
520 unset($this->watch_actions);
521 unset($this->watch_users);
522 unset($this->watch_last);
523 unset($this->watch_promos);
524 }
525
c350577b
FB
526
527 // Contacts
528 private $contacts = null;
48e683dd 529 private function fetchContacts()
c350577b 530 {
76cbe885 531 if (is_null($this->contacts)) {
c350577b
FB
532 $this->contacts = XDB::fetchAllAssoc('contact', 'SELECT *
533 FROM contacts
534 WHERE uid = {?}',
535 $this->id());
536 }
48e683dd
FB
537 }
538
539 public function iterContacts()
540 {
541 $this->fetchContacts();
a289e967 542 return Profile::iterOverPIDs(array_keys($this->contacts));
48e683dd
FB
543 }
544
545 public function getContacts()
546 {
547 $this->fetchContacts();
a289e967 548 return Profile::getBulkProfilesWithPIDs(array_keys($this->contacts));
48e683dd
FB
549 }
550
a289e967 551 public function isContact(Profile &$profile)
48e683dd
FB
552 {
553 $this->fetchContacts();
a289e967 554 return isset($this->contacts[$profile->id()]);
c350577b
FB
555 }
556
958def08
PC
557 public function isWatchedUser(Profile &$profile)
558 {
559 return in_array($profile->id(), $this->watchUsers());
560 }
561
f5ef8b57
RB
562 // Groupes X
563 private $groups = null;
564 public function groups()
565 {
566 if (is_null($this->groups)) {
567 $this->groups = XDB::fetchAllAssoc('asso_id', 'SELECT asso_id, perms, comm
185d4ea1 568 FROM group_members
f5ef8b57
RB
569 WHERE uid = {?}',
570 $this->id());
571 }
572 return $this->groups;
573 }
574
fa589f90
RB
575 public function groupNames($institutions = false)
576 {
577 if ($institutions) {
578 $where = ' AND (g.cat = \'GroupesX\' OR g.cat = \'Institutions\')';
579 } else {
580 $where = '';
581 }
582 return XDB::fetchAllAssoc('SELECT g.diminutif, g.nom, g.site
583 FROM group_members AS gm
584 LEFT JOIN groups AS g ON (g.id = gm.asso_id)
585 WHERE gm.uid = {?}' . $where,
586 $this->id());
587 }
588
6150f591
SJ
589 /**
590 * Clears a user.
591 * *always deletes in: account_lost_passwords, register_marketing,
592 * register_pending, register_subs, watch_nonins, watch, watch_promo
593 * *always keeps in: account_types, accounts, aliases, axletter_ins, carvas,
594 * group_members, homonyms, newsletter_ins, register_mstats,
595 * *deletes if $clearAll: account_auth_openid, announce_read, contacts,
596 * email_options, email_send_save, emails, forum_innd, forum_profiles,
597 * forum_subs, gapps_accounts, gapps_nicknames, group_announces_read,
598 * group_member_sub_requests, reminder, requests, requests_hidden,
599 * virtual, virtual_redirect, ML
600 * *modifies if $clearAll: accounts
601 *
602 * Use cases:
603 * *$clearAll == false: when a user dies, her family still needs to keep in
604 * touch with the community.
605 * *$clearAll == true: in every other case we want the account to be fully
606 * deleted so that it can not be used anymore.
607 */
608 public function clear($clearAll = true)
609 {
405d70cc
RB
610 $tables = array('account_lost_passwords', 'register_marketing',
611 'register_pending', 'register_subs', 'watch_nonins',
612 'watch', 'watch_promo');
613
614 foreach ($tables as $t) {
615 XDB::execute('DELETE FROM ' . $t . '
616 WHERE uid = {?}',
617 $this->id());
618 }
6150f591
SJ
619
620 if ($clearAll) {
c79e28fc
SJ
621 global $globals;
622
0e5b3438
SJ
623 $groupIds = XDB::iterator('SELECT asso_id
624 FROM group_members
625 WHERE uid = {?}',
626 $this->id());
627 while ($groupId = $groupIds->next()) {
628 $group = Group::get($groupId);
c79e28fc 629 if (!empty($group) && $group->notif_unsub) {
0e5b3438
SJ
630 $mailer = new PlMailer('xnetgrp/unsubscription-notif.mail.tpl');
631 $admins = $group->iterAdmins();
632 while ($admin = $admins->next()) {
633 $mailer->addTo($admin);
634 }
635 $mailer->assign('group', $group->shortname);
636 $mailer->assign('user', $this);
637 $mailer->assign('selfdone', false);
638 $mailer->send();
639 }
640 }
641
c79e28fc
SJ
642 $tables = array('account_auth_openid', 'announce_read', 'contacts',
643 'email_options', 'email_send_save', 'emails',
644 'forum_innd', 'forum_profiles', 'forum_subs',
645 'group_announces_read', 'group_members',
646 'group_member_sub_requests', 'reminder', 'requests',
405d70cc 647 'requests_hidden');
405d70cc
RB
648 foreach ($tables as $t) {
649 XDB::execute('DELETE FROM ' . $t . '
650 WHERE uid = {?}',
c79e28fc
SJ
651 $this->id());
652 }
653
654 foreach (array('gapps_accounts', 'gapps_nicknames') as $t) {
655 XDB::execute('DELETE FROM ' . $t . '
656 WHERE l_userid = {?}',
657 $this->id());
405d70cc
RB
658 }
659
6150f591
SJ
660 XDB::execute("UPDATE accounts
661 SET registration_date = 0, state = 'pending', password = NULL,
662 weak_password = NULL, token = NULL, is_admin = 0
663 WHERE uid = {?}",
664 $this->id());
665
666 XDB::execute('DELETE v.*
667 FROM virtual AS v
668 INNER JOIN virtual_redirect AS r ON (v.vid = r.vid)
669 WHERE redirect = {?} OR redirect = {?}',
670 $this->forlifeEmail(), $this->m4xForlifeEmail());
671 XDB::execute('DELETE FROM virtual_redirect
672 WHERE redirect = {?} OR redirect = {?}',
673 $this->forlifeEmail(), $this->m4xForlifeEmail());
674
675 if ($globals->mailstorage->googleapps_domain) {
676 require_once 'googleapps.inc.php';
677
c79e28fc
SJ
678 if (GoogleAppsAccount::account_status($this->id())) {
679 $account = new GoogleAppsAccount($this);
6150f591
SJ
680 $account->suspend();
681 }
682 }
683 }
684
685 $mmlist = new MMList($this);
a85562a0 686 $mmlist->kill($this->hruid, $clearAll);
6150f591
SJ
687 }
688
ab06182d
PC
689 // Merge all infos in other user and then clean this one
690 public function mergeIn(User &$newuser) {
33a4f3f9
SJ
691 if ($this->profile()) {
692 // Don't disable user with profile in this way.
693 global $globals;
694 Platal::page()->trigError('Impossible de fusionner les comptes ' . $this->hruid . ' et ' . $newuser->hruid .
695 '. Contacte support@' . $globals->mail->domain . '.');
ab06182d
PC
696 return false;
697 }
ab06182d 698
33a4f3f9
SJ
699 if ($this->forlifeEmail()) {
700 // If the new user is not registered and does not have already an email address,
701 // we need to give him the old user's email address if he has any.
702 if (!$newuser->perms) {
703 XDB::execute('UPDATE accounts
704 SET email = {?}
705 WHERE uid = {?} AND email IS NULL',
706 $this->forlifeEmail(), $newuser->id());
ab06182d 707 }
33a4f3f9
SJ
708 $newemail = XDB::fetchOneCell('SELECT email
709 FROM accounts
710 WHERE uid = {?}',
711 $newuser->id());
712
713 // Change email used in aliases and mailing lists.
714 if ($this->forlifeEmail() != $newemail) {
715 // virtual_redirect (email aliases)
716 XDB::execute('DELETE v1
717 FROM virtual_redirect AS v1, virtual_redirect AS v2
718 WHERE v1.vid = v2.vid AND v1.redirect = {?} AND v2.redirect = {?}',
719 $this->forlifeEmail(), $newemail);
720 XDB::execute('UPDATE virtual_redirect
721 SET redirect = {?}
722 WHERE redirect = {?}',
723 $newemail, $this->forlifeEmail());
724
725 // group mailing lists
726 $group_domains = XDB::fetchColumn('SELECT g.mail_domain
727 FROM groups AS g
728 INNER JOIN group_members AS gm ON(g.id = gm.asso_id)
729 WHERE g.mail_domain != \'\' AND gm.uid = {?}',
730 $this->id());
731 foreach ($group_domains as $mail_domain) {
732 $mmlist = new MMList($this, $mail_domain);
733 $mmlist->replace_email_in_all($this->forlifeEmail(), $newemail);
734 }
735 // main domain lists
736 $mmlist = new MMList($this);
737 $mmlist->replace_email_in_all($this->forlifeEmail(), $newemail);
738 }
739 }
740
741 // Updates user in following tables.
7f376ae0 742 foreach (array('group_announces', 'payment_transactions', 'log_sessions', 'group_events') as $table) {
33a4f3f9
SJ
743 XDB::execute('UPDATE ' . $table . '
744 SET uid = {?}
745 WHERE uid = {?}',
746 $newuser->id(), $this->id());
747 }
33a4f3f9
SJ
748
749 // Merges user in following tables, ie updates when possible, then deletes remaining occurences of the old user.
750 foreach (array('group_announces_read', 'group_event_participants', 'group_member_sub_requests', 'group_members') as $table) {
751 XDB::execute('UPDATE IGNORE ' . $table . '
752 SET uid = {?}
753 WHERE uid = {?}',
754 $newuser->id(), $this->id());
755 XDB::execute('DELETE FROM ' . $table . '
756 WHERE uid = {?}',
757 $this->id());
758 }
ab06182d 759
33a4f3f9
SJ
760 // Eventually updates last session id and deletes old user's accounts entry.
761 $lastSession = XDB::fetchOneCell('SELECT id
762 FROM log_sessions
763 WHERE uid = {?}
764 ORDER BY start DESC
765 LIMIT 1',
766 $newuser->id());
767 XDB::execute('UPDATE log_last_sessions
768 SET id = {?}
769 WHERE uid = {?}',
770 $newuser->id());
771 XDB::execute('DELETE FROM accounts
772 WHERE uid = {?}',
773 $this->id());
ab06182d
PC
774
775 return true;
776 }
777
50d5ec0b 778 // Return permission flags for a given permission level.
365ba8c3 779 public static function makePerms($perms, $is_admin)
50d5ec0b 780 {
365ba8c3 781 $flags = new PlFlagSet($perms);
50d5ec0b 782 $flags->addFlag(PERMS_USER);
365ba8c3 783 if ($is_admin) {
50d5ec0b
FB
784 $flags->addFlag(PERMS_ADMIN);
785 }
7fd6dbb3
FB
786
787 // Access to private directory implies access to 'less'-private version.
788 if ($flags->hasFlag('directory_private')) {
789 $flags->addFlag('directory_ax');
790 }
50d5ec0b
FB
791 return $flags;
792 }
793
b1719b13
VZ
794 // Implementation of the default user callback.
795 public static function _default_user_callback($login, $results)
796 {
b1719b13 797 $result_count = count($results);
dd70cd28 798 if ($result_count == 0 || !S::admin()) {
70232020 799 Platal::page()->trigError("Il n'y a pas d'utilisateur avec l'identifiant : $login");
b1719b13 800 } else {
70232020 801 Platal::page()->trigError("Il y a $result_count utilisateurs avec cet identifiant : " . join(', ', $results));
b1719b13
VZ
802 }
803 }
70232020
VZ
804
805 // Implementation of the static email locality checker.
806 public static function isForeignEmailAddress($email)
807 {
808 global $globals;
809 if (strpos($email, '@') === false) {
810 return false;
811 }
812
813 list($user, $dom) = explode('@', $email);
814 return $dom != $globals->mail->domain &&
815 $dom != $globals->mail->domain2 &&
816 $dom != $globals->mail->alias_dom &&
817 $dom != $globals->mail->alias_dom2;
818 }
832e6fcb 819
aa21c568
FB
820 public static function isVirtualEmailAddress($email)
821 {
822 global $globals;
823 if (strpos($email, '@') === false) {
824 return false;
825 }
826
827 list($user, $dom) = explode('@', $email);
828 return $dom == $globals->mail->alias_dom
829 || $dom == $globals->mail->alias_dom2;
830 }
831
61a7d279
SJ
832 /* Tries to find pending accounts with an hruid close to $login. */
833 public static function getPendingAccounts($login, $iterator = false)
834 {
835 global $globals;
836
837 if (strpos($login, '@') === false) {
838 return null;
839 }
840
841 list($login, $domain) = explode('@', $login);
842
843 if ($domain && $domain != $globals->mail->domain && $domain != $globals->mail->domain2) {
844 return null;
845 }
846
847 $sql = "SELECT uid, full_name
848 FROM accounts
849 WHERE state = 'pending' AND REPLACE(hruid, '-', '') LIKE
850 CONCAT('%', REPLACE(REPLACE(REPLACE({?}, ' ', ''), '-', ''), '\'', ''), '%')
851 ORDER BY full_name";
852 if ($iterator) {
853 return XDB::iterator($sql, $login);
854 } else {
855 $res = XDB::query($sql, $login);
856 return $res->fetchAllAssoc();
857 }
858 }
859
860
0d906109
RB
861 public static function iterOverUIDs($uids, $respect_order = true)
862 {
863 return new UserIterator(self::loadMainFieldsFromUIDs($uids, $respect_order));
864 }
865
866 /** Fetch a set of users from a list of UIDs
867 * @param $data The list of uids to fetch, or an array of arrays
868 * @param $orig If $data is an array of arrays, the subfield where uids are stored
869 * @param $dest If $data is an array of arrays, the subfield to fill with Users
870 * @param $fetchProfile Whether to fetch Profiles as well
871 * @return either an array of $uid => User, or $data with $data[$i][$dest] = User
872 */
b774ddab 873 public static function getBulkUsersWithUIDs(array $data, $orig = null, $dest = null, $fetchProfile = true)
832e6fcb 874 {
07eb5b0e
FB
875 // Fetch the list of uids
876 if (is_null($orig)) {
877 $uids = $data;
878 } else {
879 if (is_null($dest)) {
880 $dest = $orig;
881 }
882 $uids = array();
883 foreach ($data as $key=>$entry) {
884 if (isset($entry[$orig])) {
885 $uids[] = $entry[$orig];
886 }
887 }
888 }
889
890 // Fetch users
38c6fe96 891 if (count($uids) == 0) {
07eb5b0e 892 return $data;
38c6fe96 893 }
0d906109
RB
894 $users = self::iterOverUIDs($uids, true);
895
d865c296 896 $table = array();
b774ddab 897 if ($fetchProfile) {
0d906109 898 $profiles = Profile::iterOverUIDS($uids, true);
7a8da8e8
PC
899 if ($profiles != null) {
900 $profile = $profiles->next();
901 } else {
902 $profile = null;
903 }
b774ddab 904 }
0d906109
RB
905
906 /** We iterate through the users, moving in
907 * profiles when they match the user ID :
908 * there can be users without a profile, but not
909 * the other way around.
910 */
911 while (($user = $users->next())) {
b774ddab 912 if ($fetchProfile) {
7a8da8e8 913 if ($profile != null && $profile->owner_id == $user->id()) {
0d906109
RB
914 $user->_profile = $profile;
915 $profile = $profiles->next();
b774ddab
FB
916 }
917 $user->_profile_fetched = true;
918 }
0d906109 919 $table[$user->id()] = $user;
d865c296 920 }
07eb5b0e
FB
921
922 // Build the result with respect to input order.
923 if (is_null($orig)) {
0d906109 924 return $table;
07eb5b0e
FB
925 } else {
926 foreach ($data as $key=>$entry) {
927 if (isset($entry[$orig])) {
928 $entry[$dest] = $table[$entry[$orig]];
929 $data[$key] = $entry;
930 }
931 }
932 return $data;
832e6fcb 933 }
07eb5b0e
FB
934 }
935
b774ddab 936 public static function getBulkUsersFromDB($fetchProfile = true)
07eb5b0e
FB
937 {
938 $args = func_get_args();
939 $uids = call_user_func_array(array('XDB', 'fetchColumn'), $args);
b774ddab 940 return self::getBulkUsersWithUIDs($uids, null, null, $fetchProfile);
832e6fcb 941 }
9f8ebb9f
VZ
942}
943
0d906109
RB
944/** Iterator over a set of Users
945 * @param an XDB::Iterator obtained from a User::loadMainFieldsFromUIDs
946 */
947class UserIterator implements PlIterator
948{
949 private $dbiter;
950
951 public function __construct($dbiter)
952 {
953 $this->dbiter = $dbiter;
954 }
955
956 public function next()
957 {
958 $data = $this->dbiter->next();
959 if ($data == null) {
960 return null;
961 } else {
962 return User::getSilentWithValues(null, $data);
963 }
964 }
965
966 public function total()
967 {
968 return $this->dbiter->total();
969 }
970
971 public function first()
972 {
973 return $this->dbiter->first();
974 }
975
976 public function last()
977 {
978 return $this->dbiter->last();
979 }
980}
981
9f8ebb9f
VZ
982// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
983?>