Displays group member count.
[platal.git] / include / validations / names.inc.php
1 <?php
2 /***************************************************************************
3 * Copyright (C) 2003-2010 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 NamesReq4
23
24 class NamesReq extends ProfileValidate
25 {
26 // {{{ properties
27
28 public $unique = true;
29
30 public $sn_old;
31 public $sn_new;
32 public $display_names;
33 public $old_alias;
34 public $new_alias;
35 public $sn_types;
36
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).";
38
39 // }}}
40 // {{{ constructor
41
42 public function __construct(User &$_user, Profile &$_profile, $_search_names, $_private_name_end)
43 {
44 parent::__construct($_user, $_profile, true, 'usage');
45 require_once 'name.func.inc.php';
46
47 $this->sn_types = build_types();
48 $this->sn_old = build_sn_pub($this->profile->id());
49 $this->sn_new = $_search_names;
50 $this->new_alias = true;
51 $this->display_names = array();
52
53 build_display_names($this->display_names, $_search_names,
54 $this->profile->isFemale(), $_private_name_end, $this->new_alias);
55 foreach ($this->sn_new AS $key => &$sn) {
56 if (!isset($sn['pub'])) {
57 unset($this->sn_new[$key]);
58 }
59 }
60
61 if (!is_null($this->profileOwner)) {
62 $res = XDB::query("SELECT alias
63 FROM aliases
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 }
75 }
76 }
77 }
78
79 // }}}
80 // {{{ function formu()
81
82 public function formu()
83 {
84 return 'include/form.valid.names.tpl';
85 }
86
87 // }}}
88 // {{{ function _mail_subj()
89
90 protected function _mail_subj()
91 {
92 return "[Polytechnique.org/NOMS] Changement de noms";
93 }
94
95 // }}}
96 // {{{ function _mail_body
97
98 protected function _mail_body($isok)
99 {
100 global $globals;
101 if ($isok) {
102 $res = " Le changement de nom que tu as demandé vient d'être effectué.";
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 }
111 }
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 }
118 }
119 }
120 return $res;
121 } else {
122 return " La demande de changement de nom que tu avais faite a été refusée.";
123 }
124 }
125
126 // }}}
127 // {{{ function commit()
128
129 public function commit()
130 {
131 require_once 'name.func.inc.php';
132
133 set_profile_display($this->display_names, $this->profile->id());
134
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.
140 $this->profileOwner = User::getSilent($this->profileOwner->id());
141 }
142
143 return true;
144 }
145
146 // }}}
147 }
148 // }}}
149
150 // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
151 ?>