a07ca249a3ca9da135a3719960e6344e92a3df63
[platal.git] / include / notifs.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2009 Polytechnique.org *
4 * http://opensource.polytechnique.org/ *
5 * *
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 * *
11 * This program is distributed in the hope that it will be useful, *
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
14 * GNU General Public License for more details. *
15 * *
16 * You should have received a copy of the GNU General Public License *
17 * along with this program; if not, write to the Free Software *
18 * Foundation, Inc., *
19 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA *
20 ***************************************************************************/
21
22 class WatchProfileUpdate
23 {
24 const ID = 1;
25
26 public static function register(Profile &$profile, $field)
27 {
28 XDB::execute('REPLACE INTO watch_profile (uid, ts, field)
29 VALUES ({?}, NOW(), {?})',
30 $profile->id(), $field);
31 }
32
33 public function getCondition(PlUser &$user)
34 {
35 return new UFC_And(new UFC_ProfileUpdated('>', $user->watch_last),
36 new UFC_WatchContacts($user->id()));
37 }
38 }
39
40 class WatchRegistration
41 {
42 const ID = 2;
43
44 public function getCondition(PlUser &$user)
45 {
46 return new UFC_And(new UFC_Registered(false, '>', $user->watch_last),
47 new UFC_Or(new UFC_WatchContacts($user->id()),
48 new UFC_WatchPromo($user->id())),
49 new UFC_WatchRegistration($user->id()));
50 }
51 }
52
53 class WatchDeath
54 {
55 const ID = 3;
56
57 public function getCondition(PlUser &$user)
58 {
59 return new UFC_And(new UFC_Dead('>', $user->watch_last, true),
60 new UFC_Or(new UFC_WatchPromo($user->id()),
61 new UFC_WatchContacts($user->id())));
62 }
63 }
64
65 class WatchBirthday
66 {
67 const ID = 4;
68
69 public function getCondition(PlUser &$user)
70 {
71 return new UFC_And(new UFC_OR(new UFC_Birthday('=', time()),
72 new UFC_And(new UFC_Birthday('<=', time() + 864000),
73 new UFC_Birthday('>', $user->watch_last + 864000))),
74 new UFC_Or(new UFC_WatchPromo($user->id()),
75 new UFC_WatchContacts($user->id())));
76 }
77 }
78
79 class Watch
80 {
81 private static $classes = array('WatchRegistration',
82 'WatchProfileUpdate',
83 'WatchDeath',
84 'WatchBirthday');
85
86 private static function fetchCount(PlUser &$user, $class)
87 {
88 $obj = new $class();
89 $uf = new UserFilter($obj->getCondition($user));
90 return $uf->getTotalCount();
91 }
92
93 public static function getCount(PlUser &$user)
94 {
95 $count = 0;
96 foreach (self::$classes as $class) {
97 $count += self::fetchCount($user, $class);
98 }
99 return $count;
100 }
101 }
102
103 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
104 ?>