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