Switch to latest core (PlTableEditor forced values).
[platal.git] / classes / user.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2011 Polytechnique.org *
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
22 class User extends PlUser
23 {
24 const PERM_API_USER_READONLY = 'api_user_readonly';
25 const PERM_DIRECTORY_AX = 'directory_ax';
26 const PERM_DIRECTORY_PRIVATE = 'directory_private';
27 const PERM_EDIT_DIRECTORY = 'edit_directory';
28 const PERM_FORUMS = 'forums';
29 const PERM_GROUPS = 'groups';
30 const PERM_LISTS = 'lists';
31 const PERM_MAIL = 'mail';
32 const PERM_PAYMENT = 'payment';
33
34 public static $sub_mail_domains = array(
35 'x' => '',
36 'master' => 'master.',
37 'phd' => 'doc.',
38 'all' => 'alumni.'
39 );
40
41 private $_profile_fetched = false;
42 private $_profile = null;
43
44 // Additional fields (non core)
45 protected $promo = null;
46
47 // Implementation of the login to uid method.
48 protected function getLogin($login)
49 {
50 global $globals;
51
52 if (!$login) {
53 throw new UserNotFoundException();
54 }
55
56 if ($login instanceof User) {
57 return $login->id();
58 }
59
60 if ($login instanceof Profile) {
61 $this->_profile = $login;
62 $this->_profile_fetched = true;
63 $res = XDB::query('SELECT ap.uid
64 FROM account_profiles AS ap
65 WHERE ap.pid = {?} AND FIND_IN_SET(\'owner\', perms)',
66 $login->id());
67 if ($res->numRows()) {
68 return $res->fetchOneCell();
69 }
70 throw new UserNotFoundException();
71 }
72
73 // If $data is an integer, fetches directly the result.
74 if (is_numeric($login)) {
75 $res = XDB::query('SELECT uid
76 FROM accounts
77 WHERE uid = {?}', $login);
78 if ($res->numRows()) {
79 return $res->fetchOneCell();
80 }
81
82 throw new UserNotFoundException();
83 }
84
85 // Checks whether $login is a valid hruid or not.
86 $res = XDB::query('SELECT uid
87 FROM accounts
88 WHERE hruid = {?}', $login);
89 if ($res->numRows()) {
90 return $res->fetchOneCell();
91 }
92
93 // From now, $login can only by an email alias, or an email redirection.
94 $login = trim(strtolower($login));
95 if (strstr($login, '@') === false) {
96 $res = XDB::fetchOneCell('SELECT uid
97 FROM email_source_account
98 WHERE email = {?}',
99 $login);
100 } else {
101 list($email, $domain) = explode('@', $login);
102 $res = XDB::fetchOneCell('SELECT s.uid
103 FROM email_source_account AS s
104 INNER JOIN email_virtual_domains AS m ON (s.domain = m.id)
105 INNER JOIN email_virtual_domains AS d ON (d.aliasing = m.id)
106 WHERE s.email = {?} AND d.name = {?}',
107 $email, $domain);
108 }
109
110 if ($res) {
111 return $res;
112 }
113
114 // Looks for an account with the given email.
115 $res = XDB::query('SELECT uid
116 FROM accounts
117 WHERE email = {?}', $login);
118 if ($res->numRows() == 1) {
119 return $res->fetchOneCell();
120 }
121
122 // Otherwise, we do suppose $login is an email redirection.
123 $res = XDB::query('SELECT uid
124 FROM email_redirect_account
125 WHERE redirect = {?}', $login);
126 if ($res->numRows() == 1) {
127 return $res->fetchOneCell();
128 }
129
130 throw new UserNotFoundException($res->fetchColumn(1));
131 }
132
133 protected static function loadMainFieldsFromUIDs(array $uids, $respect_order = true)
134 {
135 if (empty($uids)) {
136 return PlIteratorUtils::emptyIterator();
137 }
138
139 global $globals;
140 $joins = '';
141 $fields = array();
142 if ($globals->asso('id')) {
143 $joins .= XDB::format("LEFT JOIN group_members AS gpm ON (gpm.uid = a.uid AND gpm.asso_id = {?})\n", $globals->asso('id'));
144 $fields[] = 'gpm.perms AS group_perms';
145 $fields[] = 'gpm.comm AS group_comm';
146 $fields[] = 'gpm.position AS group_position';
147 }
148 if (count($fields) > 0) {
149 $fields = ', ' . implode(', ', $fields);
150 } else {
151 $fields = '';
152 }
153
154 if ($respect_order) {
155 $order = 'ORDER BY ' . XDB::formatCustomOrder('a.uid', $uids);
156 } else {
157 $order = '';
158 }
159
160 $uids = array_map(array('XDB', 'escape'), $uids);
161
162 return XDB::iterator('SELECT a.uid, a.hruid, a.registration_date, h.uid IS NOT NULL AS homonym, a.firstname, a.lastname,
163 IF(ef.email IS NULL, NULL, CONCAT(ef.email, \'@\', mf.name)) AS forlife,
164 IF(ef.email IS NULL, NULL, CONCAT(ef.email, \'@\', df.name)) AS forlife_alternate,
165 IF(eb.email IS NULL, NULL, CONCAT(eb.email, \'@\', mb.name)) AS bestalias,
166 (er.redirect IS NULL AND a.state = \'active\' AND FIND_IN_SET(\'mail\', at.perms)) AS lost,
167 a.email, a.full_name, a.directory_name, a.display_name, a.sex = \'female\' AS gender,
168 IF(a.state = \'active\', CONCAT(at.perms, \',\', IF(a.user_perms IS NULL, \'\', a.user_perms)), \'\') AS perms,
169 a.user_perms, a.email_format, a.is_admin, a.state, a.type, at.description AS type_description, a.skin,
170 FIND_IN_SET(\'watch\', a.flags) AS watch, a.comment,
171 a.weak_password IS NOT NULL AS weak_access, g.g_account_name IS NOT NULL AS googleapps,
172 a.token IS NOT NULL AS token_access, a.token, a.last_version,
173 UNIX_TIMESTAMP(s.start) AS lastlogin, s.host, UNIX_TIMESTAMP(fp.last_seen) AS banana_last
174 ' . $fields . '
175 FROM accounts AS a
176 INNER JOIN account_types AS at ON (at.type = a.type)
177 LEFT JOIN email_source_account AS ef ON (ef.uid = a.uid AND ef.type = \'forlife\')
178 LEFT JOIN email_virtual_domains AS mf ON (ef.domain = mf.id)
179 LEFT JOIN email_virtual_domains AS df ON (df.aliasing = mf.id AND
180 df.name LIKE CONCAT(\'%\', {?}) AND df.name NOT LIKE \'alumni.%\')
181 LEFT JOIN email_source_account AS eb ON (eb.uid = a.uid AND FIND_IN_SET(\'bestalias\',eb.flags))
182 LEFT JOIN email_virtual_domains AS mb ON (a.best_domain = mb.id)
183 LEFT JOIN email_redirect_account AS er ON (er.uid = a.uid AND er.flags = \'active\' AND er.broken_level < 3
184 AND er.type != \'imap\' AND er.type != \'homonym\')
185 LEFT JOIN homonyms_list AS h ON (h.uid = a.uid)
186 LEFT JOIN gapps_accounts AS g ON (a.uid = g.l_userid AND g.g_status = \'active\')
187 LEFT JOIN log_last_sessions AS ls ON (ls.uid = a.uid)
188 LEFT JOIN log_sessions AS s ON (s.id = ls.id)
189 LEFT JOIN forum_profiles AS fp ON (fp.uid = a.uid)
190 ' . $joins . '
191 WHERE a.uid IN (' . implode(', ', $uids) . ')
192 GROUP BY a.uid
193 ' . $order, $globals->mail->domain2, $globals->mail->domain2);
194 }
195
196 // Implementation of the data loader.
197 protected function loadMainFields()
198 {
199 if ($this->hruid !== null && $this->forlife !== null
200 && $this->bestalias !== null && $this->display_name !== null
201 && $this->full_name !== null && $this->perms !== null
202 && $this->gender !== null && $this->email_format !== null) {
203 return;
204 }
205 $this->fillFromArray(self::loadMainFieldsFromUIDs(array($this->uid))->next());
206 }
207
208 // Specialization of the buildPerms method
209 // This function build 'generic' permissions for the user. It does not take
210 // into account page specific permissions (e.g X.net group permissions)
211 protected function buildPerms()
212 {
213 if (!is_null($this->perm_flags)) {
214 return;
215 }
216 if ($this->perms === null) {
217 $this->loadMainFields();
218 }
219 $this->perm_flags = self::makePerms($this->perms, $this->is_admin);
220 }
221
222 public function setPerms($perms)
223 {
224 $this->perms = $perms;
225 $this->perm_flags = null;
226 }
227
228 // We do not want to store the password in the object.
229 // So, fetch it 'on demand'
230 public function password()
231 {
232 return XDB::fetchOneCell('SELECT a.password
233 FROM accounts AS a
234 WHERE a.uid = {?}', $this->id());
235 }
236
237 public function isActive()
238 {
239 return $this->state == 'active';
240 }
241
242 /** Overload PlUser::promo(): there no promo defined for a user in the current
243 * schema. The promo is a field from the profile.
244 */
245 public function promo()
246 {
247 if (!$this->hasProfile()) {
248 return '';
249 }
250 return $this->profile()->promo();
251 }
252
253 public function category()
254 {
255 $promo = $this->promo();
256 if (!empty($promo)) {
257 return $promo;
258 } else {
259 return $this->type_description;
260 }
261 }
262
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
279 public function displayName()
280 {
281 if (!$this->hasProfile()) {
282 return $this->display_name;
283 }
284 return $this->profile()->yourself;
285 }
286
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()) {
298 return $this->directory_name;
299 }
300 return $this->profile()->directory_name;
301 }
302
303 static public function compareDirectoryName($a, $b)
304 {
305 return strcasecmp(replace_accent($a->directoryName()), replace_accent($b->directoryName()));
306 }
307
308 /** Return the main profile attached with this account if any.
309 */
310 public function profile($forceFetch = false, $fields = 0x0000, $visibility = null)
311 {
312 if (!$this->_profile_fetched || $forceFetch) {
313 $this->_profile_fetched = true;
314 $this->_profile = Profile::get($this, $fields, $visibility);
315 }
316 return $this->_profile;
317 }
318
319 /** Return true if the user has an associated profile.
320 */
321 public function hasProfile()
322 {
323 return !is_null($this->profile());
324 }
325
326 /** Return true if given a reference to the profile of this user.
327 */
328 public function isMyProfile($other)
329 {
330 if (!$other) {
331 return false;
332 } else if ($other instanceof Profile) {
333 $profile = $this->profile();
334 return $profile && $profile->id() == $other->id();
335 }
336 return false;
337 }
338
339 /** Check if the user can edit to given profile.
340 */
341 public function canEdit(Profile $profile)
342 {
343 if ($this->checkPerms(User::PERM_EDIT_DIRECTORY)) {
344 return true;
345 }
346 return XDB::fetchOneCell('SELECT pid
347 FROM account_profiles
348 WHERE uid = {?} AND pid = {?}',
349 $this->id(), $profile->id());
350 }
351
352 /** Determines main email domain for this user.
353 */
354 public function mainEmailDomain()
355 {
356 if (array_key_exists($this->type, self::$sub_mail_domains)) {
357 return self::$sub_mail_domains[$this->type] . Platal::globals()->mail->domain;
358 }
359 }
360
361 /** Determines alternate email domain for this user.
362 */
363 public function alternateEmailDomain()
364 {
365 if (array_key_exists($this->type, self::$sub_mail_domains)) {
366 return self::$sub_mail_domains[$this->type] . Platal::globals()->mail->domain2;
367 }
368 }
369
370 public function forlifeEmailAlternate()
371 {
372 if (!empty($this->forlife_alternate)) {
373 return $this->forlife_alternate;
374 }
375 return $this->email;
376 }
377
378 /** Fetch existing auxiliary alias.
379 */
380 public function emailAlias()
381 {
382 $aliases = $this->emailAliases();
383 if (count($aliases)) {
384 return $aliases[0];
385 }
386 return null;
387 }
388
389 /** Fetch existing auxiliary aliases.
390 */
391 public function emailAliases()
392 {
393 return XDB::fetchColumn('SELECT CONCAT(s.email, \'@\', d.name)
394 FROM email_source_account AS s
395 INNER JOIN email_virtual_domains AS m ON (s.domain = m.id)
396 INNER JOIN email_virtual_domains AS d ON (d.aliasing = m.id)
397 WHERE s.uid = {?} AND s.type = \'alias_aux\'
398 ORDER BY d.name',
399 $this->id());
400 }
401
402 /** Get all group aliases the user belongs to.
403 */
404 public function emailGroupAliases($domain = null)
405 {
406 if (is_null($domain)) {
407 return XDB::fetchColumn('SELECT CONCAT(v.email, \'@\', dv.name) AS alias
408 FROM email_virtual AS v
409 INNER JOIN email_virtual_domains AS dv ON (v.domain = dv.id)
410 INNER JOIN email_source_account AS s ON (s.uid = {?})
411 INNER JOIN email_virtual_domains AS ms ON (s.domain = ms.id)
412 INNER JOIN email_virtual_domains AS ds ON (ds.aliasing = ms.id)
413 WHERE v.redirect = CONCAT(s.email, \'@\', ds.name) AND v.type = \'alias\'',
414 $this->id());
415 } else {
416 return XDB::fetchAllAssoc('alias',
417 'SELECT CONCAT(v.email, \'@\', dv.name) AS alias, MAX(v.redirect = CONCAT(s.email, \'@\', ds.name)) AS sub
418 FROM email_virtual AS v
419 INNER JOIN email_virtual_domains AS dv ON (v.domain = dv.id AND dv.name = {?})
420 INNER JOIN email_source_account AS s ON (s.uid = {?})
421 INNER JOIN email_virtual_domains AS ms ON (s.domain = ms.id)
422 INNER JOIN email_virtual_domains AS ds ON (ds.aliasing = ms.id)
423 WHERE v.type = \'alias\'
424 GROUP BY v.email
425 ORDER BY v.email',
426 $domain, $this->id());
427 }
428 }
429
430 /** Get marketing informations
431 */
432 private function fetchMarketingData()
433 {
434 if (isset($this->pending_registration_date)) {
435 return;
436 }
437 $infos = XDB::fetchOneAssoc('SELECT rp.date AS pending_registration_date, rp.email AS pending_registration_email,
438 rm.last AS last_marketing_date, rm.email AS last_marketing_email
439 FROM accounts AS a
440 LEFT JOIN register_pending AS rp ON (rp.uid = a.uid)
441 LEFT JOIN register_marketing AS rm ON (rm.uid = a.uid AND rm.last != \'0000-00-00\')
442 WHERE a.uid = {?}
443 ORDER BY rm.last DESC', $this->id());
444 if (is_null($infos)) {
445 $infos = array(
446 'pending_registration_date' => null,
447 'pending_registration_email' => null,
448 'last_marketing_date' => null,
449 'last_marketing_email' => null
450 );
451 }
452 $this->fillFromArray($infos);
453 }
454
455 public function pendingRegistrationDate()
456 {
457 $this->fetchMarketingData();
458 return $this->pending_registration_date;
459 }
460
461 public function pendingRegistrationEmail()
462 {
463 $this->fetchMarketingData();
464 return $this->pending_registration_email;
465 }
466
467 public function lastMarketingDate()
468 {
469 $this->fetchMarketingData();
470 return $this->last_marketing_date;
471 }
472
473 public function lastMarketingEmail()
474 {
475 $this->fetchMarketingData();
476 return $this->last_marketing_email;
477 }
478
479 public function lastKnownEmail()
480 {
481 $this->fetchMarketingData();
482 if ($this->pending_registration_email > $this->last_marketing_date) {
483 return $this->pending_registration_email;
484 }
485 return $this->last_marketing_email;
486 }
487
488
489 /** Format of the emails sent by the site
490 */
491 public function setEmailFormat($format)
492 {
493 Platal::assert($format == self::FORMAT_HTML || $format == self::FORMAT_TEXT,
494 "Invalid email format \"$format\"");
495 XDB::execute("UPDATE accounts
496 SET email_format = {?}
497 WHERE uid = {?}",
498 $format, $this->uid);
499 $this->email_format = $format;
500 }
501
502 /** Get watch informations
503 */
504 private function fetchWatchData()
505 {
506 if (isset($this->watch_actions)) {
507 return;
508 }
509 $watch = XDB::fetchOneAssoc('SELECT flags AS watch_flags, actions AS watch_actions,
510 UNIX_TIMESTAMP(last) AS watch_last
511 FROM watch
512 WHERE uid = {?}', $this->id());
513 $watch['watch_flags'] = new PlFlagSet($watch['watch_flags']);
514 $watch['watch_actions'] = new PlFlagSet($watch['watch_actions']);
515 $watch['watch_promos'] = XDB::fetchColumn('SELECT promo
516 FROM watch_promo
517 WHERE uid = {?}', $this->id());
518 $watch['watch_users'] = XDB::fetchColumn('SELECT ni_id
519 FROM watch_nonins
520 WHERE uid = {?}', $this->id());
521 $this->fillFromArray($watch);
522 }
523
524 public function watchType($type)
525 {
526 $this->fetchWatchData();
527 return $this->watch_actions->hasFlag($type);
528 }
529
530 public function watchContacts()
531 {
532 $this->fetchWatchData();
533 return $this->watch_flags->hasFlag('contacts');
534 }
535
536 public function watchEmail()
537 {
538 $this->fetchWatchData();
539 return $this->watch_flags->hasFlag('mail');
540 }
541
542 public function watchPromos()
543 {
544 $this->fetchWatchData();
545 return $this->watch_promos;
546 }
547
548 public function watchUsers()
549 {
550 $this->fetchWatchData();
551 return $this->watch_users;
552 }
553
554 public function watchLast()
555 {
556 $this->fetchWatchData();
557 return $this->watch_last;
558 }
559
560 public function invalidWatchCache()
561 {
562 unset($this->watch_actions);
563 unset($this->watch_users);
564 unset($this->watch_last);
565 unset($this->watch_promos);
566 }
567
568
569 // Contacts
570 private $contacts = null;
571 private function fetchContacts()
572 {
573 if (is_null($this->contacts)) {
574 $this->contacts = XDB::fetchAllAssoc('contact', 'SELECT *
575 FROM contacts
576 WHERE uid = {?}',
577 $this->id());
578 }
579 }
580
581 public function iterContacts()
582 {
583 $this->fetchContacts();
584 return Profile::iterOverPIDs(array_keys($this->contacts));
585 }
586
587 public function getContacts()
588 {
589 $this->fetchContacts();
590 return Profile::getBulkProfilesWithPIDs(array_keys($this->contacts));
591 }
592
593 public function isContact(Profile $profile)
594 {
595 $this->fetchContacts();
596 return isset($this->contacts[$profile->id()]);
597 }
598
599 public function isWatchedUser(Profile $profile)
600 {
601 return in_array($profile->id(), $this->watchUsers());
602 }
603
604 // Groupes X
605 private $groups = null;
606 public function groups($institutions = false, $onlyPublic = false)
607 {
608 if (is_null($this->groups)) {
609 $this->groups = XDB::fetchAllAssoc('asso_id', 'SELECT gm.asso_id, gm.perms, gm.comm,
610 g.diminutif, g.nom, g.site, g.cat,
611 g.pub
612 FROM group_members AS gm
613 INNER JOIN groups AS g ON (g.id = gm.asso_id)
614 WHERE uid = {?}',
615 $this->id());
616 }
617 if (!$institutions && !$onlyPublic) {
618 return $this->groups;
619 } else {
620 $result = array();
621 foreach ($this->groups as $id=>$data) {
622 if ($institutions) {
623 if ($data['cat'] != Group::CAT_GROUPESX && $data['cat'] != Group::CAT_INSTITUTIONS) {
624 continue;
625 }
626 }
627 if ($onlyPublic) {
628 if ($data['pub'] != 'public') {
629 continue;
630 }
631 }
632 $result[$id] = $data;
633 }
634 return $result;
635 }
636 }
637
638 public function groupCount()
639 {
640 return XDB::fetchOneCell('SELECT COUNT(DISTINCT(asso_id))
641 FROM group_members
642 WHERE uid = {?}',
643 $this->id());
644 }
645
646 public function inGroup($asso_id)
647 {
648 $res = XDB::fetchOneCell('SELECT COUNT(*)
649 FROM group_members
650 WHERE uid = {?} AND asso_id = {?}',
651 $this->id(), $asso_id);
652 return ($res > 0);
653 }
654
655 /**
656 * Clears a user.
657 * *always deletes in: account_lost_passwords, register_marketing,
658 * register_pending, register_subs, watch_nonins, watch, watch_promo
659 * *always keeps in: account_types, accounts, email_virtual, carvas,
660 * group_members, homonyms_list, newsletter_ins, register_mstats, email_source_account
661 * *deletes if $clearAll: account_auth_openid, announce_read, contacts,
662 * email_redirect_account, email_redirect_account, email_send_save, forum_innd, forum_profiles,
663 * forum_subs, gapps_accounts, gapps_nicknames, group_announces_read,
664 * group_member_sub_requests, reminder, requests, requests_hidden,
665 * email_virtual, ML
666 * *modifies if $clearAll: accounts
667 *
668 * Use cases:
669 * *$clearAll == false: when a user dies, her family still needs to keep in
670 * touch with the community.
671 * *$clearAll == true: in every other case we want the account to be fully
672 * deleted so that it can not be used anymore.
673 */
674 public function clear($clearAll = true)
675 {
676 $tables = array('account_lost_passwords', 'register_marketing',
677 'register_pending', 'register_subs', 'watch_nonins',
678 'watch', 'watch_promo');
679
680 foreach ($tables as $t) {
681 XDB::execute('DELETE FROM ' . $t . '
682 WHERE uid = {?}',
683 $this->id());
684 }
685
686 if ($clearAll) {
687 global $globals;
688
689 $groupIds = XDB::iterator('SELECT asso_id
690 FROM group_members
691 WHERE uid = {?}',
692 $this->id());
693 while ($groupId = $groupIds->next()) {
694 $group = Group::get($groupId);
695 if (!empty($group) && $group->notif_unsub) {
696 $mailer = new PlMailer('xnetgrp/unsubscription-notif.mail.tpl');
697 $admins = $group->iterAdmins();
698 while ($admin = $admins->next()) {
699 $mailer->addTo($admin);
700 }
701 $mailer->assign('group', $group->shortname);
702 $mailer->assign('user', $this);
703 $mailer->assign('selfdone', false);
704 $mailer->send();
705 }
706 }
707
708 $tables = array('account_auth_openid', 'announce_read', 'contacts',
709 'email_send_save',
710 'forum_innd', 'forum_profiles', 'forum_subs',
711 'group_announces_read', 'group_members',
712 'group_member_sub_requests', 'reminder', 'requests',
713 'requests_hidden');
714 foreach ($tables as $t) {
715 XDB::execute('DELETE FROM ' . $t . '
716 WHERE uid = {?}',
717 $this->id());
718 }
719 XDB::execute('DELETE FROM email_redirect_account
720 WHERE uid = {?} AND type != \'homonym\'',
721 $this->id());
722 XDB::execute('DELETE FROM email_virtual
723 WHERE redirect = {?}',
724 $this->forlifeEmail());
725
726 foreach (array('gapps_accounts', 'gapps_nicknames') as $t) {
727 XDB::execute('DELETE FROM ' . $t . '
728 WHERE l_userid = {?}',
729 $this->id());
730 }
731
732 XDB::execute("UPDATE accounts
733 SET registration_date = 0, state = 'pending', password = NULL,
734 weak_password = NULL, token = NULL, is_admin = 0
735 WHERE uid = {?}",
736 $this->id());
737
738 if ($globals->mailstorage->googleapps_domain) {
739 require_once 'googleapps.inc.php';
740
741 if (GoogleAppsAccount::account_status($this->id())) {
742 $account = new GoogleAppsAccount($this);
743 $account->suspend();
744 }
745 }
746 }
747
748 $mmlist = new MMList(S::user());
749 $mmlist->kill($this->hruid, $clearAll);
750 }
751
752 // Merge all infos in other user and then clean this one
753 public function mergeIn(User $newuser) {
754 if ($this->profile()) {
755 // Don't disable user with profile in this way.
756 global $globals;
757 Platal::page()->trigError('Impossible de fusionner les comptes ' . $this->hruid . ' et ' . $newuser->hruid .
758 '. Contacte support@' . $globals->mail->domain . '.');
759 return false;
760 }
761
762 if ($this->forlifeEmail()) {
763 // If the new user is not registered and does not have already an email address,
764 // we need to give him the old user's email address if he has any.
765 if (!$newuser->perms) {
766 XDB::execute('UPDATE accounts
767 SET email = {?}
768 WHERE uid = {?} AND email IS NULL',
769 $this->forlifeEmail(), $newuser->id());
770
771 // Reftech new user so its forlifeEmail will be correct.
772 $newuser = getSilentWithUID($newuser->id());
773 }
774
775 // Change email used in mailing lists.
776 if ($this->forlifeEmail() != $newuser->forlifeEmail()) {
777 // group mailing lists
778 $group_domains = XDB::fetchColumn('SELECT g.mail_domain
779 FROM groups AS g
780 INNER JOIN group_members AS gm ON(g.id = gm.asso_id)
781 WHERE g.mail_domain != \'\' AND gm.uid = {?}',
782 $this->id());
783 foreach ($group_domains as $mail_domain) {
784 $mmlist = new MMList($this, $mail_domain);
785 $mmlist->replace_email_in_all($this->forlifeEmail(), $newuser->forlifeEmail());
786 }
787 // main domain lists
788 $mmlist = new MMList($this);
789 $mmlist->replace_email_in_all($this->forlifeEmail(), $newuser->forlifeEmail());
790 }
791 }
792
793 // Updates user in following tables.
794 foreach (array('group_announces', 'payment_transactions', 'log_sessions', 'group_events') as $table) {
795 XDB::execute('UPDATE ' . $table . '
796 SET uid = {?}
797 WHERE uid = {?}',
798 $newuser->id(), $this->id());
799 }
800
801 // Merges user in following tables, ie updates when possible, then deletes remaining occurences of the old user.
802 foreach (array('group_announces_read', 'group_event_participants', 'group_member_sub_requests', 'group_members', 'email_redirect_account') as $table) {
803 XDB::execute('UPDATE IGNORE ' . $table . '
804 SET uid = {?}
805 WHERE uid = {?}',
806 $newuser->id(), $this->id());
807 XDB::execute('DELETE FROM ' . $table . '
808 WHERE uid = {?}',
809 $this->id());
810 }
811
812 // Eventually updates last session id and deletes old user's accounts entry.
813 $lastSession = XDB::fetchOneCell('SELECT id
814 FROM log_sessions
815 WHERE uid = {?}
816 ORDER BY start DESC
817 LIMIT 1',
818 $newuser->id());
819 XDB::execute('UPDATE log_last_sessions
820 SET id = {?}
821 WHERE uid = {?}',
822 $lastSession, $newuser->id());
823 XDB::execute('DELETE FROM accounts
824 WHERE uid = {?}',
825 $this->id());
826
827 return true;
828 }
829
830 // Return permission flags for a given permission level.
831 public static function makePerms($perms, $is_admin)
832 {
833 $flags = new PlFlagSet($perms);
834 $flags->addFlag(PERMS_USER);
835 if ($is_admin) {
836 $flags->addFlag(PERMS_ADMIN);
837 }
838
839 // Access to private directory implies access to 'less'-private version.
840 if ($flags->hasFlag('directory_private')) {
841 $flags->addFlag('directory_ax');
842 }
843 return $flags;
844 }
845
846 // Implementation of the default user callback.
847 public static function _default_user_callback($login, $results)
848 {
849 $result_count = count($results);
850 if ($result_count == 0 || !S::admin()) {
851 Platal::page()->trigError("Il n'y a pas d'utilisateur avec l'identifiant : $login");
852 } else {
853 Platal::page()->trigError("Il y a $result_count utilisateurs avec cet identifiant : " . join(', ', $results));
854 }
855 }
856
857 public static function makeHomonymHrmid($alias)
858 {
859 return 'h.' . $alias . '.' . Platal::globals()->mail->domain;
860 }
861
862 public static function isMainMailDomain($domain)
863 {
864 global $globals;
865
866 $is_main_domain = false;
867 foreach (self::$sub_mail_domains as $sub_domain) {
868 $is_main_domain = $is_main_domain || $domain == ($sub_domain . $globals->mail->domain) || $domain == ($sub_domain . $globals->mail->domain2);
869 }
870 return $is_main_domain;
871 }
872
873 public static function isAliasMailDomain($domain)
874 {
875 global $globals;
876
877 return $domain == $globals->mail->alias_dom || $domain == $globals->mail->alias_dom2;
878 }
879
880 // Implementation of the static email locality checker.
881 public static function isForeignEmailAddress($email)
882 {
883 if (strpos($email, '@') === false) {
884 return false;
885 }
886
887 list(, $domain) = explode('@', $email);
888 return !(self::isMainMailDomain($domain) || self::isAliasMailDomain($domain));
889 }
890
891 /* Tries to find pending accounts with an hruid close to $login. */
892 public static function getPendingAccounts($login, $iterator = false)
893 {
894 if (strpos($login, '@') === false) {
895 return null;
896 }
897
898 list($login, $domain) = explode('@', $login);
899
900 if ($domain && !self::isMainMailDomain($domain)) {
901 return null;
902 }
903
904 $sql = "SELECT uid, full_name
905 FROM accounts
906 WHERE state = 'pending' AND REPLACE(hruid, '-', '') LIKE
907 CONCAT('%', REPLACE(REPLACE(REPLACE({?}, ' ', ''), '-', ''), '\'', ''), '%')
908 ORDER BY full_name";
909 if ($iterator) {
910 return XDB::iterator($sql, $login);
911 } else {
912 $res = XDB::query($sql, $login);
913 return $res->fetchAllAssoc();
914 }
915 }
916
917
918 public static function iterOverUIDs($uids, $respect_order = true)
919 {
920 return new UserIterator(self::loadMainFieldsFromUIDs($uids, $respect_order));
921 }
922
923 /** Fetch a set of users from a list of UIDs
924 * @param $data The list of uids to fetch, or an array of arrays
925 * @param $orig If $data is an array of arrays, the subfield where uids are stored
926 * @param $dest If $data is an array of arrays, the subfield to fill with Users
927 * @param $fetchProfile Whether to fetch Profiles as well
928 * @return either an array of $uid => User, or $data with $data[$i][$dest] = User
929 */
930 public static function getBulkUsersWithUIDs(array $data, $orig = null, $dest = null, $fetchProfile = true)
931 {
932 // Fetch the list of uids
933 if (is_null($orig)) {
934 $uids = $data;
935 } else {
936 if (is_null($dest)) {
937 $dest = $orig;
938 }
939 $uids = array();
940 foreach ($data as $key=>$entry) {
941 if (isset($entry[$orig])) {
942 $uids[] = $entry[$orig];
943 }
944 }
945 }
946
947 // Fetch users
948 if (count($uids) == 0) {
949 return $data;
950 }
951 $users = self::iterOverUIDs($uids, true);
952
953 $table = array();
954 if ($fetchProfile) {
955 $profiles = Profile::iterOverUIDS($uids, true);
956 if ($profiles != null) {
957 $profile = $profiles->next();
958 } else {
959 $profile = null;
960 }
961 }
962
963 /** We iterate through the users, moving in
964 * profiles when they match the user ID :
965 * there can be users without a profile, but not
966 * the other way around.
967 */
968 while (($user = $users->next())) {
969 if ($fetchProfile) {
970 if ($profile != null && $profile->owner_id == $user->id()) {
971 $user->_profile = $profile;
972 $profile = $profiles->next();
973 }
974 $user->_profile_fetched = true;
975 }
976 $table[$user->id()] = $user;
977 }
978
979 // Build the result with respect to input order.
980 if (is_null($orig)) {
981 return $table;
982 } else {
983 foreach ($data as $key=>$entry) {
984 if (isset($entry[$orig])) {
985 $entry[$dest] = $table[$entry[$orig]];
986 $data[$key] = $entry;
987 }
988 }
989 return $data;
990 }
991 }
992
993 public static function getBulkUsersFromDB($fetchProfile = true)
994 {
995 $args = func_get_args();
996 $uids = call_user_func_array(array('XDB', 'fetchColumn'), $args);
997 return self::getBulkUsersWithUIDs($uids, null, null, $fetchProfile);
998 }
999 }
1000
1001 /** Iterator over a set of Users
1002 * @param an XDB::Iterator obtained from a User::loadMainFieldsFromUIDs
1003 */
1004 class UserIterator implements PlIterator
1005 {
1006 private $dbiter;
1007
1008 public function __construct($dbiter)
1009 {
1010 $this->dbiter = $dbiter;
1011 }
1012
1013 public function next()
1014 {
1015 $data = $this->dbiter->next();
1016 if ($data == null) {
1017 return null;
1018 } else {
1019 return User::getSilentWithValues(null, $data);
1020 }
1021 }
1022
1023 public function total()
1024 {
1025 return $this->dbiter->total();
1026 }
1027
1028 public function first()
1029 {
1030 return $this->dbiter->first();
1031 }
1032
1033 public function last()
1034 {
1035 return $this->dbiter->last();
1036 }
1037 }
1038
1039 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1040 ?>