Moving to GitHub.
[platal.git] / include / reminder.inc.php
CommitLineData
fb0ee2e8
SJ
1<?php
2/***************************************************************************
c441aabe 3 * Copyright (C) 2003-2014 Polytechnique.org *
fb0ee2e8
SJ
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// Base class for a reminder; it offers the factory for creating valid reminders
23// tailored for a given user, as well as base methods for reminder impls.
24// Sub-classes should define at least the abstract methods, and the static
26ba053e 25// IsCandidate method (prototype: (User $user)).
fb0ee2e8
SJ
26//
27// Usage:
28// // Instantiates and returns a valid Reminder object for the user.
29// $reminder = Reminder::GetCandidateReminder($user);
30//
31// // Returns the named Reminder object.
32// $reminder = Reminder::GetByName($user, 'ax_letter');
33abstract class Reminder
34{
35 // Details about the reminder.
36 public $name;
37 protected $type_id;
38 protected $weight;
39 protected $remind_delay_yes;
40 protected $remind_delay_no;
41 protected $remind_delay_dismiss;
42
43 // Details about the user.
44 protected $user;
45 protected $current_status;
46 protected $last_ask;
47
48 // Constructs the Reminder object from a mandatory User instance, a list of
49 // key-value pairs from the `reminder_type` and `reminder` tables.
26ba053e 50 function __construct(User $user, array $type)
fb0ee2e8
SJ
51 {
52 $this->user = &$user;
53
54 $this->type_id = $type['type_id'];
55 $this->name = $type['name'];
56 $this->weight = $type['weight'];
57 $this->remind_delay_yes = $type['remind_delay_yes'];
58 $this->remind_delay_no = $type['remind_delay_no'];
59 $this->remind_delay_dismiss = $type['remind_delay_dismiss'];
60
61 if (isset($type['status'])) {
62 $this->current_status = $type['status'];
63 }
64 if (isset($type['remind_last'])) {
65 $this->last_ask = $type['remind_last'];
66 }
67 }
68
69 // Updates (or creates) the reminder line for the pair (|user|, |reminder_id|)
70 // using the |status| as status, and the |next_ask| as the delay between now
71 // and the next ask (if any).
1bf36cd1 72 private static function UpdateStatus($uid, $type_id, $status, $next_ask)
fb0ee2e8 73 {
00ba8a74 74 XDB::execute('INSERT INTO reminder (uid, type_id, status, remind_last, remind_next)
4a8caa3e 75 VALUES ({?}, {?}, {?}, NOW(), FROM_UNIXTIME({?}))
a245a3e1 76 ON DUPLICATE KEY UPDATE status = VALUES(status), remind_last = VALUES(remind_last), remind_next = VALUES(remind_next)',
1bf36cd1 77 $uid, $type_id, $status,
fb0ee2e8
SJ
78 ($next_ask > 0 ? time() + $next_ask * 24 * 60 * 60 : null));
79 }
80
81 // Updates the status of the reminder for the current user.
82 protected function UpdateOnYes()
83 {
efc272e2
VZ
84 $this->UpdateStatus($this->user->id(), $this->type_id,
85 'yes', $this->remind_delay_yes);
fb0ee2e8
SJ
86 }
87 protected function UpdateOnNo()
88 {
efc272e2
VZ
89 $this->UpdateStatus($this->user->id(), $this->type_id,
90 'no', $this->remind_delay_no);
fb0ee2e8
SJ
91 }
92 protected function UpdateOnDismiss()
93 {
efc272e2
VZ
94 $this->UpdateStatus($this->user->id(), $this->type_id,
95 'dismiss', $this->remind_delay_dismiss);
fb0ee2e8
SJ
96 }
97
98 // Display and http handling helpers --------------------------------------
99
100 // Handles a hit on the reminder onebox (for links made using the GetBaseUrl
101 // method below).
102 abstract public function HandleAction($action);
103
02d5e4dc
SJ
104 // Displays a reduced version of the reminder and notifies that the action
105 // has been taken into account.
26ba053e 106 public function NotifiesAction($page)
02d5e4dc 107 {
3cb500d5 108 pl_content_headers("text/html");
02d5e4dc
SJ
109 $page->changeTpl('reminder/notification.tpl', NO_SKIN);
110 $page->assign('previous_reminder', $this->title());
111 }
112
4b0cb388
VZ
113 // Displays the reminder as a standalone html snippet. It should be used
114 // when the reminder is the only output of a page.
26ba053e 115 public function DisplayStandalone($page, $previous_reminder = null)
fb0ee2e8 116 {
3cb500d5 117 pl_content_headers("text/html");
4b0cb388
VZ
118 $page->changeTpl('reminder/base.tpl', NO_SKIN);
119 $this->Prepare($page);
02d5e4dc
SJ
120 if ($previous_reminder) {
121 $page->assign('previous_reminder', $previous_reminder);
122 }
fb0ee2e8
SJ
123 }
124
4b0cb388 125 // Prepares the display by assigning template variables.
26ba053e 126 public function Prepare($page)
fb0ee2e8 127 {
4b0cb388 128 $page->assign_by_ref('reminder', $this);
fb0ee2e8
SJ
129 }
130
4b0cb388
VZ
131 // Returns the name of the inner template, or null if a simple text obtained
132 // from GetText should be printed.
133 public function template() { return null; }
134
135 // Returns the text to display in the onebox, or null if a
136 public function text() { return ''; }
137
138 // Returns the title of the onebox.
139 public function title() { return ''; }
140
141 // Should return true if this onebox needs to be considered as a warning and
142 // not just as a subscription offer.
143 public function warning() { return false; }
fb0ee2e8
SJ
144
145 // Returns the base url for the reminder module.
4b0cb388 146 public function baseurl()
fb0ee2e8
SJ
147 {
148 return 'ajax/reminder/' . $this->name;
149 }
150
27531a13
SJ
151 // Returns the url for the information page.
152 public function info() { return ''; }
153
efc272e2
VZ
154 // Static status update methods -------------------------------------------
155
1bf36cd1 156 // Marks the candidate reminder as having been accepted for user |uid|.
efc272e2
VZ
157 // It is intended to be used when a reminder box has been bypassed, and when
158 // it should behave as if the user had clicked on 'yes'.
1bf36cd1 159 protected static function MarkCandidateAsAccepted($uid, $candidate)
efc272e2 160 {
1bf36cd1 161 Reminder::UpdateStatus($uid, $candidate['type_id'],
efc272e2
VZ
162 'yes', $candidate['remind_delay_yes']);
163 }
164
fb0ee2e8
SJ
165 // Static factories -------------------------------------------------------
166
167 // Returns a chosen class using the user data from |user|, and from the database.
26ba053e 168 public static function GetCandidateReminder(User $user)
fb0ee2e8
SJ
169 {
170 $res = XDB::query('SELECT rt.*, r.status, r.remind_last
171 FROM reminder_type AS rt
172 LEFT JOIN reminder AS r ON (rt.type_id = r.type_id AND r.uid = {?})
e9ff46f1 173 WHERE r.uid IS NULL OR r.remind_next < NOW()',
fb0ee2e8 174 $user->id());
fb0ee2e8 175 $candidates = $res->fetchAllAssoc();
e9ff46f1
VZ
176
177 $weight_map = create_function('$a', 'return $a["weight"];');
178 while (count($candidates) > 0) {
179 $position = rand(1, array_sum(array_map($weight_map, $candidates)));
fb0ee2e8 180 foreach ($candidates as $key => $candidate) {
e9ff46f1
VZ
181 $position -= $candidate['weight'];
182 if ($position <= 0) {
fb0ee2e8 183 $class = self::GetClassName($candidate['name']);
efc272e2 184 if ($class && call_user_func(array($class, 'IsCandidate'), $user, $candidate)) {
fb0ee2e8
SJ
185 return new $class($user, $candidate);
186 }
187 unset($candidates[$key]);
188 }
189 }
fb0ee2e8
SJ
190 }
191
192 return null;
193 }
194
195 // Returns an instantiation of the reminder class which name is |name|, using
196 // user data from |user|, and from the database.
26ba053e 197 public static function GetByName(User $user, $name)
fb0ee2e8
SJ
198 {
199 if (!($class = self::GetClassName($name))) {
200 return null;
201 }
202
203 $res = XDB::query('SELECT rt.*, r.status, r.remind_last
204 FROM reminder_type AS rt
205 LEFT JOIN reminder AS r ON (rt.type_id = r.type_id AND r.uid = {?})
206 WHERE rt.name = {?}',
207 $user->id(), $name);
208 if ($res->numRows() > 0) {
209 return new $class($user, $res->fetchOneAssoc());
210 }
211
212 return null;
213 }
214
215 // Computes the name of the class for reminder named |name|, and preloads
216 // the class.
217 private static function GetClassName($name)
218 {
4b0cb388 219 include_once "reminder/$name.inc.php";
fb0ee2e8
SJ
220 $class = 'Reminder' . str_replace(' ', '', ucwords(str_replace('_', ' ', $name)));
221 return (class_exists($class) ? $class : null);
222 }
223}
224
225
448c8cdc 226// vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8:
fb0ee2e8 227?>