8efb10862ec920fc2ce64410b374cf2d63c632a1
[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 static 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 static function getCondition(PlUser &$user)
45 {
46 return new UFC_And(new UFC_Registered(false, '>=', $user->watch_last),
47 new UFC_WatchRegistration($user->id()));
48 }
49 }
50
51 class WatchDeath
52 {
53 const ID = 3;
54
55 public static function getCondition(PlUser &$user)
56 {
57 return new UFC_And(new UFC_Dead('>=', $user->watch_last, true),
58 new UFC_Or(new UFC_WatchPromo($user->id()),
59 new UFC_WatchContacts($user->id())));
60 }
61 }
62
63 class WatchBirthday
64 {
65 const ID = 4;
66
67 public static function getCondition(PlUser &$user)
68 {
69 return new UFC_And(new UFC_Birthday(),
70 new UFC_Or(new UFC_WatchPromo($user->id()),
71 new UFC_WatchContacts($user->id())));
72 }
73 }
74
75 ?>