Typos
[platal.git] / include / marketing.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
9f5bd98e 3 * Copyright (C) 2003-2010 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
e654517d 22class Marketing
23{
24 static private $engines = array(
25 //user name => array(class name, require data)
26 'annuaire' => array('AnnuaireMarketing', false),
27 'groupe' => array('GroupMarketing', true),
28 'liste' => array('ListMarketing', true),
29 );
0337d704 30
e654517d 31 private $engine;
32 public $sender_mail;
33 public $user;
0337d704 34
e654517d 35 private $type;
36 private $data;
37 private $from;
38 private $sender;
232577de 39 private $personal_notes;
e654517d 40
41 private $hash = '';
42
232577de 43 public function __construct($uid, $email, $type, $data, $from, $sender = null, $personal_notes = null)
e654517d 44 {
45 $this->user = $this->getUser($uid, $email);
46 $this->sender_mail = $this->getFrom($from, $sender);
232577de 47 $this->engine =& $this->getEngine($type, $data, $from == 'user' ? $sender : null, $personal_notes);
e654517d 48
49 $this->type = $type;
50 $this->data = $data;
51 $this->from = $from;
eaf30d86 52 $this->sender = $sender;
232577de 53 $this->personal_notes = $personal_notes;
e654517d 54 }
55
56 private function getUser($uid, $email)
57 {
56081a9c
VZ
58 $user = User::getSilent($uid);
59 if (!$user) {
e654517d 60 return null;
eaf30d86 61 }
56081a9c
VZ
62
63 global $globals;
64 return array(
5daf68f6
VZ
65 'user' => $user,
66 'id' => $user->id(),
67 'sexe' => $user->isFemale(),
68 'mail' => $email,
69 'to' => '"' . $user->fullName() . '" <' . $email . '>',
70 'forlife_email' => $user->login() . '@' . $globals->mail->domain,
56081a9c 71 'forlife_email2' => $user->login() . '@' . $globals->mail->domain2,
56081a9c 72 );
e654517d 73 }
74
75 private function getFrom($from, $sender)
76 {
799cdbcd 77 global $globals;
eaf30d86 78
56081a9c 79 if ($from == 'staff' || !($user = User::getSilent($sender))) {
c3e0d3c1 80 return "\"L'équipe de Polytechnique.org\" <register@" . $globals->mail->domain . '>';
e654517d 81 }
5daf68f6 82 return '"' . $user->fullName() . '" <' . $user->bestEmail() . '>';
e654517d 83 }
84
232577de 85 private function &getEngine($type, $data, $from, $personal_notes)
e654517d 86 {
87 $class = $type . 'Marketing';
88 if (!class_exists($class, false)) {
89 $class= 'DefaultMarketing';
90 }
232577de 91 $engine = new $class($data, $from, $personal_notes);
8c4a0c30 92 if (!$engine instanceof MarketingEngine) {
f62bd784 93 $engine = null;
f62bd784 94 }
95 return $engine;
e654517d 96 }
97
98 public function getTitle()
99 {
100 return $this->engine->getTitle();
101 }
102
103 public function getText()
104 {
105 return $this->engine->getText($this->user);
106 }
107
108 public function send($title = null, $text = null)
109 {
110 $this->hash = rand_url_id(12);
111 if (!$title) {
112 $title = $this->engine->getTitle();
113 }
114 if (!$text) {
115 $text = $this->engine->getText($this->user);
116 }
117 $sender = substr($this->sender_mail, 1, strpos($this->sender_mail, '"', 2)-1);
232577de 118 $text = str_replace(array('%%hash%%', '%%sender%%', '%%personal_notes%%'),
c3e0d3c1 119 array($this->hash, "Cordialement,\n-- \n" . $this->sender_mail, ''), $text);
e654517d 120 $mailer = new PlMailer();
121 $mailer->setFrom($this->sender_mail);
122 $mailer->addTo($this->user['mail']);
123 $mailer->setSubject($title);
124 $mailer->setTxtBody($text);
125 $mailer->send();
126 $this->incr();
127 }
128
129 public function add($valid = true)
130 {
131 XDB::execute('INSERT IGNORE INTO register_marketing
232577de
SJ
132 (uid, sender, email, date, last, nb, type, hash, message, message_data, personal_notes)
133 VALUES ({?}, {?}, {?}, NOW(), 0, 0, {?}, {?}, {?}, {?}, {?})',
e654517d 134 $this->user['id'], $this->sender, $this->user['mail'], $this->from, $this->hash,
232577de 135 $this->type, $this->data, $this->personal_notes);
e654517d 136 $this->engine->process($this->user);
137 if ($valid) {
138 require_once 'validations.inc.php';
c3e0d3c1
SJ
139 $sender = User::getSilent($this->sender);
140 $valid = new MarkReq($sender, $this->user['user'], $this->user['mail'],
232577de 141 $this->from == 'user', $this->type, $this->data, $this->personal_notes);
e654517d 142 $valid->submit();
143 }
144 return true;
145 }
146
147 private function incr()
148 {
149 XDB::execute('UPDATE register_marketing
150 SET nb=nb+1, hash={?}, last=NOW()
151 WHERE uid={?} AND email={?}',
152 $this->hash, $this->user['id'], $this->user['mail']);
153 }
154
155 static public function getEngineList($exclude_data = true)
156 {
157 $array = array();
158 foreach (Marketing::$engines as $e => $d) {
159 if (!$d[1] || !$exclude_data) {
160 $array[] = $e;
161 }
162 }
163 return $array;
164 }
165
8ded5b5e 166 static public function get($uid, $email, $recentOnly = false)
e654517d 167 {
232577de 168 $res = XDB::query("SELECT uid, email, message, message_data, type, sender, personal_notes
e654517d 169 FROM register_marketing
8ded5b5e 170 WHERE uid = {?}
171 AND email = {?}".(
172 $recentOnly ? ' AND DATEDIFF(NOW(), last) < 30' : ''), $uid, $email);
173
e654517d 174 if ($res->numRows() == 0) {
175 return null;
176 }
9707997c 177 list ($uid, $email, $type, $data, $from, $sender, $personal_notes) = $res->fetchOneRow();
232577de 178 return new Marketing($uid, $email, $type, $data, $from, $sender, $personal_notes);
e654517d 179 }
180
181 static public function clear($uid, $email = null)
182 {
183 if (!$email) {
184 XDB::execute("DELETE FROM register_marketing WHERE uid = {?}", $uid);
185 } else {
eaf30d86 186 XDB::execute("DELETE FROM register_marketing WHERE uid = {?} AND email = {?}", $uid, $email);
e654517d 187 }
188 }
189
38c6fe96 190 static public function relance(PlUser &$user, $nbx = -1)
e654517d 191 {
192 global $globals;
193
194 if ($nbx < 0) {
19721970 195 $nbx = $globals->core->NbIns;
e654517d 196 }
eaf30d86 197
0c1e3a66
FB
198 $res = XDB::fetchOneCell('SELECT r.date, r.email, r.bestalias
199 FROM register_pending
200 WHERE r.hash = \'INSCRIT\' AND uid = {?}',
38c6fe96
FB
201 $user->id());
202 if (!$res) {
e654517d 203 return false;
38c6fe96
FB
204 } else {
205 list($date, $email, $alias) = $res;
e654517d 206 }
eaf30d86 207
e654517d 208 $hash = rand_url_id(12);
209 $pass = rand_pass();
c67ba12a 210 $pass_encrypted = sha1($pass);
e654517d 211 $fdate = strftime('%d %B %Y', strtotime($date));
eaf30d86 212
b71f7275 213 $mymail = new PlMailer('marketing/relance.mail.tpl');
e654517d 214 $mymail->assign('nbdix', $nbx);
215 $mymail->assign('fdate', $fdate);
216 $mymail->assign('lusername', $alias);
217 $mymail->assign('nveau_pass', $pass);
218 $mymail->assign('baseurl', $globals->baseurl);
219 $mymail->assign('lins_id', $hash);
220 $mymail->assign('lemail', $email);
221 $mymail->assign('subj', $alias.'@'.$globals->mail->domain);
222 $mymail->send();
223 XDB::execute('UPDATE register_pending
224 SET hash={?}, password={?}, relance=NOW()
38c6fe96
FB
225 WHERE uid={?}', $hash, $pass_encrypted, $user->id());
226 return $user->fullName();
e654517d 227 }
0337d704 228}
0337d704 229
e654517d 230interface MarketingEngine
0337d704 231{
232577de 232 public function __construct($data, $from, $personal_notes = null);
e654517d 233 public function getTitle();
234 public function getText(array $user);
235 public function process(array $user);
0337d704 236}
237
e654517d 238class AnnuaireMarketing implements MarketingEngine
239{
240 protected $titre;
241 protected $intro;
24490a67 242 protected $signature;
232577de 243 protected $personal_notes;
0337d704 244
232577de 245 public function __construct($data, $from, $personal_notes = null)
e654517d 246 {
24490a67 247 $this->titre = "Rejoins la communauté polytechnicienne sur Internet";
248 $this->intro = " Tu n'as pas de fiche dans l'annuaire des polytechniciens sur Internet. "
249 . "Pour y figurer, il te suffit de visiter cette page ou de copier cette adresse "
e654517d 250 . "dans la barre de ton navigateur :";
24490a67 251 if ($from === null) {
c3e0d3c1
SJ
252 $page = new XorgPage();
253 $page->changeTpl('include/signature.mail.tpl', NO_SKIN);
254 $page->assign('mail_part', 'text');
255 $this->signature = $page->raw();
24490a67 256 } else {
c3e0d3c1 257 $this->signature = '%%sender%%';
24490a67 258 }
232577de
SJ
259 if (is_null($personal_notes) || $personal_notes == '') {
260 $this->personal_notes = '%%personal_notes%%';
261 } else {
262 $this->personal_notes = "\n" . $personal_notes . "\n";
263 }
e654517d 264 }
265
266 public function getTitle()
267 {
268 return $this->titre;
269 }
270
271 private function getIntro()
272 {
273 return $this->intro;
274 }
275
24490a67 276 public function getSignature()
277 {
278 return $this->signature;
279 }
280
232577de
SJ
281 public function getPersonalNotes()
282 {
283 return $this->personal_notes;
284 }
285
04334c61 286 protected function prepareText(PlPage &$page, array $user)
e654517d 287 {
288 $page->assign('intro', $this->getIntro());
289 $page->assign('u', $user);
24490a67 290 $page->assign('sign', $this->getSignature());
232577de 291 $page->assign('personal_notes', $this->getPersonalNotes());
e654517d 292 }
293
294 public function getText(array $user)
295 {
f70f2bcd
FB
296 $page = new XorgPage();
297 $page->changeTpl('marketing/marketing.mail.tpl', NO_SKIN);
e654517d 298 $this->prepareText($page, $user);
299 return $page->raw();
300 }
301
302 public function process(array $user)
303 {
304 }
305}
306
307class ListMarketing extends AnnuaireMarketing
0337d704 308{
e654517d 309 private $name;
310 private $domain;
232577de 311 public function __construct($data, $from, $personal_notes = null)
e654517d 312 {
313 list($this->name, $this->domain) = explode('@', $data);
56081a9c
VZ
314 if ($from && ($user = User::getSilent($from))) {
315 $from = $user->fullName();
e654517d 316 } else {
317 $from = "Je";
318 }
319 $this->titre = "Un camarade solicite ton inscription à $data";
24490a67 320 $this->intro = "Polytechnique.org, l'annuaire des polytechniciens sur internet, "
321 . "fournit de nombreux services aux groupes X, ainsi que des listes "
322 . "de diffusion pour les X en faisant la demande.\n\n"
323 . "$from solicite ton inscription à la liste <$data>. "
324 . "Cependant, seuls les X inscrits sur Polytechnique.org peuvent "
325 . "profiter de l'ensemble de nos services, c'est pourquoi nous te "
326 . "proposons auparavant de t'inscrire sur notre site. Pour cela, il "
327 . "te suffit de visiter cette page ou de copier cette adresse dans "
328 . "la barre de ton navigateur :";
e654517d 329 }
0337d704 330
e654517d 331 public function process(array $user)
332 {
333 return XDB::execute("REPLACE INTO register_subs (uid, type, sub, domain)
24490a67 334 VALUES ({?}, 'list', {?}, {?})",
335 $user['id'], $this->name, $this->domain);
0337d704 336 }
e654517d 337}
0337d704 338
e654517d 339class GroupMarketing extends AnnuaireMarketing
340{
341 private $group;
232577de 342 public function __construct($data, $from, $personal_notes = null)
e654517d 343 {
344 $this->group = $data;
56081a9c
VZ
345 if ($from && ($user = User::getSilent($from))) {
346 $from = $user->fullName() . " vient";
e654517d 347 } else {
348 $from = "Je viens";
349 }
350 $this->titre = "Profite de ton inscription au groupe \"$data\" pour découvrir Polytechnique.org";
24490a67 351 $this->intro = "Polytechnique.org, l'annuaire des polytechniciens sur internet, fournit "
352 . "de nombreux services aux groupes X ( listes de diffusion, paiement en "
353 . "ligne, sites internet...), en particulier pour le groupe \"$data\"\n\n"
354 . "$from de t'inscrire dans l'annuaire du groupe \"$data\". "
355 . "Cependant, seuls les X inscrits sur Polytechnique.org peuvent profiter "
356 . "de l'ensemble de nos services, c'est pourquoi nous te proposons de "
357 . "t'inscrire sur notre site . Pour cela, il te suffit de visiter cette page "
358 . "ou de copier cette adresse dans la barre de ton navigateur :";
0337d704 359 }
360
e654517d 361 public function process(array $user)
362 {
363 return XDB::execute("REPLACE INTO register_subs (uid, type, sub, domain)
24490a67 364 VALUES ({?}, 'group', {?}, '')",
365 $user['id'], $this->group);
e654517d 366 }
0337d704 367}
368
e654517d 369/// Make AnnuaireMarketing to be the default message
370class DefaultMarketing extends AnnuaireMarketing
371{
372}
0337d704 373
a7de4ef7 374// vim:set et sw=4 sts=4 sws=4 enc=utf-8:
0337d704 375?>