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