Merge remote branch 'origin/platal-1.0.0'
[platal.git] / modules / carnet.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 Polytechnique.org *
0337d704 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
c9f82d49 22class CarnetModule extends PLModule
23{
24 function handlers()
25 {
26 return array(
5e193297 27 'carnet' => $this->make_hook('index', AUTH_COOKIE),
28 'carnet/panel' => $this->make_hook('panel', AUTH_COOKIE),
29 'carnet/notifs' => $this->make_hook('notifs', AUTH_COOKIE),
fc12cbd1 30
5e193297 31 'carnet/contacts' => $this->make_hook('contacts', AUTH_COOKIE),
9db0a440
VZ
32 'carnet/contacts/pdf' => $this->make_hook('pdf', AUTH_COOKIE),
33 'carnet/contacts/vcard' => $this->make_hook('vcard', AUTH_COOKIE),
8fc4efa3 34 'carnet/contacts/ical' => $this->make_hook('ical', AUTH_PUBLIC, 'user', NO_HTTPS),
b3ad574d
PC
35 'carnet/contacts/csv' => $this->make_hook('csv', AUTH_PUBLIC, 'user', NO_HTTPS),
36 'carnet/contacts/csv/birthday' => $this->make_hook('csv_birthday', AUTH_PUBLIC, 'user', NO_HTTPS),
b48a0758 37
8fc4efa3 38 'carnet/rss' => $this->make_hook('rss', AUTH_PUBLIC, 'user', NO_HTTPS),
c9f82d49 39 );
40 }
0337d704 41
fc12cbd1 42 function _add_rss_link(&$page)
43 {
84fc72ff 44 if (!S::hasAuthToken()) {
fc12cbd1 45 return;
fd8f77de 46 }
162370e7 47 $page->setRssLink('Polytechnique.org :: Carnet',
84fc72ff 48 '/carnet/rss/'.S::v('hruid').'/'.S::v('token').'/rss.xml');
fc12cbd1 49 }
50
b48a0758 51 function handler_index(&$page)
52 {
53 $page->changeTpl('carnet/index.tpl');
46f272fe 54 $page->setTitle('Mon carnet');
b48a0758 55 $this->_add_rss_link($page);
b48a0758 56 }
57
fc12cbd1 58 function handler_panel(&$page)
59 {
60 $page->changeTpl('carnet/panel.tpl');
61
62 if (Get::has('read')) {
009b8ab7
FB
63 XDB::execute('UPDATE watch
64 SET last = FROM_UNIXTIME({?})
65 WHERE uid = {?}',
66 Get::i('read'), S::i('uid'));
069ddda8 67 S::user()->invalidWatchCache();
ebfdf077 68 Platal::session()->updateNbNotifs();
8b00e0e0 69 pl_redirect('carnet/panel');
fc12cbd1 70 }
71
72 require_once 'notifs.inc.php';
009b8ab7 73 $page->assign('now', time());
fc12cbd1 74
009b8ab7
FB
75 $user = S::user();
76 $notifs = Watch::getEvents($user, time() - (7 * 86400));
fc12cbd1 77 $page->assign('notifs', $notifs);
78 $page->assign('today', date('Y-m-d'));
79 $this->_add_rss_link($page);
fc12cbd1 80 }
81
4e7bf1e0 82 private function getSinglePromotion(PlPage &$page, $promo)
b48a0758 83 {
4aae4d2c 84 if (!(is_int($promo) || ctype_digit($promo)) || $promo < 1920 || $promo > date('Y')) {
e46cf8c4 85 $page->trigError('Promotion invalide&nbsp;: ' . $promo . '.');
4e7bf1e0
FB
86 return null;
87 }
88 return (int)$promo;
89 }
90
91 private function getPromo(PlPage &$page, $promo)
92 {
93 if (strpos($promo, '-') === false) {
94 $promo = $this->getSinglePromotion($page, $promo);
95 if (!$promo) {
96 return null;
b48a0758 97 } else {
4e7bf1e0 98 return array($promo);
b48a0758 99 }
b48a0758 100 }
4e7bf1e0
FB
101
102 list($promo1, $promo2) = explode('-', $promo);
103 $promo1 = $this->getSinglePromotion($page, $promo1);
104 if (!$promo1) {
105 return null;
106 }
107 $promo2 = $this->getSinglePromotion($page, $promo2);
108 if (!$promo2) {
109 return null;
110 }
111 if ($promo1 > $promo2) {
e46cf8c4 112 $page->trigError('Intervalle non valide :&nbsp;' . $promo . '.');
4e7bf1e0
FB
113 return null;
114 }
115 $array = array();
116 for ($i = $promo1 ; $i <= $promo2 ; ++$i) {
117 $array[] = $i;
118 }
119 return $array;
b48a0758 120 }
121
4e7bf1e0 122 private function addPromo(PlPage &$page, $promo)
b48a0758 123 {
4e7bf1e0
FB
124 $promos = $this->getPromo($page, $promo);
125 if (!$promos || count($promos) == 0) {
126 return;
127 }
128 $to_add = array();
129 foreach ($promos as $promo) {
130 $to_add[] = XDB::format('({?}, {?})', S::i('uid'), $promo);
131 }
132 XDB::execute('INSERT IGNORE INTO watch_promo (uid, promo)
133 VALUES ' . implode(', ', $to_add));
069ddda8
FB
134 S::user()->invalidWatchCache();
135 Platal::session()->updateNbNotifs();
4e7bf1e0 136 }
b48a0758 137
4e7bf1e0
FB
138 private function delPromo(PlPage &$page, $promo)
139 {
140 $promos = $this->getPromo($page, $promo);
141 if (!$promos || count($promos) == 0) {
142 return;
143 }
144 $to_delete = array();
145 foreach ($promos as $promo) {
146 $to_delete[] = XDB::format('{?}', $promo);
147 }
148 XDB::execute('DELETE FROM watch_promo
149 WHERE ' . XDB::format('uid = {?}', S::i('uid')) . '
150 AND promo IN (' . implode(', ', $to_delete) . ')');
069ddda8
FB
151 S::user()->invalidWatchCache();
152 Platal::session()->updateNbNotifs();
4e7bf1e0
FB
153 }
154
155 public function addNonRegistered(PlPage &$page, PlUser &$user)
156 {
157 XDB::execute('INSERT IGNORE INTO watch_nonins (uid, ni_id)
158 VALUES ({?}, {?})', S::i('uid'), $user->id());
069ddda8
FB
159 S::user()->invalidWatchCache();
160 Platal::session()->updateNbNotifs();
4e7bf1e0 161 }
b48a0758 162
4e7bf1e0
FB
163 public function delNonRegistered(PlPage &$page, PlUser &$user)
164 {
165 XDB::execute('DELETE FROM watch_nonins
166 WHERE uid = {?} AND ni_id = {?}',
167 S::i('uid'), $user->id());
069ddda8
FB
168 S::user()->invalidWatchCache();
169 Platal::session()->updateNbNotifs();
4e7bf1e0 170 }
b48a0758 171
4e7bf1e0
FB
172 public function handler_notifs(&$page, $action = null, $arg = null)
173 {
174 $page->changeTpl('carnet/notifs.tpl');
b48a0758 175
40d428d8
VZ
176 if ($action) {
177 S::assert_xsrf_token();
4e7bf1e0
FB
178 switch ($action) {
179 case 'add_promo':
180 $this->addPromo($page, $arg);
181 break;
b48a0758 182
4e7bf1e0
FB
183 case 'del_promo':
184 $this->delPromo($page, $arg);
185 break;
b48a0758 186
4e7bf1e0
FB
187 case 'del_nonins':
188 $user = User::get($arg);
189 if ($user) {
190 $this->delNonRegistered($page, $user);
191 }
192 break;
193
194 case 'add_nonins':
195 $user = User::get($arg);
196 if ($user) {
197 $this->addNonRegistered($page, $user);
198 }
199 break;
200 }
b48a0758 201 }
202
40d428d8
VZ
203 if (Env::has('subs')) {
204 S::assert_xsrf_token();
4e7bf1e0
FB
205 $flags = new PlFlagSet();
206 foreach (Env::v('sub') as $key=>$value) {
207 $flags->addFlag($key, $value);
208 }
209 XDB::execute('UPDATE watch
210 SET actions = {?}
211 WHERE uid = {?}', $flags, S::i('uid'));
069ddda8
FB
212 S::user()->invalidWatchCache();
213 Platal::session()->updateNbNotifs();
e6bf9216
VZ
214 }
215
40d428d8
VZ
216 if (Env::has('flags_contacts')) {
217 S::assert_xsrf_token();
4e7bf1e0
FB
218 XDB::execute('UPDATE watch
219 SET ' . XDB::changeFlag('flags', 'contacts', Env::b('contacts')) . '
7e735012 220 WHERE uid = {?}', S::i('uid'));
069ddda8
FB
221 S::user()->invalidWatchCache();
222 Platal::session()->updateNbNotifs();
b48a0758 223 }
e6bf9216 224
40d428d8
VZ
225 if (Env::has('flags_mail')) {
226 S::assert_xsrf_token();
4e7bf1e0
FB
227 XDB::execute('UPDATE watch
228 SET ' . XDB::changeFlag('flags', 'mail', Env::b('mail')) . '
7e735012 229 WHERE uid = {?}', S::i('uid'));
069ddda8
FB
230 S::user()->invalidWatchCache();
231 Platal::session()->updateNbNotifs();
4e7bf1e0
FB
232 }
233
234 $user = S::user();
235 $nonins = new UserFilter(new UFC_WatchRegistration($user));
236
237 $promo = XDB::fetchColumn('SELECT promo
238 FROM watch_promo
239 WHERE uid = {?}
240 ORDER BY promo', S::i('uid'));
241 $page->assign('promo_count', count($promo));
242 $ranges = array();
243 $range_start = null;
244 $range_end = null;
245 foreach ($promo as $p) {
246 if (is_null($range_start)) {
247 $range_start = $range_end = $p;
248 } else if ($p != $range_end + 1) {
249 $ranges[] = array($range_start, $range_end);
250 $range_start = $range_end = $p;
251 } else {
252 $range_end = $p;
253 }
b48a0758 254 }
4e7bf1e0
FB
255 $ranges[] = array($range_start, $range_end);
256 $page->assign('promo_ranges', $ranges);
257 $page->assign('nonins', $nonins->getUsers());
b48a0758 258
4e7bf1e0
FB
259 list($flags, $actions) = XDB::fetchOneRow('SELECT flags, actions
260 FROM watch
261 WHERE uid = {?}', S::i('uid'));
262 $flags = new PlFlagSet($flags);
263 $actions = new PlFlagSet($actions);
264 $page->assign('flags', $flags);
265 $page->assign('actions', $actions);
b48a0758 266 }
267
a2aa8436 268 function handler_contacts(&$page, $action = null, $subaction = null, $ssaction = null)
b48a0758 269 {
46f272fe 270 $page->setTitle('Mes contacts');
59a61432 271 $this->_add_rss_link($page);
b48a0758 272
76cbe885 273 $uid = S::i('uid');
206cb50c 274 $user = S::user();
b48a0758 275
e6bf9216
VZ
276 // For XSRF protection, checks both the normal xsrf token, and the special RSS token.
277 // It allows direct linking to contact adding in the RSS feed.
84fc72ff 278 if (Env::v('action') && Env::v('token') !== S::v('token')) {
40d428d8
VZ
279 S::assert_xsrf_token();
280 }
281 switch (Env::v('action')) {
282 case 'retirer':
c1540692 283 if (($contact = User::get(Env::v('user')))) {
d6460651 284 if (XDB::execute("DELETE FROM contacts
c1540692
FB
285 WHERE uid = {?} AND contact = {?}",
286 $uid, $contact->id())) {
05d14860 287 Platal::session()->updateNbNotifs();
6bb2f79a 288 $page->trigSuccess("Contact retiré&nbsp;!");
b48a0758 289 }
290 }
291 break;
292
40d428d8 293 case 'ajouter':
c1540692 294 if (($contact = User::get(Env::v('user')))) {
d6460651 295 if (XDB::execute("REPLACE INTO contacts (uid, contact)
c1540692
FB
296 VALUES ({?}, {?})",
297 $uid, $contact->id())) {
05d14860 298 Platal::session()->updateNbNotifs();
6bb2f79a 299 $page->trigSuccess('Contact ajouté&nbsp;!');
b48a0758 300 } else {
6bb2f79a 301 $page->trigWarning('Contact déjà dans la liste&nbsp;!');
b48a0758 302 }
303 }
d6460651 304 break;
b48a0758 305 }
306
355a5f15 307 $search = false;
355a5f15
RB
308
309 require_once 'userset.inc.php';
310
a2aa8436 311 if ($action == 'search') {
312 $action = $subaction;
313 $subaction = $ssaction;
314 $search = true;
315 }
316 if ($search && trim(Env::v('quick'))) {
a2aa8436 317 $base = 'carnet/contacts/search';
355a5f15 318 $view = new SearchSet(true, false, new UFC_Contact($user));
a2aa8436 319 } else {
320 $base = 'carnet/contacts';
355a5f15
RB
321 $view = new ProfileSet(new UFC_Contact($user));
322 }
76cbe885 323
1fae7605 324 $view->addMod('minifiche', 'Mini-fiches', true);
8c4a0c30 325 $view->addMod('trombi', 'Trombinoscope', false, array('with_admin' => false, 'with_promo' => true));
1fe46b8f
SJ
326 // TODO: Reactivate when the new map is completed.
327 // $view->addMod('geoloc', 'Planisphère', false, array('with_annu' => 'carnet/contacts/search'));
76cbe885
FB
328 $view->apply('carnet/contacts', $page, $action, $subaction);
329 //if ($action != 'geoloc' || ($search && !$ssaction) || (!$search && !$subaction)) {
330 $page->changeTpl('carnet/mescontacts.tpl');
331 //}
b48a0758 332 }
333
334 function handler_pdf(&$page, $arg0 = null, $arg1 = null)
335 {
460d8f55 336 $this->load('contacts.pdf.inc.php');
714f5437 337 $user = S::user();
b48a0758 338
732e5855 339 Platal::session()->close();
b48a0758 340
641f2115 341 $order = array(new UFO_Name(Profile::LASTNAME), new UFO_Name(Profile::FIRSTNAME));
b48a0758 342 if ($arg0 == 'promo') {
714f5437 343 $order = array_unshift($order, new UFO_Promo());
b48a0758 344 } else {
714f5437 345 $order[] = new UFO_Promo();
b48a0758 346 }
714f5437 347 $filter = new UserFilter(new UFC_Contact($user), $order);
b48a0758 348
b48a0758 349 $pdf = new ContactsPDF();
350
641f2115
FB
351 $it = $filter->iterProfiles();
352 while ($p = $it->next()) {
714f5437 353 $pdf = ContactsPDF::addContact($pdf, $p, $arg0 == 'photos' || $arg1 == 'photos');
b48a0758 354 }
355 $pdf->Output();
356
357 exit;
358 }
359
c9f82d49 360 function handler_rss(&$page, $user = null, $hash = null)
361 {
460d8f55 362 $this->load('feed.inc.php');
4e9a7a6d
FB
363 $feed = new CarnetFeed();
364 return $feed->run($page, $user, $hash);
c9f82d49 365 }
fbfb06dc 366
ddaa62b8
FB
367 function buildBirthRef(Profile $profile)
368 {
369 $date = strtotime($profile->birthdate);
370 $tomorrow = $date + 86400;
371 return array(
372 'timestamp' => $date,
373 'date' => date('Ymd', $date),
374 'tomorrow' => date('Ymd', $tomorrow),
375 'hruid' => $profile->hrid(),
376 'summary' => 'Anniversaire de ' . $profile->fullName(true)
377 );
378 }
379
b3ad574d
PC
380 function handler_csv_birthday(&$page, $alias = null, $hash = null)
381 {
382 $user = Platal::session()->tokenAuth($alias, $hash);
383 if (is_null($user)) {
384 if (S::logged()) {
385 $user == S::user();
386 } else {
387 return PL_FORBIDDEN;
388 }
389 }
390
391 $page->changeTpl('carnet/calendar.outlook.tpl', NO_SKIN);
392 $filter = new UserFilter(new UFC_Contact($user));
393 $profiles = $filter->iterProfiles();
394 $page->assign('events', PlIteratorUtils::map($profiles, array($this, 'buildBirthRef')));
395 $years = array(date("Y"));
396 for ($i = 1; $i <= 10; ++$i) {
397 $years[] = $years[0] + $i;
398 }
399 $page->assign('years', $years);
400 $lang = 'fr';
401 if (preg_match('/([a-zA-Z]{2,8})($|[^a-zA-Z])/', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $matches)) {
402 $lang = strtolower($matches[1]);
403 }
404 $page->assign('lang', $lang);
405 if ($lang == 'fr') {
406 $encoding = 'iso8859-15';
407 } else {
408 $encoding = 'utf-8';
409 }
410 pl_content_headers("text/comma-separated-values;charset=".$encoding);
411 }
ddaa62b8 412
963c0b2e 413 function handler_ical(&$page, $alias = null, $hash = null)
fbfb06dc 414 {
f3e66b56
FB
415 $user = Platal::session()->tokenAuth($alias, $hash);
416 if (is_null($user)) {
417 if (S::logged()) {
418 $user == S::user();
419 } else {
420 return PL_FORBIDDEN;
963c0b2e 421 }
963c0b2e 422 }
5406bb88 423
99544d53 424 require_once 'ical.inc.php';
801fcad8 425 $page->changeTpl('carnet/calendar.tpl', NO_SKIN);
3585b0c8 426 $page->register_function('display_ical', 'display_ical');
fbfb06dc 427
19550958 428 $filter = new UserFilter(new UFC_Contact($user));
641f2115 429 $profiles = $filter->iterProfiles();
ddaa62b8 430 $page->assign('events', PlIteratorUtils::map($profiles, array($this, 'buildBirthRef')));
fbfb06dc 431
3cb500d5 432 pl_content_headers("text/calendar");
fbfb06dc 433 }
5e193297 434
917c4d11 435 function handler_vcard(&$page, $photos = null)
5e193297 436 {
f40e4ce5 437 $pf = new ProfileFilter(new UFC_Contact(S::user()));
5d42c993 438 $vcard = new VCard($photos == 'photos');
f40e4ce5 439 $vcard->addProfiles($pf->getProfiles());
5d42c993 440 $vcard->show();
5e193297 441 }
b3ad574d
PC
442
443 function handler_csv(&$page, $alias = null, $hash = null)
444 {
445 $user = Platal::session()->tokenAuth($alias, $hash);
446 if (is_null($user)) {
447 if (S::logged()) {
448 $user == S::user();
449 } else {
450 return PL_FORBIDDEN;
451 }
452 }
453
454 $page->changeTpl('carnet/mescontacts.outlook.tpl', NO_SKIN);
455 $pf = new ProfileFilter(new UFC_Contact($user));
456 require_once 'carnet/outlook.inc.php';
457 Outlook::output_profiles($pf->getProfiles(), 'fr');
458 }
4da0b8d7 459}
c9f82d49 460
a7de4ef7 461// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
c9f82d49 462?>