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