Properly formats values before requiring list creation.
[platal.git] / include / notifs.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 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
009b8ab7 22abstract class WatchOperation
612a2d8a 23{
e947c421 24 private static $false = null;
ee682285 25
009b8ab7
FB
26 public function getTitle($count = 0)
27 {
28 if ($count == 1) {
29 return str_replace(array('$x', '$s'), '', $this->title);
30 } else {
31 return str_replace(array('$x', '$s'), array('x', 's'), $this->title);
32 }
33 }
34
e947c421 35 public function getCondition(Watch $watch)
009b8ab7 36 {
e947c421
FB
37 if (!$watch->user()->watchType($this->flag)) {
38 if (!self::$false) {
39 self::$false = new PFC_False();
40 }
41 return self::$false;
009b8ab7 42 } else {
e947c421 43 return $this->buildCondition($watch);
009b8ab7
FB
44 }
45 }
46
e947c421 47 abstract protected function buildCondition(Watch $watch);
009b8ab7 48 abstract public function getOrder();
26ba053e 49 abstract public function getDate(PlUser $user);
009b8ab7 50
26ba053e 51 public function publicationDate(PlUser $user)
c350577b
FB
52 {
53 return $this->getDate($user);
54 }
55
26ba053e 56 public function seen(PlUser $user, $last)
009b8ab7
FB
57 {
58 return strtotime($this->getDate($user)) > $last;
59 }
c350577b 60
26ba053e 61 public function getData(PlUser $user)
c350577b
FB
62 {
63 return null;
64 }
009b8ab7
FB
65}
66
67class WatchProfileUpdate extends WatchOperation
68{
e947c421
FB
69 private static $order = null;
70
009b8ab7 71 public $flag = 'profile';
e6957daf 72 public $title = 'Mise$s à jour de fiche';
92d3e726 73 private $date = null;
a3a049fc 74
26ba053e 75 public static function register(Profile $profile, $field)
612a2d8a 76 {
00ba8a74
SJ
77 XDB::execute('INSERT INTO watch_profile (pid, ts, field)
78 VALUES ({?}, NOW(), {?})
79 ON DUPLICATE KEY UPDATE ts = NOW()',
4e7bf1e0 80 $profile->id(), $field);
0337d704 81 }
82
e947c421 83 protected function buildCondition(Watch $watch)
612a2d8a 84 {
92d3e726 85 $this->date = $watch->date();
e947c421
FB
86 return new PFC_And(new UFC_ProfileUpdated('>', $watch->date()),
87 $watch->contactCondition());
009b8ab7
FB
88 }
89
90 public function getOrder()
91 {
e947c421
FB
92 if (!self::$order) {
93 self::$order = new UFO_ProfileUpdate();
94 }
95 return self::$order;
009b8ab7
FB
96 }
97
26ba053e 98 public function getDate(PlUser $user)
009b8ab7
FB
99 {
100 return $user->profile()->last_change;
0337d704 101 }
ee682285 102
26ba053e 103 public function getData(PlUser $user)
ee682285 104 {
bf0e2a48 105 $data = XDB::fetchColumn("SELECT field
ee682285 106 FROM watch_profile
bf0e2a48
SJ
107 WHERE pid = {?} AND ts > FROM_UNIXTIME({?}) AND field != ''
108 ORDER BY ts",
109 $user->profile()->id(), $this->date);
ee682285
FB
110 if (count($data) == 0) {
111 return null;
112 } else {
113 $text = array();
114 foreach ($data as $f) {
7a9680aa 115 $text[] = Profile::$descriptions[$f];
ee682285
FB
116 }
117 return $text;
118 }
119 }
0337d704 120}
121
009b8ab7 122class WatchRegistration extends WatchOperation
612a2d8a 123{
e947c421
FB
124 private static $order = null;
125
009b8ab7
FB
126 public $flag = 'registration';
127 public $title = 'Inscription$s';
128
e947c421 129 protected function buildCondition(Watch $watch)
009b8ab7 130 {
e947c421
FB
131 return new PFC_And(new UFC_Registered(false, '>', $watch->date()),
132 new PFC_Or($watch->contactCondition(),
fe286e5f
SJ
133 $watch->promoCondition(),
134 $watch->groupCondition()));
009b8ab7
FB
135 }
136
137 public function getOrder()
138 {
e947c421
FB
139 if (!self::$order) {
140 self::$order = new UFO_Registration();
141 }
142 return self::$order;
009b8ab7 143 }
0337d704 144
26ba053e 145 public function getDate(PlUser $user)
612a2d8a 146 {
009b8ab7 147 return $user->registration_date;
0337d704 148 }
149}
150
009b8ab7 151class WatchDeath extends WatchOperation
612a2d8a 152{
e947c421
FB
153 private static $order = null;
154
009b8ab7
FB
155 public $flag = 'death';
156 public $title = 'Décès';
157
e947c421 158 protected function buildCondition(Watch $watch)
009b8ab7 159 {
e947c421
FB
160 return new PFC_And(new UFC_Dead('>', $watch->date(), true),
161 new PFC_Or($watch->contactCondition(),
fe286e5f
SJ
162 $watch->promoCondition(),
163 $watch->groupCondition()));
009b8ab7 164 }
0337d704 165
009b8ab7 166 public function getOrder()
612a2d8a 167 {
e947c421
FB
168 if (!self::$order) {
169 self::$order = new UFO_Death();
170 }
171 return self::$order;
009b8ab7
FB
172 }
173
26ba053e 174 public function getDate(PlUser $user)
009b8ab7
FB
175 {
176 return $user->profile()->deathdate;
177 }
178
26ba053e 179 public function publicationDate(PlUser $user)
c350577b
FB
180 {
181 return $user->profile()->deathdate_rec;
182 }
183
26ba053e 184 public function seen(PlUser $user, $last)
009b8ab7
FB
185 {
186 return strtotime($user->profile()->deathdate_rec) > $last;
0337d704 187 }
188}
189
009b8ab7 190class WatchBirthday extends WatchOperation
612a2d8a 191{
009b8ab7 192 const WATCH_LIMIT = 604800; // 1 week
0337d704 193
e947c421
FB
194 private static $order = null;
195
009b8ab7
FB
196 public $flag = 'birthday';
197 public $title = 'Anniversaire$s';
198
e947c421 199 protected function buildCondition(Watch $watch)
612a2d8a 200 {
e7ffcfd4
FB
201 $select_date = new PFC_OR(new UFC_Birthday('=', time()),
202 new PFC_And(new UFC_Birthday('<=', time() + self::WATCH_LIMIT),
e947c421
FB
203 new UFC_Birthday('>', $watch->date() + self::WATCH_LIMIT)));
204 $profile = $watch->profile();
205 $cond = $watch->contactCondition();
e7ffcfd4 206 if ($profile) {
e947c421
FB
207 $cond = new PFC_Or($cond,
208 new PFC_And($watch->promoCondition(),
e7ffcfd4 209 new UFC_Promo('>=', $profile->mainGrade(), $profile->yearpromo() - 1),
fe286e5f
SJ
210 new UFC_Promo('<=', $profile->mainGrade(), $profile->yearpromo() + 1)),
211 $watch->groupCondition());
e7ffcfd4
FB
212 }
213 return new PFC_And($select_date, $cond);
009b8ab7
FB
214 }
215
216 public function getOrder()
217 {
e947c421
FB
218 if (!self::$order) {
219 self::$order = new UFO_Birthday();
220 }
221 return self::$order;
009b8ab7
FB
222 }
223
26ba053e 224 public function getDate(PlUser $user)
009b8ab7
FB
225 {
226 return $user->profile()->next_birthday;
227 }
228
26ba053e 229 public function publicationDate(PlUser $user)
c350577b
FB
230 {
231 return date('Y-m-d', strtotime($user->profile()->next_birthday) - self::WATCH_LIMIT);
232 }
233
26ba053e 234 public function seen(PlUser $user, $last)
009b8ab7
FB
235 {
236 $birthday = strtotime($user->profile()->next_birthday);
237 return $birthday > $last + self::WATCH_LIMIT
238 || date('Ymd', $birthday) == date('Ymd');
0337d704 239 }
240}
a3a049fc 241
7e735012
FB
242class Watch
243{
244 private static $classes = array('WatchRegistration',
245 'WatchProfileUpdate',
246 'WatchDeath',
247 'WatchBirthday');
e947c421 248 private static $events = array();
7e735012 249
e947c421
FB
250 private $user = null;
251 private $date = null;
252 private $contactCond = null;
253 private $promoCond = null;
fe286e5f 254 private $groupCond = null;
e947c421
FB
255
256 private $filters = array();
257
258 public function __construct(PlUser $user, $date = null)
e7ffcfd4 259 {
e947c421
FB
260 $this->user = $user;
261 $this->date = self::getDate($user, $date);
262 }
263
264 public function user()
265 {
266 return $this->user;
267 }
268
269 public function profile()
270 {
271 return $this->user->profile();
272 }
273
274 public function date()
275 {
276 return $this->date;
277 }
278
279 public function contactCondition()
280 {
281 if (!$this->contactCond) {
282 $this->contactCond = new UFC_WatchContact($this->user);
e7ffcfd4 283 }
e947c421
FB
284 return $this->contactCond;
285 }
286
287 public function promoCondition()
288 {
289 if (!$this->promoCond) {
290 $this->promoCond = new UFC_WatchPromo($this->user);
291 }
292 return $this->promoCond;
e7ffcfd4
FB
293 }
294
fe286e5f
SJ
295 public function groupCondition()
296 {
297 if (!$this->groupCond) {
298 $this->groupCond = new UFC_WatchGroup($this->user);
299 }
300 return $this->groupCond;
301 }
302
e947c421 303 private function fetchEventWatch($class)
7e735012 304 {
e947c421
FB
305 if (!isset(self::$events[$class])) {
306 self::$events[$class] = new $class();
307 }
308 return self::$events[$class];
7e735012
FB
309 }
310
e947c421
FB
311 private function fetchFilter($class)
312 {
313
314 if (!isset($this->filters[$class])) {
315 $event = $this->fetchEventWatch($class);
316 $this->filters[$class] = new UserFilter($event->getCondition($this),
1a074f45 317 array($event->getOrder(), new UFO_Name()));
e947c421
FB
318 }
319 return $this->filters[$class];
320 }
321
322 public function count()
7e735012
FB
323 {
324 $count = 0;
325 foreach (self::$classes as $class) {
e947c421
FB
326 $uf = $this->fetchFilter($class);
327 $count += $uf->getTotalCount();
7e735012
FB
328 }
329 return $count;
330 }
009b8ab7
FB
331
332
e947c421 333 private function fetchEvents($class)
009b8ab7 334 {
e947c421
FB
335 $obj = $this->fetchEventWatch($class);
336 $uf = $this->fetchFilter($class);
009b8ab7
FB
337 $users = $uf->getUsers();
338 if (count($users) == 0) {
339 return null;
340 } else {
e73ae835
FB
341 return array('type' => $obj->flag,
342 'operation' => $obj,
009b8ab7
FB
343 'title' => $obj->getTitle(count($users)),
344 'users' => $users);
345 }
346 }
347
e947c421 348 public function events()
009b8ab7 349 {
009b8ab7
FB
350 $events = array();
351 foreach (self::$classes as $class) {
e947c421 352 $e = $this->fetchEvents($class);
009b8ab7
FB
353 if (!is_null($e)) {
354 $events[] = $e;
355 }
356 }
357 return $events;
358 }
e947c421
FB
359
360
26ba053e 361 private static function getDate(PlUser $user, $date)
e947c421
FB
362 {
363 if (is_null($date)) {
364 $date = $user->watchLast();
365 $limit = time() - (7 * 86400);
366 if ($date < $limit) {
367 $date = $limit;
368 }
369 }
370 return $date;
371 }
372
26ba053e 373 public static function getCount(PlUser $user, $date = null)
e947c421
FB
374 {
375 $watch = new Watch($user, $date);
376 return $watch->count();
377 }
378
26ba053e 379 public static function getEvents(PlUser $user, $date = null)
e947c421
FB
380 {
381 $watch = new Watch($user, $date);
382 return $watch->events();
383 }
7e735012
FB
384}
385
386// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 387?>