Warns animator about password modification when user has more than one group.
[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
FB
39 if ($login instanceof User) {
40 $machin->id();
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,
832e6fcb
FB
187 IF(a.state = \'active\', at.perms, \'\') AS perms,
188 a.email_format, a.is_admin, a.state, a.type, a.skin,
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
4257b11a
SJ
589 public function hasSingleGroup()
590 {
591 $groupNb = XDB::fetchOneCell('SELECT COUNT(DISTINCT(asso_id))
592 FROM group_members
593 WHERE uid = {?}',
594 $this->id());
595 return ($groupNb == 1);
596 }
597
6150f591
SJ
598 /**
599 * Clears a user.
600 * *always deletes in: account_lost_passwords, register_marketing,
601 * register_pending, register_subs, watch_nonins, watch, watch_promo
602 * *always keeps in: account_types, accounts, aliases, axletter_ins, carvas,
603 * group_members, homonyms, newsletter_ins, register_mstats,
604 * *deletes if $clearAll: account_auth_openid, announce_read, contacts,
605 * email_options, email_send_save, emails, forum_innd, forum_profiles,
606 * forum_subs, gapps_accounts, gapps_nicknames, group_announces_read,
607 * group_member_sub_requests, reminder, requests, requests_hidden,
608 * virtual, virtual_redirect, ML
609 * *modifies if $clearAll: accounts
610 *
611 * Use cases:
612 * *$clearAll == false: when a user dies, her family still needs to keep in
613 * touch with the community.
614 * *$clearAll == true: in every other case we want the account to be fully
615 * deleted so that it can not be used anymore.
616 */
617 public function clear($clearAll = true)
618 {
405d70cc
RB
619 $tables = array('account_lost_passwords', 'register_marketing',
620 'register_pending', 'register_subs', 'watch_nonins',
621 'watch', 'watch_promo');
622
623 foreach ($tables as $t) {
624 XDB::execute('DELETE FROM ' . $t . '
625 WHERE uid = {?}',
626 $this->id());
627 }
6150f591
SJ
628
629 if ($clearAll) {
0e5b3438
SJ
630 $groupIds = XDB::iterator('SELECT asso_id
631 FROM group_members
632 WHERE uid = {?}',
633 $this->id());
634 while ($groupId = $groupIds->next()) {
635 $group = Group::get($groupId);
636 if ($group->notif_unsub) {
637 $mailer = new PlMailer('xnetgrp/unsubscription-notif.mail.tpl');
638 $admins = $group->iterAdmins();
639 while ($admin = $admins->next()) {
640 $mailer->addTo($admin);
641 }
642 $mailer->assign('group', $group->shortname);
643 $mailer->assign('user', $this);
644 $mailer->assign('selfdone', false);
645 $mailer->send();
646 }
647 }
648
405d70cc
RB
649 $tables = array('account_auth_openid', 'gannounce_read', 'contacts',
650 'email_options', 'gemail_send_save', 'emails',
651 'forum_innd', 'gforum_profiles', 'forum_subs',
652 'gapps_accounts', 'ggapps_nicknames', 'group_announces_read',
653 'group_members', 'ggroup_member_sub_requests', 'reminder', 'requests',
654 'requests_hidden');
655
656 foreach ($tables as $t) {
657 XDB::execute('DELETE FROM ' . $t . '
658 WHERE uid = {?}',
659 $this->id());
660 }
661
6150f591
SJ
662 XDB::execute("UPDATE accounts
663 SET registration_date = 0, state = 'pending', password = NULL,
664 weak_password = NULL, token = NULL, is_admin = 0
665 WHERE uid = {?}",
666 $this->id());
667
668 XDB::execute('DELETE v.*
669 FROM virtual AS v
670 INNER JOIN virtual_redirect AS r ON (v.vid = r.vid)
671 WHERE redirect = {?} OR redirect = {?}',
672 $this->forlifeEmail(), $this->m4xForlifeEmail());
673 XDB::execute('DELETE FROM virtual_redirect
674 WHERE redirect = {?} OR redirect = {?}',
675 $this->forlifeEmail(), $this->m4xForlifeEmail());
676
677 if ($globals->mailstorage->googleapps_domain) {
678 require_once 'googleapps.inc.php';
679
680 if (GoogleAppsAccount::account_status($uid)) {
681 $account = new GoogleAppsAccount($user);
682 $account->suspend();
683 }
684 }
685 }
686
687 $mmlist = new MMList($this);
a85562a0 688 $mmlist->kill($this->hruid, $clearAll);
6150f591
SJ
689 }
690
ab06182d
PC
691 // Merge all infos in other user and then clean this one
692 public function mergeIn(User &$newuser) {
33a4f3f9
SJ
693 if ($this->profile()) {
694 // Don't disable user with profile in this way.
695 global $globals;
696 Platal::page()->trigError('Impossible de fusionner les comptes ' . $this->hruid . ' et ' . $newuser->hruid .
697 '. Contacte support@' . $globals->mail->domain . '.');
ab06182d
PC
698 return false;
699 }
ab06182d 700
33a4f3f9
SJ
701 if ($this->forlifeEmail()) {
702 // If the new user is not registered and does not have already an email address,
703 // we need to give him the old user's email address if he has any.
704 if (!$newuser->perms) {
705 XDB::execute('UPDATE accounts
706 SET email = {?}
707 WHERE uid = {?} AND email IS NULL',
708 $this->forlifeEmail(), $newuser->id());
ab06182d 709 }
33a4f3f9
SJ
710 $newemail = XDB::fetchOneCell('SELECT email
711 FROM accounts
712 WHERE uid = {?}',
713 $newuser->id());
714
715 // Change email used in aliases and mailing lists.
716 if ($this->forlifeEmail() != $newemail) {
717 // virtual_redirect (email aliases)
718 XDB::execute('DELETE v1
719 FROM virtual_redirect AS v1, virtual_redirect AS v2
720 WHERE v1.vid = v2.vid AND v1.redirect = {?} AND v2.redirect = {?}',
721 $this->forlifeEmail(), $newemail);
722 XDB::execute('UPDATE virtual_redirect
723 SET redirect = {?}
724 WHERE redirect = {?}',
725 $newemail, $this->forlifeEmail());
726
727 // group mailing lists
728 $group_domains = XDB::fetchColumn('SELECT g.mail_domain
729 FROM groups AS g
730 INNER JOIN group_members AS gm ON(g.id = gm.asso_id)
731 WHERE g.mail_domain != \'\' AND gm.uid = {?}',
732 $this->id());
733 foreach ($group_domains as $mail_domain) {
734 $mmlist = new MMList($this, $mail_domain);
735 $mmlist->replace_email_in_all($this->forlifeEmail(), $newemail);
736 }
737 // main domain lists
738 $mmlist = new MMList($this);
739 $mmlist->replace_email_in_all($this->forlifeEmail(), $newemail);
740 }
741 }
742
743 // Updates user in following tables.
744 foreach (array('group_announces', 'payment_transactions', 'log_sessions') as $table) {
745 XDB::execute('UPDATE ' . $table . '
746 SET uid = {?}
747 WHERE uid = {?}',
748 $newuser->id(), $this->id());
749 }
750 XDB::execute('UPDATE group_events
751 SET organisateur_uid = {?}
752 WHERE organisateur_uid = {?}',
753 $newuser->id(), $this->id());
754
755 // Merges user in following tables, ie updates when possible, then deletes remaining occurences of the old user.
756 foreach (array('group_announces_read', 'group_event_participants', 'group_member_sub_requests', 'group_members') as $table) {
757 XDB::execute('UPDATE IGNORE ' . $table . '
758 SET uid = {?}
759 WHERE uid = {?}',
760 $newuser->id(), $this->id());
761 XDB::execute('DELETE FROM ' . $table . '
762 WHERE uid = {?}',
763 $this->id());
764 }
ab06182d 765
33a4f3f9
SJ
766 // Eventually updates last session id and deletes old user's accounts entry.
767 $lastSession = XDB::fetchOneCell('SELECT id
768 FROM log_sessions
769 WHERE uid = {?}
770 ORDER BY start DESC
771 LIMIT 1',
772 $newuser->id());
773 XDB::execute('UPDATE log_last_sessions
774 SET id = {?}
775 WHERE uid = {?}',
776 $newuser->id());
777 XDB::execute('DELETE FROM accounts
778 WHERE uid = {?}',
779 $this->id());
ab06182d
PC
780
781 return true;
782 }
783
50d5ec0b 784 // Return permission flags for a given permission level.
365ba8c3 785 public static function makePerms($perms, $is_admin)
50d5ec0b 786 {
365ba8c3 787 $flags = new PlFlagSet($perms);
50d5ec0b 788 $flags->addFlag(PERMS_USER);
365ba8c3 789 if ($is_admin) {
50d5ec0b
FB
790 $flags->addFlag(PERMS_ADMIN);
791 }
792 return $flags;
793 }
794
b1719b13
VZ
795 // Implementation of the default user callback.
796 public static function _default_user_callback($login, $results)
797 {
b1719b13 798 $result_count = count($results);
dd70cd28 799 if ($result_count == 0 || !S::admin()) {
70232020 800 Platal::page()->trigError("Il n'y a pas d'utilisateur avec l'identifiant : $login");
b1719b13 801 } else {
70232020 802 Platal::page()->trigError("Il y a $result_count utilisateurs avec cet identifiant : " . join(', ', $results));
b1719b13
VZ
803 }
804 }
70232020
VZ
805
806 // Implementation of the static email locality checker.
807 public static function isForeignEmailAddress($email)
808 {
809 global $globals;
810 if (strpos($email, '@') === false) {
811 return false;
812 }
813
814 list($user, $dom) = explode('@', $email);
815 return $dom != $globals->mail->domain &&
816 $dom != $globals->mail->domain2 &&
817 $dom != $globals->mail->alias_dom &&
818 $dom != $globals->mail->alias_dom2;
819 }
832e6fcb 820
aa21c568
FB
821 public static function isVirtualEmailAddress($email)
822 {
823 global $globals;
824 if (strpos($email, '@') === false) {
825 return false;
826 }
827
828 list($user, $dom) = explode('@', $email);
829 return $dom == $globals->mail->alias_dom
830 || $dom == $globals->mail->alias_dom2;
831 }
832
61a7d279
SJ
833 /* Tries to find pending accounts with an hruid close to $login. */
834 public static function getPendingAccounts($login, $iterator = false)
835 {
836 global $globals;
837
838 if (strpos($login, '@') === false) {
839 return null;
840 }
841
842 list($login, $domain) = explode('@', $login);
843
844 if ($domain && $domain != $globals->mail->domain && $domain != $globals->mail->domain2) {
845 return null;
846 }
847
848 $sql = "SELECT uid, full_name
849 FROM accounts
850 WHERE state = 'pending' AND REPLACE(hruid, '-', '') LIKE
851 CONCAT('%', REPLACE(REPLACE(REPLACE({?}, ' ', ''), '-', ''), '\'', ''), '%')
852 ORDER BY full_name";
853 if ($iterator) {
854 return XDB::iterator($sql, $login);
855 } else {
856 $res = XDB::query($sql, $login);
857 return $res->fetchAllAssoc();
858 }
859 }
860
861
0d906109
RB
862 public static function iterOverUIDs($uids, $respect_order = true)
863 {
864 return new UserIterator(self::loadMainFieldsFromUIDs($uids, $respect_order));
865 }
866
867 /** Fetch a set of users from a list of UIDs
868 * @param $data The list of uids to fetch, or an array of arrays
869 * @param $orig If $data is an array of arrays, the subfield where uids are stored
870 * @param $dest If $data is an array of arrays, the subfield to fill with Users
871 * @param $fetchProfile Whether to fetch Profiles as well
872 * @return either an array of $uid => User, or $data with $data[$i][$dest] = User
873 */
b774ddab 874 public static function getBulkUsersWithUIDs(array $data, $orig = null, $dest = null, $fetchProfile = true)
832e6fcb 875 {
07eb5b0e
FB
876 // Fetch the list of uids
877 if (is_null($orig)) {
878 $uids = $data;
879 } else {
880 if (is_null($dest)) {
881 $dest = $orig;
882 }
883 $uids = array();
884 foreach ($data as $key=>$entry) {
885 if (isset($entry[$orig])) {
886 $uids[] = $entry[$orig];
887 }
888 }
889 }
890
891 // Fetch users
38c6fe96 892 if (count($uids) == 0) {
07eb5b0e 893 return $data;
38c6fe96 894 }
0d906109
RB
895 $users = self::iterOverUIDs($uids, true);
896
d865c296 897 $table = array();
b774ddab 898 if ($fetchProfile) {
0d906109 899 $profiles = Profile::iterOverUIDS($uids, true);
7a8da8e8
PC
900 if ($profiles != null) {
901 $profile = $profiles->next();
902 } else {
903 $profile = null;
904 }
b774ddab 905 }
0d906109
RB
906
907 /** We iterate through the users, moving in
908 * profiles when they match the user ID :
909 * there can be users without a profile, but not
910 * the other way around.
911 */
912 while (($user = $users->next())) {
b774ddab 913 if ($fetchProfile) {
7a8da8e8 914 if ($profile != null && $profile->owner_id == $user->id()) {
0d906109
RB
915 $user->_profile = $profile;
916 $profile = $profiles->next();
b774ddab
FB
917 }
918 $user->_profile_fetched = true;
919 }
0d906109 920 $table[$user->id()] = $user;
d865c296 921 }
07eb5b0e
FB
922
923 // Build the result with respect to input order.
924 if (is_null($orig)) {
0d906109 925 return $table;
07eb5b0e
FB
926 } else {
927 foreach ($data as $key=>$entry) {
928 if (isset($entry[$orig])) {
929 $entry[$dest] = $table[$entry[$orig]];
930 $data[$key] = $entry;
931 }
932 }
933 return $data;
832e6fcb 934 }
07eb5b0e
FB
935 }
936
b774ddab 937 public static function getBulkUsersFromDB($fetchProfile = true)
07eb5b0e
FB
938 {
939 $args = func_get_args();
940 $uids = call_user_func_array(array('XDB', 'fetchColumn'), $args);
b774ddab 941 return self::getBulkUsersWithUIDs($uids, null, null, $fetchProfile);
832e6fcb 942 }
9f8ebb9f
VZ
943}
944
0d906109
RB
945/** Iterator over a set of Users
946 * @param an XDB::Iterator obtained from a User::loadMainFieldsFromUIDs
947 */
948class UserIterator implements PlIterator
949{
950 private $dbiter;
951
952 public function __construct($dbiter)
953 {
954 $this->dbiter = $dbiter;
955 }
956
957 public function next()
958 {
959 $data = $this->dbiter->next();
960 if ($data == null) {
961 return null;
962 } else {
963 return User::getSilentWithValues(null, $data);
964 }
965 }
966
967 public function total()
968 {
969 return $this->dbiter->total();
970 }
971
972 public function first()
973 {
974 return $this->dbiter->first();
975 }
976
977 public function last()
978 {
979 return $this->dbiter->last();
980 }
981}
982
9f8ebb9f
VZ
983// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
984?>