Migrates the validation architecture to an User-based model, instead of the deprecate...
[platal.git] / include / validations / homonymes.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2008 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 require_once 'validations.inc.php';
23 // {{{ class HomonymeReq
24
25 class HomonymeReq extends Validate
26 {
27 // {{{ properties
28
29 public $loginbis;
30
31 public $warning = true;
32
33 public $homonymes_forlife;
34
35 public $rules = "Accepter, sauf cas particulier d'utilisateur dont l'homonymie est traité plus ... manuellement";
36
37 // }}}
38 // {{{ constructor
39
40 public function __construct(User $_user, $_loginbis, $_homonymes_forlife, $warning=true)
41 {
42 $this->warning = $warning;
43
44 parent::__construct($_user, true, $this->title());
45
46 $this->refuse = false;
47 $this->loginbis = $_loginbis;
48 $this->homonymes_forlife = $_homonymes_forlife;
49 }
50
51 // }}}
52 // {{{ title()
53
54 private function title()
55 {
56 return ($this->warning ? 'alerte alias' : 'robot répondeur');
57 }
58
59 // }}}
60 // {{{ function formu()
61
62 public function formu()
63 {
64 return 'include/form.valid.homonymes.tpl';
65 }
66
67 // }}}
68 // {{{ function _mail_subj
69
70 protected function _mail_subj()
71 {
72 global $globals;
73 return "[Polytechnique.org/Support] "
74 . ($this->warning ? "Dans une semaine : suppression de l'alias " : "Mise en place du robot")
75 . " $loginbis@" . $globals->mail->domain;
76 }
77
78 // }}}
79 // {{{ function _mail_body
80
81 protected function _mail_body($isok)
82 {
83 global $globals;
84 return
85 "
86 Comme nous t'en avons informé par email il y a quelques temps,
87 pour respecter nos engagements en terme d'adresses email devinables,
88 tu te verras bientôt retirer l'alias ".$this->loginbis."@".$globals->mail->domain." pour
89 ne garder que " . $this->user->forlifeEmail() . ".
90
91 Toute personne qui écrira à ".$this->loginbis."@".$globals->mail->domain." recevra la
92 réponse d'un robot qui l'informera que ".$this->loginbis."@".$globals->mail->domain."
93 est ambigu pour des raisons d'homonymie et signalera ton email exact.";
94 }
95
96 // }}}
97 // {{{ function sendmail()
98
99 protected function sendmail($isok)
100 {
101 if (!$isok) return false;
102 global $globals;
103 $mailer = new PlMailer;
104 $cc = "support+homonyme@" . $globals->mail->domain;
105 $from = "\"Support Polytechnique.org\" <$cc>";
106 $mailer->setSubject($this->_mail_subj());
107 $mailer->setFrom($from);
108 $mailer->addTo("\"{$this->user->fullName()}\" <{$this->user->bestEmail()}>");
109 $mailer->addCc($cc);
110
111 $body = $this->user->displayName() . ",\n\n"
112 . $this->_mail_body($isok)
113 . (Env::has('comm') ? "\n\n".Env::v('comm') : '')
114 . "\n\nCordialement,\n\n-- \nL'équipe de Polytechnique.org\n";
115
116 $mailer->setTxtBody(wordwrap($body));
117 $mailer->send();
118 }
119 // }}}
120 // {{{ function commit()
121
122 public function commit()
123 {
124 require_once('homonymes.inc.php');
125
126 switch_bestalias($this->user->id(), $this->loginbis);
127 if (!$this->warning) {
128 XDB::execute("UPDATE aliases SET type = 'homonyme', expire = NOW() WHERE alias = {?}", $this->loginbis);
129 XDB::execute("REPLACE INTO homonymes (homonyme_id, user_id) VALUES({?}, {?})", $this->user->id(), $this->user->id());
130 }
131
132 return true;
133 }
134
135 // }}}
136 }
137
138 // }}}
139
140 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
141 ?>