Adds new user, updates Changelog.
[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(),
133 $watch->promoCondition()));
009b8ab7
FB
134 }
135
136 public function getOrder()
137 {
e947c421
FB
138 if (!self::$order) {
139 self::$order = new UFO_Registration();
140 }
141 return self::$order;
009b8ab7 142 }
0337d704 143
26ba053e 144 public function getDate(PlUser $user)
612a2d8a 145 {
009b8ab7 146 return $user->registration_date;
0337d704 147 }
148}
149
009b8ab7 150class WatchDeath extends WatchOperation
612a2d8a 151{
e947c421
FB
152 private static $order = null;
153
009b8ab7
FB
154 public $flag = 'death';
155 public $title = 'Décès';
156
e947c421 157 protected function buildCondition(Watch $watch)
009b8ab7 158 {
e947c421
FB
159 return new PFC_And(new UFC_Dead('>', $watch->date(), true),
160 new PFC_Or($watch->contactCondition(),
161 $watch->promoCondition()));
009b8ab7 162 }
0337d704 163
009b8ab7 164 public function getOrder()
612a2d8a 165 {
e947c421
FB
166 if (!self::$order) {
167 self::$order = new UFO_Death();
168 }
169 return self::$order;
009b8ab7
FB
170 }
171
26ba053e 172 public function getDate(PlUser $user)
009b8ab7
FB
173 {
174 return $user->profile()->deathdate;
175 }
176
26ba053e 177 public function publicationDate(PlUser $user)
c350577b
FB
178 {
179 return $user->profile()->deathdate_rec;
180 }
181
26ba053e 182 public function seen(PlUser $user, $last)
009b8ab7
FB
183 {
184 return strtotime($user->profile()->deathdate_rec) > $last;
0337d704 185 }
186}
187
009b8ab7 188class WatchBirthday extends WatchOperation
612a2d8a 189{
009b8ab7 190 const WATCH_LIMIT = 604800; // 1 week
0337d704 191
e947c421
FB
192 private static $order = null;
193
009b8ab7
FB
194 public $flag = 'birthday';
195 public $title = 'Anniversaire$s';
196
e947c421 197 protected function buildCondition(Watch $watch)
612a2d8a 198 {
e7ffcfd4
FB
199 $select_date = new PFC_OR(new UFC_Birthday('=', time()),
200 new PFC_And(new UFC_Birthday('<=', time() + self::WATCH_LIMIT),
e947c421
FB
201 new UFC_Birthday('>', $watch->date() + self::WATCH_LIMIT)));
202 $profile = $watch->profile();
203 $cond = $watch->contactCondition();
e7ffcfd4 204 if ($profile) {
e947c421
FB
205 $cond = new PFC_Or($cond,
206 new PFC_And($watch->promoCondition(),
e7ffcfd4
FB
207 new UFC_Promo('>=', $profile->mainGrade(), $profile->yearpromo() - 1),
208 new UFC_Promo('<=', $profile->mainGrade(), $profile->yearpromo() + 1)));
209 }
210 return new PFC_And($select_date, $cond);
009b8ab7
FB
211 }
212
213 public function getOrder()
214 {
e947c421
FB
215 if (!self::$order) {
216 self::$order = new UFO_Birthday();
217 }
218 return self::$order;
009b8ab7
FB
219 }
220
26ba053e 221 public function getDate(PlUser $user)
009b8ab7
FB
222 {
223 return $user->profile()->next_birthday;
224 }
225
26ba053e 226 public function publicationDate(PlUser $user)
c350577b
FB
227 {
228 return date('Y-m-d', strtotime($user->profile()->next_birthday) - self::WATCH_LIMIT);
229 }
230
26ba053e 231 public function seen(PlUser $user, $last)
009b8ab7
FB
232 {
233 $birthday = strtotime($user->profile()->next_birthday);
234 return $birthday > $last + self::WATCH_LIMIT
235 || date('Ymd', $birthday) == date('Ymd');
0337d704 236 }
237}
a3a049fc 238
7e735012
FB
239class Watch
240{
241 private static $classes = array('WatchRegistration',
242 'WatchProfileUpdate',
243 'WatchDeath',
244 'WatchBirthday');
e947c421 245 private static $events = array();
7e735012 246
e947c421
FB
247 private $user = null;
248 private $date = null;
249 private $contactCond = null;
250 private $promoCond = null;
251
252 private $filters = array();
253
254 public function __construct(PlUser $user, $date = null)
e7ffcfd4 255 {
e947c421
FB
256 $this->user = $user;
257 $this->date = self::getDate($user, $date);
258 }
259
260 public function user()
261 {
262 return $this->user;
263 }
264
265 public function profile()
266 {
267 return $this->user->profile();
268 }
269
270 public function date()
271 {
272 return $this->date;
273 }
274
275 public function contactCondition()
276 {
277 if (!$this->contactCond) {
278 $this->contactCond = new UFC_WatchContact($this->user);
e7ffcfd4 279 }
e947c421
FB
280 return $this->contactCond;
281 }
282
283 public function promoCondition()
284 {
285 if (!$this->promoCond) {
286 $this->promoCond = new UFC_WatchPromo($this->user);
287 }
288 return $this->promoCond;
e7ffcfd4
FB
289 }
290
e947c421 291 private function fetchEventWatch($class)
7e735012 292 {
e947c421
FB
293 if (!isset(self::$events[$class])) {
294 self::$events[$class] = new $class();
295 }
296 return self::$events[$class];
7e735012
FB
297 }
298
e947c421
FB
299 private function fetchFilter($class)
300 {
301
302 if (!isset($this->filters[$class])) {
303 $event = $this->fetchEventWatch($class);
304 $this->filters[$class] = new UserFilter($event->getCondition($this),
1a074f45 305 array($event->getOrder(), new UFO_Name()));
e947c421
FB
306 }
307 return $this->filters[$class];
308 }
309
310 public function count()
7e735012
FB
311 {
312 $count = 0;
313 foreach (self::$classes as $class) {
e947c421
FB
314 $uf = $this->fetchFilter($class);
315 $count += $uf->getTotalCount();
7e735012
FB
316 }
317 return $count;
318 }
009b8ab7
FB
319
320
e947c421 321 private function fetchEvents($class)
009b8ab7 322 {
e947c421
FB
323 $obj = $this->fetchEventWatch($class);
324 $uf = $this->fetchFilter($class);
009b8ab7
FB
325 $users = $uf->getUsers();
326 if (count($users) == 0) {
327 return null;
328 } else {
e73ae835
FB
329 return array('type' => $obj->flag,
330 'operation' => $obj,
009b8ab7
FB
331 'title' => $obj->getTitle(count($users)),
332 'users' => $users);
333 }
334 }
335
e947c421 336 public function events()
009b8ab7 337 {
009b8ab7
FB
338 $events = array();
339 foreach (self::$classes as $class) {
e947c421 340 $e = $this->fetchEvents($class);
009b8ab7
FB
341 if (!is_null($e)) {
342 $events[] = $e;
343 }
344 }
345 return $events;
346 }
e947c421
FB
347
348
26ba053e 349 private static function getDate(PlUser $user, $date)
e947c421
FB
350 {
351 if (is_null($date)) {
352 $date = $user->watchLast();
353 $limit = time() - (7 * 86400);
354 if ($date < $limit) {
355 $date = $limit;
356 }
357 }
358 return $date;
359 }
360
26ba053e 361 public static function getCount(PlUser $user, $date = null)
e947c421
FB
362 {
363 $watch = new Watch($user, $date);
364 return $watch->count();
365 }
366
26ba053e 367 public static function getEvents(PlUser $user, $date = null)
e947c421
FB
368 {
369 $watch = new Watch($user, $date);
370 return $watch->events();
371 }
7e735012
FB
372}
373
374// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 375?>