Fixes erroneous SQL query.
[platal.git] / include / validations / names.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
12262f13 3 * Copyright (C) 2003-2011 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
453cbb00 22// {{{ class NamesReq
0337d704 23
c3d1e6b6 24class NamesReq extends ProfileValidate
0337d704 25{
26 // {{{ properties
27
612a2d8a 28 public $unique = true;
0337d704 29
dced83b4
SJ
30 public $sn_old;
31 public $sn_new;
32 public $display_names;
33 public $old_alias;
34 public $new_alias;
35 public $sn_types;
0337d704 36
dced83b4 37 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).";
0337d704 38
39 // }}}
40 // {{{ constructor
41
26ba053e 42 public function __construct(User $_user, Profile $_profile, $_search_names, $_private_name_end)
0337d704 43 {
c3d1e6b6 44 parent::__construct($_user, $_profile, true, 'usage');
dced83b4
SJ
45 require_once 'name.func.inc.php';
46
47 $this->sn_types = build_types();
c3d1e6b6 48 $this->sn_old = build_sn_pub($this->profile->id());
dced83b4
SJ
49 $this->sn_new = $_search_names;
50 $this->new_alias = true;
51 $this->display_names = array();
52
e8a7cf31 53 build_display_names($this->display_names, $_search_names,
c3d1e6b6 54 $this->profile->isFemale(), $_private_name_end, $this->new_alias);
dced83b4
SJ
55 foreach ($this->sn_new AS $key => &$sn) {
56 if (!isset($sn['pub'])) {
57 unset($this->sn_new[$key]);
58 }
59 }
c3d1e6b6
SJ
60
61 if (!is_null($this->profileOwner)) {
c0436d0b
SJ
62 $this->old_alias = XDB::fetchOneCell('SELECT s.email
63 FROM email_source_account AS s
64 INNER JOIN email_virtual_domains AS d ON (s.domain = d.id)
65 WHERE s.uid = {?} AND s.type = \'alias\' AND FIND_IN_SET(\'usage\', s.flags) AND d.name = {?}',
66 $this->profileOwner->id(), Platal::globals()->mail->domain);
c3d1e6b6 67 if ($this->old_alias != $this->new_alias) {
e1820c1e 68 $used = XDB::fetchOneCell('SELECT COUNT(s.uid)
c0436d0b
SJ
69 FROM email_source_account AS s
70 INNER JOIN email_virtual_domains AS d ON (s.domain = d.id)
71 WHERE s.email = {?} AND d.name = {?}',
72 $this->new_alias, Platal::globals()->mail->domain);
73 if ($used) {
c3d1e6b6
SJ
74 $this->new_alias = null;
75 }
dced83b4 76 }
5daf68f6 77 }
0337d704 78 }
79
80 // }}}
0337d704 81 // {{{ function formu()
82
612a2d8a 83 public function formu()
84 {
dced83b4 85 return 'include/form.valid.names.tpl';
612a2d8a 86 }
0337d704 87
88 // }}}
89 // {{{ function _mail_subj()
90
612a2d8a 91 protected function _mail_subj()
0337d704 92 {
dced83b4 93 return "[Polytechnique.org/NOMS] Changement de noms";
0337d704 94 }
95
96 // }}}
97 // {{{ function _mail_body
98
612a2d8a 99 protected function _mail_body($isok)
0337d704 100 {
101 global $globals;
102 if ($isok) {
dced83b4 103 $res = " Le changement de nom que tu as demandé vient d'être effectué.";
c3d1e6b6
SJ
104 if (!is_null($this->profileOwner)) {
105 if ($this->old_alias != $this->new_alias) {
106 if ($this->old_alias) {
107 $res .= "\n\n Les alias {$this->old_alias}@{$globals->mail->domain} et @{$globals->mail->domain2} ont été supprimés.";
108 }
109 if ($this->new_alias) {
110 $res .= "\n\n Les alias {$this->new_alias}@{$globals->mail->domain} et @{$globals->mail->domain2} sont maintenant à ta disposition !";
111 }
dced83b4 112 }
c3d1e6b6
SJ
113 if ($globals->mailstorage->googleapps_domain) {
114 require_once 'googleapps.inc.php';
115 $account = new GoogleAppsAccount($this->profileOwner);
116 if ($account->active()) {
117 $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.";
118 }
fc0342c3
VZ
119 }
120 }
0337d704 121 return $res;
122 } else {
dced83b4 123 return " La demande de changement de nom que tu avais faite a été refusée.";
0337d704 124 }
125 }
126
127 // }}}
128 // {{{ function commit()
129
612a2d8a 130 public function commit()
0337d704 131 {
6cb58d39 132 require_once 'name.func.inc.php';
dced83b4 133
f4b04704 134 set_profile_display($this->display_names, $this->profile);
01ebbdbf 135
c3d1e6b6
SJ
136 if (!is_null($this->profileOwner)) {
137 set_alias_names($this->sn_new, $this->sn_old, $this->profile->id(),
138 $this->profileOwner->id(), true, $this->new_alias);
139
140 // Update the local User object, to pick up the new bestalias.
14da7ef4 141 $this->profileOwner = User::getSilentWithUID($this->profileOwner->id());
c3d1e6b6 142 }
01ebbdbf 143
0337d704 144 return true;
145 }
146
147 // }}}
148}
149// }}}
150
a7de4ef7 151// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 152?>