af9c68d7dcbe69a956ee531544fe218f88133b7c
[platal.git] / modules / xnetgrp.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2013 Polytechnique.org *
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
22
23 class XnetGrpModule extends PLModule
24 {
25 function handlers()
26 {
27 return array(
28 '%grp' => $this->make_hook('index', AUTH_PUBLIC),
29 '%grp/asso.php' => $this->make_hook('index', AUTH_PUBLIC),
30 '%grp/logo' => $this->make_hook('logo', AUTH_PUBLIC),
31 '%grp/site' => $this->make_hook('site', AUTH_PUBLIC),
32 '%grp/edit' => $this->make_hook('edit', AUTH_PASSWD, 'groupadmin'),
33 '%grp/mail' => $this->make_hook('mail', AUTH_PASSWD, 'groupadmin'),
34 '%grp/forum' => $this->make_hook('forum', AUTH_PASSWD, 'groupannu'),
35 '%grp/former_users' => $this->make_hook('former_users', AUTH_PASSWD, 'admin'),
36 '%grp/annuaire' => $this->make_hook('annuaire', AUTH_PASSWD, 'groupannu'),
37 '%grp/annuaire/vcard' => $this->make_hook('vcard', AUTH_PASSWD, 'groupmember:groupannu'),
38 '%grp/annuaire/csv' => $this->make_hook('csv', AUTH_PASSWD, 'groupmember:groupannu'),
39 '%grp/directory/sync' => $this->make_hook('directory_sync', AUTH_PASSWD, 'groupadmin'),
40 '%grp/directory/unact' => $this->make_hook('non_active', AUTH_PASSWD, 'groupadmin'),
41 '%grp/directory/awact' => $this->make_hook('awaiting_active', AUTH_PASSWD, 'groupadmin'),
42 '%grp/trombi' => $this->make_hook('trombi', AUTH_PASSWD, 'groupannu'),
43 '%grp/geoloc' => $this->make_hook('geoloc', AUTH_PASSWD, 'groupannu'),
44 '%grp/subscribe' => $this->make_hook('subscribe', AUTH_PASSWD, 'groups'),
45 '%grp/subscribe/valid' => $this->make_hook('subscribe_valid', AUTH_PASSWD, 'groupadmin'),
46 '%grp/unsubscribe' => $this->make_hook('unsubscribe', AUTH_PASSWD, 'groupmember'),
47
48 '%grp/change_rights' => $this->make_hook('change_rights', AUTH_PASSWD, 'groups'),
49 '%grp/admin/annuaire' => $this->make_hook('admin_annuaire', AUTH_PASSWD, 'groupadmin'),
50 '%grp/member' => $this->make_hook('admin_member', AUTH_PASSWD, 'groupadmin'),
51 '%grp/member/new' => $this->make_hook('admin_member_new', AUTH_PASSWD, 'groupadmin'),
52 '%grp/member/new/ajax' => $this->make_hook('admin_member_new_ajax', AUTH_PASSWD, 'groups', NO_AUTH),
53 '%grp/member/del' => $this->make_hook('admin_member_del', AUTH_PASSWD, 'groupadmin'),
54 '%grp/member/suggest' => $this->make_hook('admin_member_suggest', AUTH_PASSWD, 'groupadmin'),
55 '%grp/member/reg' => $this->make_hook('admin_member_reg', AUTH_PASSWD, 'groupadmin'),
56
57 '%grp/rss' => $this->make_token_hook('rss', AUTH_PUBLIC),
58 '%grp/announce/new' => $this->make_hook('edit_announce', AUTH_PASSWD, 'groupadmin'),
59 '%grp/announce/edit' => $this->make_hook('edit_announce', AUTH_PASSWD, 'groupadmin'),
60 '%grp/announce/photo' => $this->make_hook('photo_announce', AUTH_PUBLIC),
61 '%grp/admin/announces' => $this->make_hook('admin_announce', AUTH_PASSWD, 'groupadmin'),
62 );
63 }
64
65 function handler_index($page, $arg = null)
66 {
67 global $globals, $platal;
68 if (!is_null($arg)) {
69 return PL_NOT_FOUND;
70 }
71 $page->changeTpl('xnetgrp/asso.tpl');
72
73 if (S::logged()) {
74 if (Env::has('read')) {
75 XDB::query('DELETE r.*
76 FROM group_announces_read AS r
77 INNER JOIN group_announces AS a ON (a.id = r.announce_id)
78 WHERE expiration < CURRENT_DATE()');
79 XDB::query('INSERT INTO group_announces_read
80 VALUES ({?}, {?})',
81 Env::i('read'), S::i('uid'));
82 pl_redirect("");
83 }
84 if (Env::has('unread')) {
85 XDB::query('DELETE FROM group_announces_read
86 WHERE announce_id = {?} AND uid = {?}',
87 Env::i('unread'), S::i('uid'));
88 pl_redirect("#art" . Env::i('unread'));
89 }
90
91 /* TODO: refines this filter on promotions by using userfilter. */
92 $user = S::user();
93 if ($user->hasProfile()) {
94 $promo = XDB::format('{?}', $user->profile()->entry_year);
95 $minCondition = ' OR promo_min <= ' . $promo;
96 $maxCondition = ' OR promo_max >= ' . $promo;
97 } else {
98 $minCondition = '';
99 $maxCondition = '';
100 }
101 $arts = XDB::iterator('SELECT a.*, FIND_IN_SET(\'photo\', a.flags) AS photo
102 FROM group_announces AS a
103 LEFT JOIN group_announces_read AS r ON (r.uid = {?} AND r.announce_id = a.id)
104 WHERE asso_id = {?} AND expiration >= CURRENT_DATE()
105 AND (promo_min = 0' . $minCondition . ')
106 AND (promo_max = 0' . $maxCondition . ')
107 AND r.announce_id IS NULL
108 ORDER BY a.expiration',
109 S::i('uid'), $globals->asso('id'));
110 $index = XDB::iterator('SELECT a.id, a.titre, r.uid IS NULL AS nonlu
111 FROM group_announces AS a
112 LEFT JOIN group_announces_read AS r ON (a.id = r.announce_id AND r.uid = {?})
113 WHERE asso_id = {?} AND expiration >= CURRENT_DATE()
114 AND (promo_min = 0' . $minCondition . ')
115 AND (promo_max = 0' . $maxCondition . ')
116 ORDER BY a.expiration',
117 S::i('uid'), $globals->asso('id'));
118 $page->assign('article_index', $index);
119 } else {
120 $arts = XDB::iterator("SELECT *, FIND_IN_SET('photo', flags) AS photo
121 FROM group_announces
122 WHERE asso_id = {?} AND expiration >= CURRENT_DATE()
123 AND FIND_IN_SET('public', flags)",
124 $globals->asso('id'));
125 $payments = XDB::fetchAllAssoc("SELECT id, text
126 FROM payments
127 WHERE asso_id = {?} AND NOT FIND_IN_SET('old', flags) AND FIND_IN_SET('public', flags)
128 ORDER BY id DESC",
129 $globals->asso('id'));
130 $page->assign('payments', $payments);
131 }
132 if (may_update()) {
133 $subs_valid = XDB::query("SELECT uid
134 FROM group_member_sub_requests
135 WHERE asso_id = {?}",
136 $globals->asso('id'));
137 $page->assign('requests', $subs_valid->numRows());
138 }
139
140 if (!S::hasAuthToken()) {
141 $page->setRssLink("Polytechnique.net :: {$globals->asso("nom")} :: News publiques",
142 $platal->ns . "rss/rss.xml");
143 } else {
144 $page->setRssLink("Polytechnique.net :: {$globals->asso("nom")} :: News",
145 $platal->ns . 'rss/' . S::v('hruid') . '/' . S::user()->token . '/rss.xml');
146 }
147
148 $page->assign('articles', $arts);
149 }
150
151 function handler_logo($page)
152 {
153 global $globals;
154 $globals->asso()->getLogo()->send();
155 }
156
157 function handler_site($page)
158 {
159 global $globals;
160 $site = $globals->asso('site');
161 if (!$site) {
162 $page->trigError('Le groupe n\'a pas de site web.');
163 return $this->handler_index($page);
164 }
165 http_redirect($site);
166 exit;
167 }
168
169 function handler_edit($page)
170 {
171 global $globals;
172 $page->changeTpl('xnetgrp/edit.tpl');
173 $error = false;
174
175 if (S::admin()) {
176 $domains = XDB::iterator('SELECT *
177 FROM group_dom
178 ORDER BY nom');
179 $page->assign('domains', $domains);
180 $page->assign('super', true);
181 }
182
183 if (Post::has('submit')) {
184 S::assert_xsrf_token();
185
186 $flags = new PlFlagSet('wiki_desc');
187 $flags->addFlag('notif_unsub', Post::i('notif_unsub') == 1);
188 $site = Post::t('site');
189 if ($site && ($site != "http://")) {
190 $scheme = parse_url($site, PHP_URL_SCHEME);
191 if (!$scheme) {
192 $site = "http://" . $site;
193 }
194 } else {
195 $site = "";
196 }
197
198 $notify_all = (Post::v('notify_all') ? true : false);
199 if (!$notify_all) {
200 $to_notify = array();
201 $uf = New UserFilter(New UFC_Group($globals->asso('id'), true));
202 $uids = $uf->getIds();
203 foreach ($uids as $uid) {
204 if (Post::b('to_notify_' . $uid)) {
205 $to_notify[] = $uid;
206 }
207 }
208 if (count($to_notify) == 0) {
209 $notify_all = true;
210 $page->trigWarning("Aucun animateur n'ayant été selectionné pour recevoir les demandes d'inscriptions, tous le seront.");
211 }
212 }
213 $flags->addFlag('notify_all', $notify_all);
214
215 if (S::admin()) {
216 $page->assign('super', true);
217
218 if (Post::v('mail_domain') && (strstr(Post::v('mail_domain'), '.') === false)) {
219 $page->trigError('Le domaine doit être un FQDN (aucune modification effectuée)&nbsp;!!!');
220 $error = true;
221 }
222 if (Post::t('nom') == '' || Post::t('diminutif') == '') {
223 $page->trigError('Ni le nom ni le diminutif du groupe ne peuvent être vide.');
224 $error = true;
225 }
226 if ($error) {
227 $page->assign('nom', Post::t('nom'));
228 $page->assign('diminutif', Post::t('diminutif'));
229 $page->assign('mail_domain', Post::t('mail_domain'));
230 $page->assign('cat', Post::v('cat'));
231 $page->assign('dom', Post::v('dom'));
232 $page->assign('ax', Post::v('ax'));
233 $page->assign('axDate', Post::t('axDate'));
234 $page->assign('site', $site);
235 $page->assign('resp', Post::t('resp'));
236 $page->assign('mail', Post::t('mail'));
237 $page->assign('phone', Post::t('phone'));
238 $page->assign('fax', Post::t('fax'));
239 $page->assign('address', Post::t('address'));
240 $page->assign('forum', Post::t('forum'));
241 $page->assign('inscriptible', Post::v('inscriptible'));
242 $page->assign('sub_url', Post::t('sub_url'));
243 $page->assign('unsub_url', Post::t('unsub_url'));
244 $page->assign('welcome_msg', Post::t('welcome_msg'));
245 $page->assign('pub', Post::v('pub'));
246 $page->assign('notif_unsub', Post::i('notif_unsub'));
247 $page->assign('descr', Post::t('descr'));
248 $page->assign('error', $error);
249 return;
250 }
251
252 $axDate = make_datetime(Post::v('axDate'));
253 if (Post::t('axDate') != '') {
254 $axDate = make_datetime(Post::v('axDate'))->format('Y-m-d');
255 } else {
256 $axDate = null;
257 }
258 XDB::execute(
259 "UPDATE groups
260 SET nom={?}, diminutif={?}, cat={?}, dom={?},
261 descr={?}, site={?}, mail={?}, resp={?},
262 forum={?}, mail_domain={?}, ax={?}, axDate = {?}, pub={?},
263 sub_url={?}, inscriptible={?}, unsub_url={?},
264 flags = {?}, welcome_msg = {?}
265 WHERE id={?}",
266 Post::v('nom'), Post::v('diminutif'),
267 Post::v('cat'), (Post::i('dom') == 0) ? null : Post::i('dom'),
268 Post::v('descr'), $site,
269 Post::v('mail'), Post::v('resp'),
270 Post::v('forum'), Post::v('mail_domain'),
271 Post::has('ax'), $axDate, Post::v('pub'),
272 Post::v('sub_url'), Post::v('inscriptible'),
273 Post::v('unsub_url'), $flags, Post::t('welcome_msg'),
274 $globals->asso('id'));
275 if (Post::v('mail_domain')) {
276 XDB::execute('INSERT IGNORE INTO email_virtual_domains (name)
277 VALUES ({?})',
278 Post::t('mail_domain'));
279 XDB::execute('UPDATE email_virtual_domains
280 SET aliasing = id
281 WHERE name = {?}',
282 Post::t('mail_domain'));
283 }
284 } else {
285 XDB::execute(
286 "UPDATE groups
287 SET descr={?}, site={?}, mail={?}, resp={?},
288 forum={?}, pub= {?}, sub_url={?},
289 unsub_url = {?}, flags = {?}, welcome_msg = {?}
290 WHERE id={?}",
291 Post::v('descr'), $site,
292 Post::v('mail'), Post::v('resp'),
293 Post::v('forum'), Post::v('pub'),
294 Post::v('sub_url'), Post::v('unsub_url'),
295 $flags, Post::t('welcome_msg'),
296 $globals->asso('id'));
297 }
298
299 Phone::deletePhones(0, Phone::LINK_GROUP, $globals->asso('id'));
300 $phone = new Phone(array('link_type' => 'group', 'link_id' => $globals->asso('id'), 'id' => 0,
301 'type' => 'fixed', 'display' => Post::v('phone'), 'pub' => 'public'));
302 $fax = new Phone(array('link_type' => 'group', 'link_id' => $globals->asso('id'), 'id' => 1,
303 'type' => 'fax', 'display' => Post::v('fax'), 'pub' => 'public'));
304 $phone->save();
305 $fax->save();
306 Address::deleteAddresses(null, Address::LINK_GROUP, null, $globals->asso('id'));
307 $address = new Address(array('groupid' => $globals->asso('id'), 'type' => Address::LINK_GROUP, 'text' => Post::v('address')));
308 $address->save();
309
310 if ($_FILES['logo']['name']) {
311 $upload = PlUpload::get($_FILES['logo'], $globals->asso('id'), 'asso.logo', true);
312 if (!$upload) {
313 $page->trigError("Impossible de télécharger le logo.");
314 } else {
315 XDB::execute('UPDATE groups
316 SET logo = {?}, logo_mime = {?}
317 WHERE id = {?}', $upload->getContents(), $upload->contentType(),
318 $globals->asso('id'));
319 $upload->rm();
320 }
321 }
322
323 XDB::execute("UPDATE group_members
324 SET flags = ''
325 WHERE asso_id = {?}",
326 $globals->asso('id'));
327 if (!$notify_all) {
328 XDB::execute("UPDATE group_members
329 SET flags = 'notify'
330 WHERE asso_id = {?} AND uid IN {?}",
331 $globals->asso('id'), $to_notify);
332 }
333
334 pl_redirect('../' . Post::v('diminutif', $globals->asso('diminutif')) . '/edit');
335 }
336
337 $uf = New UserFilter(New UFC_Group($globals->asso('id'), true, UFC_Group::NOTIFIED));
338 $page->assign('notified', $uf->getUsers());
339 $uf = New UserFilter(New UFC_Group($globals->asso('id'), true, UFC_Group::UNNOTIFIED));
340 $page->assign('unnotified', $uf->getUsers());
341
342 $page->assign('error', $error);
343 $page->assign('cat', $globals->asso('cat'));
344 $page->assign('dom', $globals->asso('dom'));
345 $page->assign('ax', $globals->asso('ax'));
346 $page->assign('inscriptible', $globals->asso('inscriptible'));
347 $page->assign('pub', $globals->asso('pub'));
348 $page->assign('notif_unsub', $globals->asso('notif_unsub'));
349 $page->assign('notify_all', $globals->asso('notify_all'));
350 }
351
352 function handler_mail($page)
353 {
354 global $globals;
355
356 $page->changeTpl('xnetgrp/mail.tpl');
357 $mmlist = new MMList(S::user(), $globals->asso('mail_domain'));
358 $page->assign('listes', $mmlist->get_lists());
359 $page->assign('user', S::user());
360
361 if (Post::has('send')) {
362 S::assert_xsrf_token();
363 $from = Post::v('from');
364 $sujet = Post::v('sujet');
365 $body = Post::v('body');
366
367 $mls = array_keys(Env::v('ml', array()));
368 $mbr = array_keys(Env::v('membres', array()));
369
370 $this->load('mail.inc.php');
371 set_time_limit(120);
372 $tos = get_all_redirects($mbr, $mls, $mmlist);
373
374 $upload = PlUpload::get($_FILES['uploaded'], S::user()->login(), 'xnet.emails', true);
375 if (!$upload && @$_FILES['uploaded']['name'] && PlUpload::$lastError != null) {
376 $page->trigError(PlUpload::$lastError);
377 return;
378 }
379
380 send_xnet_mails($from, $sujet, $body, Env::v('wiki'), $tos, Post::v('replyto'), $upload, @$_FILES['uploaded']['name']);
381 if ($upload) {
382 $upload->rm();
383 }
384 $page->killSuccess("Email envoyé&nbsp;!");
385 $page->assign('sent', true);
386 }
387 }
388
389 function handler_forum($page, $group = null, $artid = null)
390 {
391 global $globals;
392 $page->changeTpl('xnetgrp/forum.tpl');
393 if (!$globals->asso('forum')) {
394 return PL_NOT_FOUND;
395 }
396 require_once 'banana/forum.inc.php';
397 $get = array();
398 get_banana_params($get, $globals->asso('forum'), $group, $artid);
399 run_banana($page, 'ForumsBanana', $get);
400 }
401
402 function handler_annuaire($page, $action = null, $subaction = null)
403 {
404 global $globals;
405
406 __autoload('userset');
407 $admins = false;
408 if ($action == 'admins') {
409 $admins = true;
410 $action = $subaction;
411 }
412 $view = new UserSet(new UFC_Group($globals->asso('id'), $admins));
413 $view->addMod('groupmember', 'Annuaire');
414 $view->addMod('trombi', 'Trombinoscope');
415 $view->addMod('map', 'Planisphère');
416 $view->apply('annuaire', $page, $action);
417 $page->assign('only_admin', $admins);
418 $page->changeTpl('xnetgrp/annuaire.tpl');
419 }
420
421 function handler_former_users($page)
422 {
423 global $globals;
424 require_once 'userset.inc.php';
425
426 $view = new UserSet(new UFC_GroupFormerMember($globals->asso('id')));
427 $view->addMod('groupmember', 'Anciens membres', true, array('noadmin' => true));
428 $view->apply('former_users', $page);
429 $page->changeTpl('xnetgrp/former_users.tpl');
430 }
431
432 function handler_trombi($page)
433 {
434 pl_redirect('annuaire/trombi');
435 }
436
437 function handler_geoloc($page)
438 {
439 pl_redirect('annuaire/geoloc');
440 }
441
442 function handler_vcard($page, $photos = null)
443 {
444 global $globals;
445 $vcard = new VCard($photos == 'photos', 'Membre du groupe ' . $globals->asso('nom'));
446 $vcard->addProfiles($globals->asso()->getMembersFilter()->getProfiles(null, Profile::FETCH_ALL));
447 $vcard->show();
448 }
449
450 function handler_csv($page, $filename = null)
451 {
452 global $globals;
453 if (is_null($filename)) {
454 $filename = $globals->asso('diminutif') . '.csv';
455 }
456 $users = $globals->asso()->getMembersFilter(null, new UFO_Name())->getUsers();
457 pl_cached_content_headers('text/x-csv', 'iso-8859-1', 1);
458
459 echo utf8_decode("Nom;Prénom;Sexe;Promotion;Commentaire\n");
460 foreach ($users as $user) {
461 $line = $user->lastName() . ';' . $user->firstName() . ';' . ($user->isFemale() ? 'F' : 'M')
462 . ';' . $user->promo() . ';' . strtr($user->group_comm, ';', ',');
463 echo utf8_decode($line) . "\n";
464 }
465 exit();
466 }
467
468 function handler_directory_sync($page)
469 {
470 global $globals;
471 require_once 'emails.inc.php';
472
473 $page->changeTpl('xnetgrp/sync.tpl');
474 Platal::load('lists', 'lists.inc.php');
475
476 if (Env::has('add_users')) {
477 S::assert_xsrf_token();
478
479 $users = array_keys(Env::v('add_users'));
480 $former_users = XDB::fetchColumn('SELECT uid
481 FROM group_former_members
482 WHERE remember = TRUE AND uid IN {?}',
483 $users);
484 $new_users = array_diff($users, $former_users);
485
486 foreach ($former_users as $uid) {
487 $user = User::getSilentWithUID($uid);
488 $page->trigWarning($user->fullName() . ' est un ancien membre du groupe qui ne souhaite pas y revenir.');
489 }
490 if (count($former_users) > 1) {
491 $page->trigWarning('S\'ils souhaitent revenir dans le groupe, il faut qu\'ils en fassent la demande sur la page d\'accueil du groupe.');
492 } elseif (count($former_users)) {
493 $page->trigWarning('S\'il souhaite revenir dans le groupe, il faut qu\'il en fasse la demande sur la page d\'accueil du groupe.');
494 }
495
496 $data = array();
497 foreach ($new_users as $uid) {
498 $data[] = XDB::format('({?}, {?})', $globals->asso('id'), $uid);
499 }
500 XDB::rawExecute('INSERT INTO group_members (asso_id, uid)
501 VALUES ' . implode(',', $data));
502 }
503
504 if (Env::has('add_nonusers')) {
505 S::assert_xsrf_token();
506
507 $nonusers = array_keys(Env::v('add_nonusers'));
508 foreach ($nonusers as $email) {
509 if ($user = User::getSilent($email) || !isvalid_email($email)) {
510 continue;
511 }
512
513 list($local_part, $domain) = explode('@', strtolower($email));
514 $hruid = User::makeHrid($local_part, $domain, 'ext');
515 if ($user = User::getSilent($hruid)) {
516 continue;
517 }
518
519 require_once 'name.func.inc.php';
520 $parts = explode('.', $local_part);
521 if (count($parts) == 1) {
522 $lastname = $display_name = capitalize_name($mbox);
523 $firstname = '';
524 } else {
525 $display_name = $firstname = capitalize_name($parts[0]);
526 $lastname = capitalize_name(implode(' ', array_slice($parts, 1)));
527 }
528 $full_name = build_full_name($firstname, $lastname);
529 $directory_name = build_directory_name($firstname, $lastname);
530 $sort_name = build_sort_name($firstname, $lastname);
531 XDB::execute('INSERT INTO accounts (hruid, display_name, full_name, directory_name, sort_name,
532 firstname, lastname, email, type, state)
533 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, \'xnet\', \'disabled\')',
534 $hruid, $display_name, $full_name, $directory_name, $sort_name, $firstname, $lastname, $email);
535 $uid = XDB::insertId();
536 XDB::execute('INSERT INTO group_members (asso_id, uid)
537 VALUES ({?}, {?})',
538 $globals->asso('id'), $uid);
539 }
540 }
541
542 if (Env::has('add_users') || Env::has('add_nonusers')) {
543 $page->trigSuccess('Ajouts réalisés avec succès.');
544 }
545
546 $user = S::user();
547 $client = new MMList($user, $globals->asso('mail_domain'));
548 $lists = $client->get_lists();
549 $members = array();
550 foreach ($lists as $list) {
551 $details = $client->get_members($list['list']);
552 $members = array_merge($members, list_extract_members($details[1]));
553 }
554 $members = array_unique($members);
555 $uids = array();
556 $users = array();
557 $nonusers = array();
558 foreach ($members as $email) {
559 if ($user = User::getSilent($email)) {
560 $uids[] = $user->id();
561 } else {
562 $nonusers[] = $email;
563 }
564 }
565
566 $aliases = iterate_list_alias($globals->asso('mail_domain'));
567 foreach ($aliases as $alias) {
568 list($local_part, $domain) = explode('@', $alias);
569 $aliases_members = list_alias_members($local_part, $domain);
570 $users = array_merge($users, $aliases_members['users']);
571 $nonusers = array_merge($nonusers, $aliases_members['nonusers']);
572 }
573 foreach ($users as $user) {
574 $uids[] = $user->id();
575 }
576 $nonusers = array_unique($nonusers);
577 $uids = array_unique($uids);
578 if (count($uids)) {
579 $uids = XDB::fetchColumn('SELECT a.uid
580 FROM accounts AS a
581 WHERE a.uid IN {?} AND NOT EXISTS (SELECT *
582 FROM group_members AS g
583 WHERE a.uid = g.uid AND g.asso_id = {?})',
584 $uids, $globals->asso('id'));
585
586 $users = User::getBulkUsersWithUIDs($uids);
587 usort($users, 'User::compareDirectoryName');
588 } else {
589 $users = array();
590 }
591 sort($nonusers);
592
593 $page->assign('users', $users);
594 $page->assign('nonusers', $nonusers);
595 }
596
597 function handler_non_active($page)
598 {
599 global $globals;
600 $page->changeTpl('xnetgrp/non_active.tpl');
601
602 $uids = XDB::fetchColumn('SELECT g.uid
603 FROM group_members AS g
604 INNER JOIN accounts AS a ON (a.uid = g.uid)
605 LEFT JOIN register_pending_xnet AS p ON (p.uid = g.uid)
606 WHERE a.uid = g.uid AND g.asso_id = {?} AND a.type = \'xnet\' AND a.state = \'disabled\' AND p.uid IS NULL',
607 $globals->asso('id'));
608 foreach ($uids as $key => $uid) {
609 if (AccountReq::isPending($uid) || BulkAccountsReq::isPending($uid)) {
610 unset($uids[$key]);
611 }
612 }
613
614 if (Post::has('enable_accounts')) {
615 S::assert_xsrf_token();
616
617 $uids_to_enable = array_intersect(array_keys(Post::v('enable_accounts')), $uids);
618
619 $user = S::user();
620 $request = new BulkAccountsReq($user, $uids_to_enable, $globals->asso('nom'), $globals->asso('diminutif'));
621 $request->submit();
622 $page->trigSuccess('Un email va bientôt être envoyé aux personnes sélectionnées pour l\'activation de leur compte.');
623
624 foreach ($uids as $key => $uid) {
625 if (in_array($uid, $uids_to_enable)) {
626 unset($uids[$key]);
627 }
628 }
629 }
630
631 $users = User::getBulkUsersWithUIDs($uids);
632 $page->assign('users', $users);
633 }
634
635 private function again($uid)
636 {
637 $data = XDB::fetchOneAssoc('SELECT hash, group_name, sender_name, email
638 FROM register_pending_xnet
639 WHERE uid = {?}',
640 $uid);
641 XDB::execute('UPDATE register_pending_xnet
642 SET last_date = NOW()
643 WHERE uid = {?}',
644 $uid);
645
646 $mailer = new PlMailer('xnet/account.mail.tpl');
647 $mailer->addCc('validation+xnet_account@polytechnique.org');
648 $mailer->setTo($data['email']);
649 $mailer->assign('hash', $data['hash']);
650 $mailer->assign('email', $data['email']);
651 $mailer->assign('group', $data['group_name']);
652 $mailer->assign('sender_name', $data['sender_name']);
653 $mailer->assign('again', true);
654 $mailer->assign('baseurl', Platal::globals()->xnet->xorg_baseurl);
655 $mailer->send();
656 }
657
658 function handler_awaiting_active($page)
659 {
660 global $globals;
661 $page->changeTpl('xnetgrp/awaiting_active.tpl');
662
663 XDB::execute('DELETE FROM register_pending_xnet
664 WHERE DATE_SUB(NOW(), INTERVAL 1 MONTH) > date');
665
666 $uids = XDB::fetchColumn('SELECT g.uid
667 FROM group_members AS g
668 INNER JOIN accounts AS a ON (a.uid = g.uid)
669 INNER JOIN register_pending_xnet AS p ON (p.uid = g.uid)
670 WHERE a.uid = g.uid AND g.asso_id = {?} AND a.type = \'xnet\' AND a.state = \'pending\'',
671 $globals->asso('id'));
672
673 if (Post::has('again')) {
674 S::assert_xsrf_token();
675
676 $uids_to_again = array_intersect(array_keys(Post::v('again')), $uids);
677 foreach ($uids_to_again as $uid) {
678 $this->again($uid);
679 }
680 $page->trigSuccess('Relances effectuées avec succès.');
681 }
682
683 if ($uids) {
684 $registration_date = XDB::fetchAllAssoc('uid', 'SELECT uid, date
685 FROM register_pending_xnet
686 WHERE uid IN {?}', $uids);
687 $last_date = XDB::fetchAllAssoc('uid', 'SELECT uid, last_date
688 FROM register_pending_xnet
689 WHERE uid IN {?}', $uids);
690
691 $users = User::getBulkUsersWithUIDs($uids);
692 $page->assign('users', $users);
693 $page->assign('registration_date', $registration_date);
694 $page->assign('last_date', $last_date);
695 }
696
697 }
698
699 private function removeSubscriptionRequest($uid)
700 {
701 global $globals;
702 XDB::execute("DELETE FROM group_member_sub_requests
703 WHERE asso_id = {?} AND uid = {?}",
704 $globals->asso('id'), $uid);
705 }
706
707 private function validSubscription(User $user)
708 {
709 global $globals;
710 $this->removeSubscriptionRequest($user->id());
711 Group::subscribe($globals->asso('id'), $user->id());
712
713 if (XDB::affectedRows() == 1) {
714 $mailer = new PlMailer();
715 $mailer->addTo($user->forlifeEmail());
716 $mailer->setFrom('"' . S::user()->fullName() . '" <' . S::user()->forlifeEmail() . '>');
717 $mailer->setSubject('[' . $globals->asso('nom') . '] Demande d\'inscription');
718 $message = ($user->isFemale() ? 'Chère' : 'Cher') . " Camarade,\n"
719 . "\n"
720 . " Suite à ta demande d'adhésion à " . $globals->asso('nom')
721 . ", j'ai le plaisir de t'annoncer que ton inscription a été validée !\n"
722 . (is_null($globals->asso('welcome_msg')) ? '' : "\n" . $globals->asso('welcome_msg') . "\n")
723 . "\n"
724 . "Bien cordialement,\n"
725 . "-- \n"
726 . S::user()->fullName() . '.';
727 $mailer->setTxtBody(wordwrap($message, 72));
728 $mailer->send();
729 }
730 }
731
732 function handler_subscribe($page, $u = null)
733 {
734 global $globals;
735 $page->changeTpl('xnetgrp/inscrire.tpl');
736
737 if (!$globals->asso('inscriptible'))
738 $page->kill("Il n'est pas possible de s'inscire en ligne à ce "
739 ."groupe. Essaie de joindre le contact indiqué "
740 ."sur la page de présentation.");
741
742 if (!is_null($u) && may_update()) {
743 $user = User::get($u);
744 if (!$user) {
745 return PL_NOT_FOUND;
746 } else {
747 $page->assign('user', $user);
748 }
749
750 // Retrieves the subscription status, and the reason.
751 $res = XDB::query("SELECT reason
752 FROM group_member_sub_requests
753 WHERE asso_id = {?} AND uid = {?}",
754 $globals->asso('id'), $user->id());
755 $reason = ($res->numRows() ? $res->fetchOneCell() : null);
756
757 $res = XDB::query("SELECT COUNT(*)
758 FROM group_members
759 WHERE asso_id = {?} AND uid = {?}",
760 $globals->asso('id'), $user->id());
761 $already_member = ($res->fetchOneCell() > 0);
762
763 // Handles the membership request.
764 if ($already_member) {
765 $this->removeSubscriptionRequest($user->id());
766 $page->kill($user->fullName() . ' est déjà membre du groupe&nbsp;!');
767 } elseif (Env::has('accept')) {
768 S::assert_xsrf_token();
769
770 $this->validSubscription($user);
771 pl_redirect("member/" . $user->login());
772 } elseif (Env::has('refuse')) {
773 S::assert_xsrf_token();
774
775 $this->removeSubscriptionRequest($user->id());
776 $mailer = new PlMailer();
777 $mailer->addTo($user->forlifeEmail());
778 $mailer->setFrom('"' . S::user()->fullName() . '" <' . S::user()->forlifeEmail() . '>');
779 $mailer->setSubject('['.$globals->asso('nom').'] Demande d\'inscription annulée');
780 $mailer->setTxtBody(Env::v('motif'));
781 $mailer->send();
782 $page->killSuccess("La demande de {$user->fullName()} a bien été refusée.");
783 } else {
784 $page->assign('show_form', true);
785 $page->assign('reason', $reason);
786 }
787 return;
788 }
789
790 if (is_member()) {
791 $page->kill("Tu es déjà membre&nbsp;!");
792 return;
793 }
794
795 $res = XDB::query("SELECT uid
796 FROM group_member_sub_requests
797 WHERE uid = {?} AND asso_id = {?}",
798 S::i('uid'), $globals->asso('id'));
799 if ($res->numRows() != 0) {
800 $page->kill("Tu as déjà demandé ton inscription à ce groupe. Cette demande est actuellement en attente de validation.");
801 return;
802 }
803
804 if (Post::has('inscrire')) {
805 S::assert_xsrf_token();
806
807 XDB::execute("INSERT INTO group_member_sub_requests (asso_id, uid, ts, reason)
808 VALUES ({?}, {?}, NOW(), {?})",
809 $globals->asso('id'), S::i('uid'), Post::v('message'));
810 XDB::execute('DELETE FROM group_former_members
811 WHERE uid = {?} AND asso_id = {?}',
812 S::i('uid'), $globals->asso('id'));
813 $admins = $globals->asso()->iterToNotify();
814 $admin = $admins->next();
815 $to = $admin->bestEmail();
816 while ($admin = $admins->next()) {
817 $to .= ', ' . $admin->bestEmail();
818 }
819
820 $append = "\n"
821 . "-- \n"
822 . "Ce message a été envoyé suite à la demande d'inscription de\n"
823 . S::user()->fullName(true) . "\n"
824 . "Via le site www.polytechnique.net. Tu peux choisir de valider ou\n"
825 . "de refuser sa demande d'inscription depuis la page :\n"
826 . "http://www.polytechnique.net/" . $globals->asso("diminutif") . "/subscribe/" . S::user()->login() . "\n"
827 . "\n"
828 . "En cas de problème, contacter l'équipe de Polytechnique.org\n"
829 . "à l'adresse : support@polytechnique.org\n";
830
831 if (!$to) {
832 $to = ($globals->asso('mail') != '') ? $globals->asso('mail') . ', ' : '';
833 $to .= 'support@polytechnique.org';
834 $append = "\n-- \nLe groupe ".$globals->asso("nom")
835 ." n'a pas d'administrateur, l'équipe de"
836 ." Polytechnique.org a été prévenue et va rapidement"
837 ." résoudre ce problème.\n";
838 }
839
840 $mailer = new PlMailer();
841 $mailer->addTo($to);
842 $mailer->setFrom('"' . S::user()->fullName() . '" <' . S::user()->forlifeEmail() . '>');
843 $mailer->setSubject('['.$globals->asso('nom').'] Demande d\'inscription');
844 $mailer->setTxtBody(Post::v('message').$append);
845 $mailer->send();
846 }
847 }
848
849 function handler_subscribe_valid($page)
850 {
851 global $globals;
852
853 if (Post::has('valid')) {
854 S::assert_xsrf_token();
855 $subs = Post::v('subs');
856 if (is_array($subs)) {
857 $users = array();
858 foreach ($subs as $hruid => $val) {
859 if ($val == '1') {
860 $user = User::get($hruid);
861 if ($user) {
862 $this->validSubscription($user);
863 }
864 }
865 }
866 }
867 }
868
869 $it = XDB::iterator('SELECT s.uid, a.hruid, s.ts AS date
870 FROM group_member_sub_requests AS s
871 INNER JOIN accounts AS a ON(s.uid = a.uid)
872 WHERE s.asso_id = {?}
873 ORDER BY s.ts', $globals->asso('id'));
874 $page->changeTpl('xnetgrp/subscribe-valid.tpl');
875 $page->assign('valid', $it);
876 }
877
878 function handler_change_rights($page)
879 {
880 if (Env::has('right') && (may_update() || S::suid())) {
881 switch (Env::v('right')) {
882 case 'admin':
883 Platal::session()->stopSUID();
884 break;
885 case 'anim':
886 Platal::session()->doSelfSuid();
887 may_update(true);
888 is_member(true);
889 break;
890 case 'member':
891 Platal::session()->doSelfSuid();
892 may_update(false, true);
893 is_member(true);
894 break;
895 case 'logged':
896 Platal::session()->doSelfSuid();
897 may_update(false, true);
898 is_member(false, true);
899 break;
900 }
901 }
902 http_redirect($_SERVER['HTTP_REFERER']);
903 }
904
905 function handler_admin_annuaire($page)
906 {
907 global $globals;
908
909 $this->load('mail.inc.php');
910 $page->changeTpl('xnetgrp/annuaire-admin.tpl');
911 $user = S::user();
912 $mmlist = new MMList($user, $globals->asso('mail_domain'));
913 $lists = $mmlist->get_lists();
914 if (!$lists) $lists = array();
915 $listes = array_map(create_function('$arr', 'return $arr["list"];'), $lists);
916
917 $subscribers = array();
918
919 foreach ($listes as $list) {
920 list(,$members) = $mmlist->get_members($list);
921 $mails = array_map(create_function('$arr', 'return $arr[1];'), $members);
922 $subscribers = array_unique(array_merge($subscribers, $mails));
923 }
924
925 $not_in_group_x = array();
926 $not_in_group_ext = array();
927
928 foreach ($subscribers as $mail) {
929 $uf = new UserFilter(new PFC_And(new UFC_Group($globals->asso('id')),
930 new UFC_Email($mail)));
931 if ($uf->getTotalCount() == 0) {
932 if (User::isForeignEmailAddress($mail)) {
933 $not_in_group_ext[] = $mail;
934 } else {
935 $not_in_group_x[] = $mail;
936 }
937 }
938 }
939
940 $page->assign('not_in_group_ext', $not_in_group_ext);
941 $page->assign('not_in_group_x', $not_in_group_x);
942 $page->assign('lists', $lists);
943 }
944
945 function handler_admin_member_new($page, $email = null)
946 {
947 global $globals;
948
949 $page->changeTpl('xnetgrp/membres-add.tpl');
950 $page->addJsLink('xnet_members.js');
951
952 if (is_null($email)) {
953 return;
954 }
955
956 S::assert_xsrf_token();
957 $suggest_account_activation = false;
958
959 // FS#703 : $_GET is urldecoded twice, hence
960 // + (the data) => %2B (in the url) => + (first decoding) => ' ' (second decoding)
961 // Since there can be no spaces in emails, we can fix this with :
962 $email = str_replace(' ', '+', $email);
963 $is_valid_email = isvalid_email($email);
964
965 // X not registered to main site.
966 if (Env::v('x') && Env::i('userid') && $is_valid_email) {
967 $user = User::getSilentWithUID(Env::i('userid'));
968 if (!$user) {
969 $page->trigError('Utilisateur invalide.');
970 return;
971 }
972
973 // User has an account but is not yet registered.
974 if ($user->state == 'pending') {
975 // Add email in account table.
976 XDB::query('UPDATE accounts
977 SET email = {?}
978 WHERE uid = {?} AND email IS NULL',
979 $email, $user->id());
980 // Add email for marketing if required.
981 if (Env::v('marketing')) {
982 $market = Marketing::get($user->uid, $email);
983 if (!$market) {
984 $market = new Marketing($user->uid, $email, 'group', $globals->asso('nom'),
985 Env::v('marketing_from'), S::v('uid'));
986 $market->add();
987 }
988 }
989 } elseif (Env::v('broken')) {
990 // Add email for broken if required.
991 $valid = new BrokenReq(S::user(), $user, $email, 'Groupe : ' . $globals->asso('nom'));
992 $valid->submit();
993 }
994 } else {
995 $user = User::getSilent($email);
996
997 // Wrong email and no user: failure.
998 if (is_null($user) && (!$is_valid_email || !User::isForeignEmailAddress($email))) {
999 $page->trigError('«&nbsp;<strong>' . $email . '</strong>&nbsp;» n\'est pas une adresse email valide.');
1000 return;
1001 }
1002
1003 // Deals with xnet accounts.
1004 if (is_null($user) || $user->type == 'xnet') {
1005 // User is of type xnet. There are 3 possible cases:
1006 // * the email is not known yet: we create a new account and
1007 // propose to send an email to the user so he can activate
1008 // his account,
1009 // * the email is known but the user was not contacted in order to
1010 // activate yet: we propose to send an email to the user so he
1011 // can activate his account,
1012 // * the email is known and the user was already contacted or has
1013 // an active account: nothing to be done.
1014 list($mbox, $domain) = explode('@', strtolower($email));
1015 $hruid = User::makeHrid($mbox, $domain, 'ext');
1016 // User might already have an account (in another group for example).
1017 $user = User::getSilent($hruid);
1018
1019 // If the user has no account yet, creates new account: build names from email address.
1020 if (empty($user)) {
1021 require_once 'name.func.inc.php';
1022 $parts = explode('.', $mbox);
1023 if (count($parts) == 1) {
1024 $lastname = $display_name = capitalize_name($mbox);
1025 $firstname = '';
1026 } else {
1027 $display_name = $firstname = capitalize_name($parts[0]);
1028 $lastname = capitalize_name(implode(' ', array_slice($parts, 1)));
1029 }
1030 $full_name = build_full_name($firstname, $lastname);
1031 $directory_name = build_directory_name($firstname, $lastname);
1032 $sort_name = build_sort_name($firstname, $lastname);
1033 XDB::execute('INSERT INTO accounts (hruid, display_name, full_name, directory_name, sort_name,
1034 firstname, lastname, email, type, state)
1035 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, {?}, {?}, \'xnet\', \'disabled\')',
1036 $hruid, $display_name, $full_name, $directory_name, $sort_name, $firstname, $lastname, $email);
1037 $user = User::getSilent($hruid);
1038 }
1039
1040 $suggest_account_activation = $this->suggest($user);
1041 }
1042 }
1043
1044 if ($user) {
1045 // First check if the user used to be in this group.
1046 XDB::rawExecute('DELETE FROM group_former_members
1047 WHERE remember AND DATE_SUB(NOW(), INTERVAL 1 YEAR) > unsubsciption_date');
1048 $former_member = XDB::fetchOneCell('SELECT remember
1049 FROM group_former_members
1050 WHERE uid = {?} AND asso_id = {?}',
1051 $user->id(), $globals->asso('id'));
1052 if ($former_member === 1) {
1053 $page->trigError($user->fullName() . ' est un ancien membre du groupe qui ne souhaite pas y revenir. S\'il souhaite revenir dans le groupe, il faut qu\'il en fasse la demande sur la page d\'accueil du groupe.');
1054 return;
1055 } elseif (!is_null($former_member) && Post::i('force_continue') == 0) {
1056 $page->trigWarning($user->fullName() . ' est un ancien membre du groupe qui s\'est récemment désinscrit. Malgré cela, si tu penses qu\'il souhaite revenir, cliquer sur « Ajouter » l\'ajoutera bien au groupe cette fois.');
1057 $page->assign('force_continue', 1);
1058 return;
1059 }
1060
1061 Group::subscribe($globals->asso('id'), $user->id());
1062 $this->removeSubscriptionRequest($user->id());
1063 if ($suggest_account_activation) {
1064 pl_redirect('member/suggest/' . $user->login() . '/' . $email . '/' . $globals->asso('nom'));
1065 } else {
1066 pl_redirect('member/' . $user->login());
1067 }
1068 }
1069 }
1070
1071 // Check if the user has a pending or active account, and thus if we should her account's activation.
1072 private function suggest(PlUser $user)
1073 {
1074 $active = XDB::fetchOneCell('SELECT state = \'active\'
1075 FROM accounts
1076 WHERE uid = {?}',
1077 $user->id());
1078 $pending = XDB::fetchOneCell('SELECT uid
1079 FROM register_pending_xnet
1080 WHERE uid = {?}',
1081 $user->id());
1082 $requested = AccountReq::isPending($user->id()) || BulkAccountsReq::isPending($user->id());
1083
1084 if ($active || $pending || $requested) {
1085 return false;
1086 }
1087 return true;
1088 }
1089
1090 function handler_admin_member_suggest($page, $hruid, $email)
1091 {
1092 $page->changeTpl('xnetgrp/membres-suggest.tpl');
1093
1094 // FS#703 : $_GET is urldecoded twice, hence
1095 // + (the data) => %2B (in the url) => + (first decoding) => ' ' (second decoding)
1096 // Since there can be no spaces in emails, we can fix this with :
1097 $email = str_replace(' ', '+', $email);
1098
1099 if (Post::has('suggest')) {
1100 if (Post::t('suggest') == 'yes') {
1101 global $globals;
1102
1103 $user = S::user();
1104 $request = new AccountReq($user, $hruid, $email, $globals->asso('nom'), $globals->asso('diminutif'));
1105 $request->submit();
1106 $page->trigSuccessRedirect('Un email va bien être envoyé à ' . $email . ' pour l\'activation de son compte.',
1107 $globals->asso('diminutif') . '/member/' . $hruid);
1108 } else {
1109 pl_redirect('member/' . $hruid);
1110 }
1111 }
1112 $page->assign('email', $email);
1113 $page->assign('hruid', $hruid);
1114 }
1115
1116 function handler_admin_member_reg($page, $uid)
1117 {
1118 pl_content_headers('text/plain');
1119
1120 $user = User::getSilentWithUID($uid);
1121 if ($user && $user->state != 'pending' && $user->hasProfile()) {
1122 echo true;
1123 }
1124 echo false;
1125 exit();
1126 }
1127
1128 function handler_admin_member_new_ajax($page)
1129 {
1130 pl_content_headers("text/html");
1131 $page->changeTpl('xnetgrp/membres-new-search.tpl', NO_SKIN);
1132 $users = array();
1133 $same_email = false;
1134 if (Env::has('login')) {
1135 $user = User::getSilent(Env::t('login'));
1136 if ($user && $user->state != 'pending') {
1137 $users = array($user->id() => $user);
1138 $same_email = true;
1139 }
1140 }
1141 if (empty($users)) {
1142 list($lastname, $firstname) = str_replace(array('-', ' ', "'"), '%', array(Env::t('nom'), Env::t('prenom')));
1143 $cond = new PFC_And();
1144 if (!empty($lastname)) {
1145 $cond->addChild(new UFC_NameTokens($lastname, array(), false, false, Profile::LASTNAME));
1146 }
1147 if (!empty($firstname)) {
1148 $cond->addChild(new UFC_NameTokens($firstname, array(), false, false, Profile::FIRSTNAME));
1149 }
1150 if (Env::t('promo')) {
1151 $cond->addChild(new UFC_Promo('=', UserFilter::DISPLAY, Env::t('promo')));
1152 }
1153 $uf = new UserFilter($cond);
1154 $users = $uf->getUsers(new PlLimit(30));
1155 if ($uf->getTotalCount() > 30) {
1156 $page->assign('too_many', true);
1157 $users = array();
1158 }
1159 }
1160
1161 $page->assign('users', $users);
1162 $page->assign('same_email', $same_email);
1163 }
1164
1165 function unsubscribe(PlUser $user, $remember = false)
1166 {
1167 global $globals;
1168 Group::unsubscribe($globals->asso('id'), $user->id(), $remember);
1169
1170 if ($globals->asso('notif_unsub')) {
1171 $mailer = new PlMailer('xnetgrp/unsubscription-notif.mail.tpl');
1172 $admins = $globals->asso()->iterToNotify();
1173 while ($admin = $admins->next()) {
1174 $mailer->addTo($admin);
1175 }
1176 $mailer->assign('group', $globals->asso('nom'));
1177 $mailer->assign('user', $user);
1178 $mailer->assign('selfdone', $user->id() == S::i('uid'));
1179 $mailer->send();
1180 }
1181
1182 $domain = $globals->asso('mail_domain');
1183 if (!$domain) {
1184 return true;
1185 }
1186
1187 $mmlist = new MMList(S::user(), $domain);
1188 $listes = $mmlist->get_lists($user->forlifeEmail());
1189
1190 $may_update = may_update();
1191 $warning = false;
1192 if (is_array($listes)) {
1193 foreach ($listes as $liste) {
1194 if ($liste['sub'] == 2) {
1195 if ($may_update) {
1196 $mmlist->mass_unsubscribe($liste['list'], Array($user->forlifeEmail()));
1197 } else {
1198 $mmlist->unsubscribe($liste['list']);
1199 }
1200 } elseif ($liste['sub']) {
1201 Platal::page()->trigWarning($user->fullName() . " a une"
1202 ." demande d'inscription en cours sur la"
1203 ." liste {$liste['list']}@ !");
1204 $warning = true;
1205 }
1206 }
1207 }
1208
1209 XDB::execute('DELETE v
1210 FROM email_virtual AS v
1211 INNER JOIN email_virtual_domains AS d ON (v.domain = d.id)
1212 WHERE v.redirect = {?} AND d.name = {?}',
1213 $user->forlifeEmail(), $domain);
1214 return !$warning;
1215 }
1216
1217 function handler_unsubscribe($page)
1218 {
1219 $page->changeTpl('xnetgrp/membres-del.tpl');
1220 $user = S::user();
1221 if (empty($user)) {
1222 return PL_NOT_FOUND;
1223 }
1224 $page->assign('self', true);
1225 $page->assign('user', $user);
1226
1227 if (!Post::has('confirm')) {
1228 return;
1229 } else {
1230 S::assert_xsrf_token();
1231 }
1232
1233 $hasSingleGroup = ($user->groupCount() == 1);
1234
1235 if ($this->unsubscribe($user, Post::b('remember'))) {
1236 $page->trigSuccess('Tu as été désinscrit du groupe avec succès.');
1237 } else {
1238 $page->trigWarning('Tu as été désinscrit du groupe, mais des erreurs se sont produites lors des désinscriptions des alias et des listes de diffusion.');
1239 }
1240
1241 // If user is of type xnet account and this was her last group, disable the account.
1242 if ($user->type == 'xnet' && $hasSingleGroup) {
1243 $user->clear(true);
1244 }
1245 $page->assign('is_member', is_member(true));
1246 }
1247
1248 function handler_admin_member_del($page, $user = null)
1249 {
1250 $page->changeTpl('xnetgrp/membres-del.tpl');
1251 $user = User::getSilent($user);
1252 if (empty($user)) {
1253 return PL_NOT_FOUND;
1254 }
1255
1256 global $globals;
1257
1258 if (!$user->inGroup($globals->asso('id'))) {
1259 pl_redirect('annuaire');
1260 }
1261
1262 $page->assign('self', false);
1263 $page->assign('user', $user);
1264
1265 if (!Post::has('confirm')) {
1266 return;
1267 } else {
1268 S::assert_xsrf_token();
1269 }
1270
1271 $hasSingleGroup = ($user->groupCount() == 1);
1272
1273 if ($this->unsubscribe($user)) {
1274 $page->trigSuccess("{$user->fullName()} a été désinscrit du groupe&nbsp;!");
1275 } else {
1276 $page->trigWarning("{$user->fullName()} a été désinscrit du groupe, mais des erreurs subsistent&nbsp;!");
1277 }
1278
1279 // If user is of type xnet account and this was her last group, disable the account.
1280 if ($user->type == 'xnet' && $hasSingleGroup) {
1281 $user->clear(true);
1282 }
1283 }
1284
1285 private function changeLogin(PlPage $page, PlUser $user, $login, $req_broken = false, $req_marketing = false, $marketing_from = 'user')
1286 {
1287 // Search the user's uid.
1288 $xuser = User::getSilent($login);
1289 if (!$xuser) {
1290 $accounts = User::getPendingAccounts($login);
1291 if (!$accounts) {
1292 $page->trigError("L'identifiant $login ne correspond à aucun X.");
1293 return false;
1294 } else if (count($accounts) > 1) {
1295 $page->trigError("L'identifiant $login correspond à plusieurs camarades.");
1296 return false;
1297 }
1298 $xuser = User::getSilent($accounts[0]['uid']);
1299 }
1300
1301 if (!$xuser) {
1302 return false;
1303 }
1304
1305 // Market or suggest new redirection if required.
1306 $email = $user->bestEmail();
1307 if ($req_broken) {
1308 $valid = new BrokenReq(S::user(), $xuser, $email, 'Groupe : ' . Platal::globals()->asso('nom'));
1309 $valid->submit();
1310 } elseif ($req_marketing) {
1311 $market = Marketing::get($xuser->uid, $email);
1312 if (!$market) {
1313 $market = new Marketing($xuser->uid, $email, 'group', Platal::globals()->asso('nom'), $marketing_from, S::i('uid'));
1314 $market->add();
1315 }
1316 }
1317
1318 if ($user->mergeIn($xuser)) {
1319 return $xuser->login();
1320 }
1321 return $user->login();
1322 }
1323
1324 function handler_admin_member($page, $user)
1325 {
1326 global $globals;
1327
1328 $user = User::getSilent($user);
1329 if (empty($user)) {
1330 return PL_NOT_FOUND;
1331 }
1332
1333 if (!$user->inGroup($globals->asso('id'))) {
1334 pl_redirect('annuaire');
1335 }
1336
1337 $page->changeTpl('xnetgrp/membres-edit.tpl');
1338 $page->addJsLink('xnet_members.js');
1339
1340 $mmlist = new MMList(S::user(), $globals->asso('mail_domain'));
1341
1342 if (Post::has('change')) {
1343 S::assert_xsrf_token();
1344 require_once 'emails.inc.php';
1345 require_once 'name.func.inc.php';
1346
1347 // Convert user status to X
1348 if (!Post::blank('x')) {
1349 $forlife = $this->changeLogin($page, $user, Post::i('userid'), Post::b('broken'), Post::b('marketing'), Post::v('marketing_from'));
1350 if ($forlife) {
1351 pl_redirect('member/' . $forlife);
1352 }
1353 }
1354
1355 // Update user info
1356 if ($user->type == 'virtual' || ($user->type == 'xnet' && !$user->perms)) {
1357 $lastname = capitalize_name(Post::t('lastname'));
1358 if (Post::s('type') != 'virtual') {
1359 $firstname = capitalize_name(Post::t('firstname'));
1360 } else {
1361 $firstname = '';
1362 }
1363 $full_name = build_full_name($firstname, $lastname);
1364 $directory_name = build_directory_name($firstname, $lastname);
1365 $sort_name = build_sort_name($firstname, $lastname);
1366 XDB::query('UPDATE accounts
1367 SET full_name = {?}, directory_name = {?}, sort_name = {?}, display_name = {?},
1368 firstname = {?}, lastname = {?}, sex = {?}, type = {?}
1369 WHERE uid = {?}',
1370 $full_name, $directory_name, $sort_name, Post::t('display_name'), $firstname, $lastname,
1371 (Post::t('sex') == 'male') ? 'male' : 'female',
1372 (Post::t('type') == 'xnet') ? 'xnet' : 'virtual', $user->id());
1373 }
1374
1375 // Updates email.
1376 $new_email = strtolower(Post::t('email'));
1377 if (($user->type == 'virtual' || ($user->type == 'xnet' && !$user->perms))
1378 && require_email_update($user, $new_email)) {
1379 XDB::query('UPDATE accounts
1380 SET email = {?}
1381 WHERE uid = {?}',
1382 $new_email, $user->id());
1383 if ($user->forlifeEmail()) {
1384 $listClient = new MMList(S::user());
1385 $listClient->change_user_email($user->forlifeEmail(), $new_email);
1386 update_alias_user($user->forlifeEmail(), $new_email);
1387 }
1388 $user = User::getWithUID($user->id());
1389 }
1390 if (XDB::affectedRows()) {
1391 $page->trigSuccess('Données de l\'utilisateur mises à jour.');
1392 }
1393
1394 if (($user->type == 'xnet' && !$user->perms)) {
1395 if (Post::b('suggest')) {
1396 $request = new AccountReq(S::user(), $user->hruid, Post::t('email'), $globals->asso('nom'), $globals->asso('diminutif'));
1397 $request->submit();
1398 $page->trigSuccess('Le compte va bientôt être activé.');
1399 }
1400 if (Post::b('again')) {
1401 $this->again($user->id());
1402 $page->trigSuccess('Relance effectuée avec succès.');
1403 }
1404 }
1405
1406 // Update group params for user
1407 $perms = Post::v('group_perms');
1408 $comm = Post::t('comm');
1409 $position = (Post::t('group_position') == '') ? null : Post::v('group_position');
1410 if ($user->group_perms != $perms || $user->group_comm != $comm || $user->group_position != $position) {
1411 XDB::query('UPDATE group_members
1412 SET perms = {?}, comm = {?}, position = {?}
1413 WHERE uid = {?} AND asso_id = {?}',
1414 ($perms == 'admin') ? 'admin' : 'membre', $comm, $position,
1415 $user->id(), $globals->asso('id'));
1416 if (XDB::affectedRows()) {
1417 if ($perms != $user->group_perms) {
1418 $page->trigSuccess('Permissions modifiées&nbsp;!');
1419 }
1420 if ($comm != $user->group_comm) {
1421 $page->trigSuccess('Commentaire mis à jour.');
1422 }
1423 if ($position != $user->group_position) {
1424 $page->trigSuccess('Poste mis à jour.');
1425 }
1426 }
1427 }
1428
1429 // Gets user info again as they might have change
1430 $user = User::getSilent($user->id());
1431
1432 // Update ML subscriptions
1433 foreach (Env::v('ml1', array()) as $ml => $state) {
1434 $ask = empty($_REQUEST['ml2'][$ml]) ? 0 : 2;
1435 if ($ask == $state) {
1436 continue;
1437 }
1438 if ($state == '1') {
1439 $page->trigWarning("{$user->fullName()} a "
1440 ."actuellement une demande d'inscription en "
1441 ."cours sur <strong>$ml@</strong> !!!");
1442 } elseif ($ask) {
1443 $mmlist->mass_subscribe($ml, Array($user->forlifeEmail()));
1444 $page->trigSuccess("{$user->fullName()} a été abonné à $ml@.");
1445 } else {
1446 $mmlist->mass_unsubscribe($ml, Array($user->forlifeEmail()));
1447 $page->trigSuccess("{$user->fullName()} a été désabonné de $ml@.");
1448 }
1449 }
1450
1451 // Change subscriptioin to aliases
1452 foreach (Env::v('ml3', array()) as $ml => $state) {
1453 require_once 'emails.inc.php';
1454 $ask = !empty($_REQUEST['ml4'][$ml]);
1455 list($local_part, ) = explode('@', $ml);
1456 if ($ask == $state) {
1457 continue;
1458 }
1459 if ($ask) {
1460 add_to_list_alias($user->id(), $local_part, $globals->asso('mail_domain'));
1461 $page->trigSuccess("{$user->fullName()} a été abonné à $ml.");
1462 } else {
1463 delete_from_list_alias($user->id(), $local_part, $globals->asso('mail_domain'));
1464 $page->trigSuccess("{$user->fullName()} a été désabonné de $ml.");
1465 }
1466 }
1467
1468 if ($globals->asso('has_nl')) {
1469 $nl = NewsLetter::forGroup($globals->asso('shortname'));
1470 // Updates group's newsletter subscription.
1471 if (Post::i('newsletter') == 1) {
1472 $nl->subscribe($user);
1473 } else {
1474 $nl->unsubscribe(null, $user->id());
1475 }
1476 }
1477 }
1478
1479 $res = XDB::rawFetchAllAssoc('SHOW COLUMNS FROM group_members LIKE \'position\'');
1480 $positions = str_replace(array('enum(', ')', '\''), '', $res[0]['Type']);
1481 if ($globals->asso('has_nl')) {
1482 $nl = NewsLetter::forGroup($globals->asso('shortname'));
1483 $nl_registered = $nl->subscriptionState($user);
1484 } else {
1485 $nl_registered = false;
1486 }
1487
1488 $page->assign('user', $user);
1489 $page->assign('suggest', $this->suggest($user));
1490 $page->assign('listes', $mmlist->get_lists($user->forlifeEmail()));
1491 $page->assign('alias', $user->emailGroupAliases($globals->asso('mail_domain')));
1492 $page->assign('positions', explode(',', $positions));
1493 $page->assign('nl_registered', $nl_registered);
1494 $page->assign('pending_xnet_account', XDB::fetchOneCell('SELECT 1
1495 FROM register_pending_xnet
1496 WHERE uid = {?}',
1497 $user->id()));
1498 }
1499
1500 function handler_rss(PlPage $page, PlUser $user)
1501 {
1502 global $globals;
1503 $page->assign('asso', $globals->asso());
1504
1505 $this->load('feed.inc.php');
1506 $feed = new XnetGrpEventFeed();
1507 return $feed->run($page, $user, false);
1508 }
1509
1510 private function upload_image(PlPage $page, PlUpload $upload)
1511 {
1512 if (@!$_FILES['image']['tmp_name'] && !Env::v('image_url')) {
1513 return true;
1514 }
1515 if (!$upload->upload($_FILES['image']) && !$upload->download(Env::v('image_url'))) {
1516 $page->trigError('Impossible de télécharger l\'image');
1517 return false;
1518 } elseif (!$upload->isType('image')) {
1519 $page->trigError('Le fichier n\'est pas une image valide au format JPEG, GIF ou PNG.');
1520 $upload->rm();
1521 return false;
1522 } elseif (!$upload->resizeImage(80, 100, 100, 100, 32284)) {
1523 $page->trigError('Impossible de retraiter l\'image');
1524 return false;
1525 }
1526 return true;
1527 }
1528
1529 function handler_photo_announce($page, $eid = null) {
1530 if ($eid) {
1531 $res = XDB::query('SELECT *
1532 FROM group_announces_photo
1533 WHERE eid = {?}', $eid);
1534 if ($res->numRows()) {
1535 $photo = $res->fetchOneAssoc();
1536 pl_cached_dynamic_content_headers("image/" . $photo['attachmime']);
1537 echo $photo['attach'];
1538 exit;
1539 }
1540 } else {
1541 $upload = new PlUpload(S::user()->login(), 'xnetannounce');
1542 if ($upload->exists() && $upload->isType('image')) {
1543 pl_cached_dynamic_content_headers($upload->contentType());
1544 echo $upload->getContents();
1545 exit;
1546 }
1547 }
1548 global $globals;
1549 pl_cached_dynamic_content_headers("image/png");
1550 echo file_get_contents($globals->spoolroot . '/htdocs/images/logo.png');
1551 exit;
1552 }
1553
1554 function handler_edit_announce($page, $aid = null)
1555 {
1556 global $globals, $platal;
1557 $page->changeTpl('xnetgrp/announce-edit.tpl');
1558 $page->assign('new', is_null($aid));
1559 $art = array();
1560
1561 if (Post::v('valid') == 'Visualiser' || Post::v('valid') == 'Enregistrer'
1562 || Post::v('valid') == 'Supprimer l\'image' || Post::v('valid') == 'Pas d\'image') {
1563 S::assert_xsrf_token();
1564
1565 if (!is_null($aid)) {
1566 $art['id'] = $aid;
1567 }
1568 $art['titre'] = Post::v('titre');
1569 $art['texte'] = Post::v('texte');
1570 $art['contacts'] = Post::v('contacts');
1571 $art['promo_min'] = Post::i('promo_min');
1572 $art['promo_max'] = Post::i('promo_max');
1573 $art['nom'] = S::v('nom');
1574 $art['prenom'] = S::v('prenom');
1575 $art['promo'] = S::v('promo');
1576 $art['hruid'] = S::user()->login();
1577 $art['uid'] = S::user()->id();
1578 $art['expiration'] = Post::v('expiration');
1579 $art['public'] = Post::has('public');
1580 $art['xorg'] = Post::has('xorg');
1581 $art['nl'] = Post::has('nl');
1582 $art['event'] = Post::v('event');
1583 $upload = new PlUpload(S::user()->login(), 'xnetannounce');
1584 $this->upload_image($page, $upload);
1585
1586 $art['contact_html'] = $art['contacts'];
1587 if ($art['event']) {
1588 $art['contact_html'] .= "\n{$globals->baseurl}/{$platal->ns}events/sub/{$art['event']}";
1589 }
1590
1591 if (!$art['public'] &&
1592 (($art['promo_min'] > $art['promo_max'] && $art['promo_max'] != 0) ||
1593 ($art['promo_min'] != 0 && ($art['promo_min'] <= 1900 || $art['promo_min'] >= 2020)) ||
1594 ($art['promo_max'] != 0 && ($art['promo_max'] <= 1900 || $art['promo_max'] >= 2020))))
1595 {
1596 $page->trigError("L'intervalle de promotions est invalide.");
1597 Post::kill('valid');
1598 }
1599
1600 if (!trim($art['titre']) || !trim($art['texte'])) {
1601 $page->trigError("L'article doit avoir un titre et un contenu.");
1602 Post::kill('valid');
1603 }
1604
1605 if (Post::v('valid') == 'Supprimer l\'image') {
1606 $upload->rm();
1607 Post::kill('valid');
1608 }
1609 $art['photo'] = $upload->exists() || Post::i('photo');
1610 if (Post::v('valid') == 'Pas d\'image' && !is_null($aid)) {
1611 XDB::query('DELETE FROM group_announces_photo
1612 WHERE eid = {?}', $aid);
1613 $upload->rm();
1614 Post::kill('valid');
1615 $art['photo'] = false;
1616 }
1617 }
1618
1619 if (Post::v('valid') == 'Enregistrer') {
1620 $promo_min = ($art['public'] ? 0 : $art['promo_min']);
1621 $promo_max = ($art['public'] ? 0 : $art['promo_max']);
1622 $flags = new PlFlagSet();
1623 if ($art['public']) {
1624 $flags->addFlag('public');
1625 }
1626 if ($art['photo']) {
1627 $flags->addFlag('photo');
1628 }
1629 if (is_null($aid)) {
1630 $fulltext = $art['texte'];
1631 if (!empty($art['contact_html'])) {
1632 $fulltext .= "\n\n'''Contacts :'''\\\\\n" . $art['contact_html'];
1633 }
1634 $post = null;
1635 if ($globals->asso('forum')) {
1636 require_once 'banana/forum.inc.php';
1637 $banana = new ForumsBanana(S::user());
1638 $post = $banana->post($globals->asso('forum'), null,
1639 $art['titre'], MiniWiki::wikiToText($fulltext, false, 0, 80));
1640 }
1641 XDB::query('INSERT INTO group_announces (uid, asso_id, create_date, titre, texte, contacts,
1642 expiration, promo_min, promo_max, flags, post_id)
1643 VALUES ({?}, {?}, NOW(), {?}, {?}, {?}, {?}, {?}, {?}, {?}, {?})',
1644 S::i('uid'), $globals->asso('id'), $art['titre'], $art['texte'], $art['contact_html'],
1645 $art['expiration'], $promo_min, $promo_max, $flags, $post);
1646 $aid = XDB::insertId();
1647 if ($art['photo']) {
1648 list($imgx, $imgy, $imgtype) = $upload->imageInfo();
1649 XDB::execute('INSERT INTO group_announces_photo
1650 SET eid = {?}, attachmime = {?}, x = {?}, y = {?}, attach = {?}',
1651 $aid, $imgtype, $imgx, $imgy, $upload->getContents());
1652 }
1653 if ($art['xorg']) {
1654 $article = new EvtReq("[{$globals->asso('nom')}] " . $art['titre'], $fulltext,
1655 $art['promo_min'], $art['promo_max'], $art['expiration'], "", S::user(),
1656 $upload);
1657 $article->submit();
1658 $page->trigWarning("L'affichage sur la page d'accueil de Polytechnique.org est en attente de validation.");
1659 } else if ($upload && $upload->exists()) {
1660 $upload->rm();
1661 }
1662 if ($art['nl']) {
1663 $article = new NLReq(S::user(), $globals->asso('nom') . " : " .$art['titre'],
1664 $art['texte'], $art['contact_html']);
1665 $article->submit();
1666 $page->trigWarning("La parution dans la Lettre Mensuelle est en attente de validation.");
1667 }
1668 } else {
1669 XDB::query('UPDATE group_announces
1670 SET titre = {?}, texte = {?}, contacts = {?}, expiration = {?},
1671 promo_min = {?}, promo_max = {?}, flags = {?}
1672 WHERE id = {?} AND asso_id = {?}',
1673 $art['titre'], $art['texte'], $art['contacts'], $art['expiration'],
1674 $promo_min, $promo_max, $flags,
1675 $art['id'], $globals->asso('id'));
1676 if ($art['photo'] && $upload->exists()) {
1677 list($imgx, $imgy, $imgtype) = $upload->imageInfo();
1678 XDB::execute('INSERT INTO group_announces_photo (eid, attachmime, attach, x, y)
1679 VALUES ({?}, {?}, {?}, {?}, {?})
1680 ON DUPLICATE KEY UPDATE attachmime = VALUES(attachmime), attach = VALUES(attach), x = VALUES(x), y = VALUES(y)',
1681 $aid, $imgtype, $upload->getContents(), $imgx, $imgy);
1682 $upload->rm();
1683 }
1684 }
1685 }
1686 if (Post::v('valid') == 'Enregistrer' || Post::v('valid') == 'Annuler') {
1687 pl_redirect("");
1688 }
1689
1690 if (empty($art) && !is_null($aid)) {
1691 $res = XDB::query("SELECT *, FIND_IN_SET('public', flags) AS public,
1692 FIND_IN_SET('photo', flags) AS photo
1693 FROM group_announces
1694 WHERE asso_id = {?} AND id = {?}",
1695 $globals->asso('id'), $aid);
1696 if ($res->numRows()) {
1697 $art = $res->fetchOneAssoc();
1698 $art['contact_html'] = $art['contacts'];
1699 } else {
1700 $page->kill("Aucun article correspond à l'identifiant indiqué.");
1701 }
1702 }
1703
1704 if (is_null($aid)) {
1705 $events = XDB::iterator("SELECT *
1706 FROM group_events
1707 WHERE asso_id = {?} AND archive = 0",
1708 $globals->asso('id'));
1709 if ($events->total()) {
1710 $page->assign('events', $events);
1711 }
1712 }
1713
1714 $art['contact_html'] = @MiniWiki::WikiToHTML($art['contact_html']);
1715 $page->assign('art', $art);
1716 $page->assign_by_ref('upload', $upload);
1717 }
1718
1719 function handler_admin_announce($page)
1720 {
1721 global $globals;
1722 $page->changeTpl('xnetgrp/announce-admin.tpl');
1723
1724 if (Env::has('del')) {
1725 S::assert_xsrf_token();
1726 XDB::execute('DELETE FROM group_announces
1727 WHERE id = {?} AND asso_id = {?}',
1728 Env::i('del'), $globals->asso('id'));
1729 }
1730 $res = XDB::iterator('SELECT id, titre, expiration, expiration < CURRENT_DATE() AS perime
1731 FROM group_announces
1732 WHERE asso_id = {?}
1733 ORDER BY expiration DESC',
1734 $globals->asso('id'));
1735 $page->assign('articles', $res);
1736 }
1737 }
1738
1739 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
1740 ?>