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