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