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