Fixes vim mode line.
[platal.git] / include / validations / names.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2014 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 NamesReq
23
24 class NamesReq extends ProfileValidate
25 {
26 // {{{ properties
27
28 public $unique = true;
29 public $public_names;
30 public $old_public_names;
31 public $old_alias = null;
32 public $new_alias = null;
33 public $descriptions = array('lastname_main' => 'Nom patronymique', 'lastname_marital' => 'Nom marital', 'lastname_ordinary' => 'Nom usuel', 'firstname_main' => 'Prénom', 'firstname_ordinary' => 'Prénom usuel', 'pseudonym' => 'Pseudonyme (nom de plume)');
34 public $rules = "Refuser tout ce qui n'est visiblement pas un nom de famille (ce qui est extremement rare car à peu près n'importe quoi peut être un nom de famille).";
35
36 // }}}
37 // {{{ constructor
38
39 public function __construct(User $_user, Profile $_profile, array $_public_names, array $_old_public_names)
40 {
41 parent::__construct($_user, $_profile, true, 'usage');
42
43 $this->public_names = $_public_names;
44 $this->old_public_names = $_old_public_names;
45
46 if (!is_null($this->profileOwner)) {
47 require_once 'name.func.inc.php';
48
49 $this->new_alias = build_email_alias($this->public_names);
50 $this->old_alias = XDB::fetchOneCell('SELECT email
51 FROM email_source_account
52 WHERE uid = {?} AND type = \'alias\' AND FIND_IN_SET(\'usage\', flags)',
53 $this->profileOwner->id());
54
55 if ($this->old_alias == $this->new_alias) {
56 $this->old_alias = $this->new_alias = null;
57 } else {
58 $used = XDB::fetchOneCell('SELECT COUNT(uid)
59 FROM email_source_account
60 WHERE email = {?} AND type != \'alias_aux\'',
61 $this->new_alias);
62 if (!$used) {
63 // Check against homonyms
64 $used = XDB::fetchOneCell('SELECT COUNT(email)
65 FROM email_source_other
66 WHERE email = {?}',
67 $this->new_alias);
68 }
69 if ($used) {
70 $this->new_alias = null;
71 }
72 }
73 }
74 }
75
76 // }}}
77 // {{{ function formu()
78
79 public function formu()
80 {
81 return 'include/form.valid.names.tpl';
82 }
83
84 // }}}
85 // {{{ function _mail_subj()
86
87 protected function _mail_subj()
88 {
89 return "[Polytechnique.org/NOMS] Changement de noms";
90 }
91
92 // }}}
93 // {{{ function _mail_body
94
95 protected function _mail_body($isok)
96 {
97 if ($isok) {
98 $res = " Le changement de nom que tu as demandé vient d'être effectué.";
99 if (!is_null($this->profileOwner)) {
100 if ($this->old_alias != $this->new_alias) {
101 if ($this->old_alias) {
102 $res .= "\n\n L'alias {$this->old_alias}@{$this->mail_domain} a été supprimé.";
103 }
104 if ($this->new_alias) {
105 $res .= "\n\n L'alias {$this->new_alias}@{$this->mail_domain} est maintenant à ta disposition !";
106 }
107 }
108 if ($globals->mailstorage->googleapps_domain) {
109 require_once 'googleapps.inc.php';
110 $account = new GoogleAppsAccount($this->profileOwner);
111 if ($account->active()) {
112 $res .= "\n\n Si tu utilises Google Apps, tu peux changer ton nom d'usage sur https://mail.google.com/a/polytechnique.org/#settings/accounts.";
113 }
114 }
115 }
116 return $res;
117 } else {
118 return " La demande de changement de nom que tu avais faite a été refusée.";
119 }
120 }
121
122 // }}}
123 // {{{ function commit()
124
125 public function commit()
126 {
127 require_once 'name.func.inc.php';
128
129 update_public_names($this->profile->id(), $this->public_names);
130 update_display_names($this->profile, $this->public_names);
131
132 if (!is_null($this->profileOwner)) {
133 if (!is_null($this->old_alias)) {
134 XDB::execute('DELETE FROM email_source_account
135 WHERE FIND_IN_SET(\'usage\', flags) AND uid = {?} AND type = \'alias\'',
136 $this->profileOwner->id());
137 }
138 if (!is_null($this->new_alias)) {
139 XDB::execute('INSERT INTO email_source_account (email, uid, type, flags, domain)
140 SELECT {?}, {?}, \'alias\', \'usage\', id
141 FROM email_virtual_domains
142 WHERE name = {?}',
143 $this->new_alias, $this->profileOwner->id(), $this->profileOwner->mainEmailDomain());
144 }
145 require_once 'emails.inc.php';
146 fix_bestalias($this->profileOwner);
147
148 // Update the local User object, to pick up the new bestalias.
149 $this->profileOwner = User::getSilentWithUID($this->profileOwner->id());
150 }
151
152 return true;
153 }
154
155 // }}}
156 // {{{ function getPublicNames()
157
158 static public function getPublicNames($pid)
159 {
160 if ($request = parent::get_typed_request($pid, 'usage')) {
161 return $request->public_names;
162 }
163 return false;
164 }
165
166 // }}}
167
168 }
169 // }}}
170
171 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker fenc=utf-8:
172 ?>