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