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