eb0c2d757cb10149247dd68749297d8cd4e7dde9
[platal.git] / include / validations / aliases.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 AliasReq {{{1
23 class AliasReq extends Validate
24 {
25 // properties {{{2
26 public $alias;
27 public $raison;
28 public $unique = true;
29
30 public $old = '';
31 public $public = 'private';
32
33 public $rules = "Interdire ce qui peut nous servir (virus@, postmaster@&hellip;),
34 les alias vulgaires, et les prenom.nom (sauf si c'est pour l'utilisateur prenom.nom).
35 Pas de contrainte pour les tirets ou les points, en revanche le souligné (_) est interdit.";
36
37 // constructor {{{2
38 public function __construct(User &$_user, $_alias, $_raison, $_public, $_stamp=0)
39 {
40 global $globals;
41 parent::__construct($_user, true, 'alias', $_stamp);
42 $this->alias = $_alias.'@'.$globals->mail->alias_dom;
43 $this->raison = $_raison;
44 $this->public = $_public;
45 $this->old = $_user->emailAlias();
46 if (empty($this->old)) {
47 unset($this->old);
48 }
49 }
50
51 // function get_request() {{{2
52 static public function get_request($uid)
53 {
54 return parent::get_typed_request($uid, 'alias');
55 }
56
57 // function formu() {{{2
58 public function formu()
59 {
60 return 'include/form.valid.aliases.tpl';
61 }
62
63 // function _mail_subj {{{2
64 protected function _mail_subj()
65 {
66 return "[Polytechnique.org/MELIX] Demande de l'alias {$this->alias}";
67 }
68
69 // function _mail_body {{{2
70 protected function _mail_body($isok)
71 {
72 if ($isok) {
73 return " L'adresse email {$this->alias} que tu avais demandée vient d'être créée, tu peux désormais l'utiliser à ta convenance."
74 . ($this->public == 'public' ? ' À ta demande, cette adresse apparaît maintenant sur ta fiche.' : '');
75 } else {
76 return " La demande que tu avais faite pour l'alias {$this->alias} a été refusée.";
77 }
78 }
79
80 // function commit() {{{2
81 public function commit()
82 {
83 if ($this->user->hasProfile()) {
84 XDB::execute('UPDATE profiles
85 SET alias_pub = {?}
86 WHERE pid = {?}',
87 $this->public, $this->user->profile()->id());
88 }
89
90 if ($this->old) {
91 return XDB::execute('UPDATE virtual
92 SET alias = {?}
93 WHERE alias = {?}',
94 $this->alias, $this->old);
95 } else {
96 XDB::execute('INSERT INTO virtual
97 SET alias = {?}, type=\'user\'',
98 $this->alias);
99 $vid = XDB::insertId();
100 return XDB::execute('INSERT INTO virtual_redirect (vid, redirect)
101 VALUES ({?}, {?})',
102 $vid, $this->user->forlifeEmail());
103 }
104 }
105 }
106
107 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
108 ?>