bug 332, precision de la raison du nom d'usage
[platal.git] / include / validations / nomusage.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2004 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 UsageReq
23
24 class UsageReq extends Validate
25 {
26 // {{{ properties
27
28 var $unique = true;
29
30 var $nom_usage;
31 var $alias = '';
32
33 var $oldusage;
34 var $oldalias;
35
36 var $homonyme;
37 var $reason;
38
39 var $rules = "Refuser
40 tout ce qui n'est visiblement pas un nom de famille (ce qui est
41 extremement rare car à peu près n'importe quoi peut être un nom de
42 famille...)";
43
44 // }}}
45 // {{{ constructor
46
47 function UsageReq($_uid, $_usage, $_reason)
48 {
49 global $globals;
50 $this->Validate($_uid, true, 'usage');
51 $this->nom_usage = $_usage;
52 $this->reason = $_reason;
53 $this->alias = make_username($this->prenom, $this->nom_usage);
54 if (!$this->nom_usage) $this->alias = "";
55
56 $res = $globals->xdb->query("
57 SELECT e.alias, u.nom_usage, a.id
58 FROM auth_user_md5 as u
59 LEFT JOIN aliases as e ON(e.type='alias' AND FIND_IN_SET('usage',e.flags) AND e.id = u.user_id)
60 LEFT JOIN aliases as a ON(a.alias = {?} AND a.id != u.user_id)
61 WHERE u.user_id = {?}", $this->alias, $this->uid);
62 list($this->oldalias, $this->oldusage, $this->homonyme) = $res->fetchOneRow();
63 }
64
65 // }}}
66 // {{{ function get_request()
67
68 function get_request($uid)
69 {
70 return parent::get_request($uid,'usage');
71 }
72
73 // }}}
74 // {{{ function formu()
75
76 function formu()
77 { return 'include/form.valid.nomusage.tpl'; }
78
79 // }}}
80 // {{{ function _mail_subj()
81
82 function _mail_subj()
83 {
84 return "[Polytechnique.org/USAGE] Changement de nom d'usage";
85 }
86
87 // }}}
88 // {{{ function _mail_body
89
90 function _mail_body($isok)
91 {
92 global $globals;
93 if ($isok) {
94 $res = " La demande de changement de nom d'usage que tu as demandée vient d'être effectuée.";
95 if ($this->oldalias) {
96 $res .= "\n\n Les alias {$this->oldalias}@{$globals->mail->domain} et @{$globals->mail->domain2} ont été supprimés.";
97 }
98 if ($nom_usage) {
99 $res .= "\n\n Les alias {$this->alias}@{$globals->mail->domain} et @{$globals->mail->domain2} sont maintenant à ta disposition !";
100 }
101 return $res;
102 } else {
103 return " La demande de changement de nom d'usage que tu avais faite a été refusée.";
104 }
105 }
106
107 // }}}
108 // {{{ function commit()
109
110 function commit()
111 {
112 require_once('nomusage.inc.php');
113 set_new_usage($this->uid, $this->nom_usage, $this->alias);
114 return true;
115 }
116
117 // }}}
118 }
119 // }}}
120
121 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker:
122 ?>