Happy New Year!
[platal.git] / include / validations / names.inc.php
CommitLineData
0337d704 1<?php
2/***************************************************************************
5e1513f6 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
c3d1e6b6 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)) {
62 $res = XDB::query("SELECT alias
dced83b4 63 FROM aliases
c3d1e6b6
SJ
64 WHERE uid = {?} AND type = 'alias' AND FIND_IN_SET('usage', flags)",
65 $this->profileOwner->id());
66 $this->old_alias = $res->fetchOneCell();
67 if ($this->old_alias != $this->new_alias) {
68 $res = XDB::query("SELECT uid
69 FROM aliases
70 WHERE alias = {?}",
71 $this->new_alias);
72 if ($res->fetchOneCell()) {
73 $this->new_alias = null;
74 }
dced83b4 75 }
5daf68f6 76 }
0337d704 77 }
78
79 // }}}
0337d704 80 // {{{ function formu()
81
612a2d8a 82 public function formu()
83 {
dced83b4 84 return 'include/form.valid.names.tpl';
612a2d8a 85 }
0337d704 86
87 // }}}
88 // {{{ function _mail_subj()
89
612a2d8a 90 protected function _mail_subj()
0337d704 91 {
dced83b4 92 return "[Polytechnique.org/NOMS] Changement de noms";
0337d704 93 }
94
95 // }}}
96 // {{{ function _mail_body
97
612a2d8a 98 protected function _mail_body($isok)
0337d704 99 {
100 global $globals;
101 if ($isok) {
dced83b4 102 $res = " Le changement de nom que tu as demandé vient d'être effectué.";
c3d1e6b6
SJ
103 if (!is_null($this->profileOwner)) {
104 if ($this->old_alias != $this->new_alias) {
105 if ($this->old_alias) {
106 $res .= "\n\n Les alias {$this->old_alias}@{$globals->mail->domain} et @{$globals->mail->domain2} ont été supprimés.";
107 }
108 if ($this->new_alias) {
109 $res .= "\n\n Les alias {$this->new_alias}@{$globals->mail->domain} et @{$globals->mail->domain2} sont maintenant à ta disposition !";
110 }
dced83b4 111 }
c3d1e6b6
SJ
112 if ($globals->mailstorage->googleapps_domain) {
113 require_once 'googleapps.inc.php';
114 $account = new GoogleAppsAccount($this->profileOwner);
115 if ($account->active()) {
116 $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.";
117 }
fc0342c3
VZ
118 }
119 }
0337d704 120 return $res;
121 } else {
dced83b4 122 return " La demande de changement de nom que tu avais faite a été refusée.";
0337d704 123 }
124 }
125
126 // }}}
127 // {{{ function commit()
128
612a2d8a 129 public function commit()
0337d704 130 {
6cb58d39 131 require_once 'name.func.inc.php';
dced83b4 132
f4b04704 133 set_profile_display($this->display_names, $this->profile);
01ebbdbf 134
c3d1e6b6
SJ
135 if (!is_null($this->profileOwner)) {
136 set_alias_names($this->sn_new, $this->sn_old, $this->profile->id(),
137 $this->profileOwner->id(), true, $this->new_alias);
138
139 // Update the local User object, to pick up the new bestalias.
14da7ef4 140 $this->profileOwner = User::getSilentWithUID($this->profileOwner->id());
c3d1e6b6 141 }
01ebbdbf 142
0337d704 143 return true;
144 }
145
146 // }}}
147}
148// }}}
149
a7de4ef7 150// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 151?>