create special upgrade directories for fusionax upgrades
[platal.git] / modules / profile / general.inc.php
CommitLineData
fd38b30e
FB
1<?php
2/***************************************************************************
3 * Copyright (C) 2003-2007 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
22class ProfileNom implements ProfileSetting
23{
24 private function matchWord($old, $new, $newLen) {
93553cea 25 return ($i = strpos($old, $new)) !== false
fd38b30e
FB
26 && ($i == 0 || $old{$i-1} == ' ')
27 && ($i + $newLen == strlen($old) || $old{$i + $newLen} == ' ');
28 }
29
30 private function prepareField($value)
31 {
32 $value = strtoupper(replace_accent($value));
33 return preg_replace('/[^A-Z]/', ' ', $value);
34 }
35
36 public function value(ProfilePage &$page, $field, $value, &$success)
37 {
38 $success = true;
39 $current = S::v($field);
40 $init = S::v($field . '_ini');
41 if (is_null($value)) {
42 return $current;
43 }
44 if ($value == $current || $value == $init) {
45 return $value;
46 }
47 $ini = $this->prepareField($init);
48 $old = $this->prepareField($current);
49 $new = $this->prepareField($value);
50 $newLen = strlen($new);
51 $success = $this->matchWord($old, $new, $newLen)
3f89a071
FB
52 || $this->matchWord($ini, $new, $newLen)
53 || ($field == 'nom' && $new == 'DE ' . $old);
fd38b30e
FB
54 if (!$success) {
55 global $page;
56 $page->trig("Le $field que tu as choisi ($value) est trop loin de ton $field initial ($init)"
57 . (($init == $current)? "" : " et de ton prénom précédent ($current)"));
58 }
59 return $success ? $value : $current;
60 }
61
62 public function save(ProfilePage &$page, $field, $new_value)
63 {
64 $_SESSION[$field] = $new_value;
65 }
66}
67
576777d7
FB
68class ProfileAppli implements ProfileSetting
69{
70 public function value(ProfilePage &$page, $field, $value, &$success)
71 {
72 $success = true;
73 if (is_null($value)) {
74 return $page->values[$field];
75 }
76 return $value;
77 }
78
79 public function save(ProfilePage &$page, $field, $new_value)
80 {
81 $index = ($field == 'appli1' ? 0 : 1);
82 if ($new_value['id'] > 0) {
83 XDB::execute("REPLACE INTO applis_ins
84 SET uid = {?}, aid = {?}, type = {?}, ordre = {?}",
85 S::i('uid'), $new_value['id'], $new_value['type'], $index);
86 } else {
87 XDB::execute("DELETE FROM applis_ins
88 WHERE uid = {?} AND ordre = {?}",
89 S::i('uid'), $index);
90 }
91 }
92}
93
fd38b30e
FB
94class ProfileGeneral extends ProfilePage
95{
96 protected $pg_template = 'profile/general.tpl';
97
98 public function __construct(PlWizard &$wiz)
99 {
100 parent::__construct($wiz);
101 $this->settings['nom'] = $this->settings['prenom']
102 = new ProfileNom();
7bff4cb0 103 $this->settings['naissance'] = new ProfileDate();
93553cea
FB
104 $this->settings['mobile_pub']
105 = $this->settings['web_pub']
106 = $this->settings['freetext_pub']
576777d7 107 = $this->settings['photo_pub']
93553cea
FB
108 = new ProfilePub();
109 $this->settings['freetext']
576777d7 110 = $this->settings['nationalite']
93553cea
FB
111 = $this->settings['nick']
112 = null;
576777d7
FB
113 $this->settings['synchro_ax']
114 = new ProfileBool();
93553cea
FB
115 $this->settings['mobile'] = new ProfileTel();
116 $this->settings['web'] = new ProfileWeb();
576777d7
FB
117 $this->settings['appli1']
118 = $this->settings['appli2']
119 = new ProfileAppli();
a2a1c2f2
FB
120 $this->watched= array('nom' => true, 'freetext' => true, 'mobile' => true, 'web' => true,
121 'appli1' => true, 'appli2' => true, 'nationalite' => true, 'nick' => true);
93553cea
FB
122 }
123
7c2e0f0d 124 protected function _fetchData()
93553cea 125 {
576777d7 126 // Checkout all data...
7bff4cb0 127 $res = XDB::query("SELECT u.promo, u.promo_sortie, u.nom_usage, u.nationalite, u.naissance,
93553cea
FB
128 q.profile_mobile as mobile, q.profile_mobile_pub as mobile_pub,
129 q.profile_web as web, q.profile_web_pub as web_pub,
130 q.profile_freetext as freetext, q.profile_freetext_pub as freetext_pub,
576777d7 131 q.profile_nick as nick, q.profile_from_ax as synchro_ax, u.matricule_ax,
93553cea
FB
132 IF(a1.aid IS NULL, -1, a1.aid) as appli_id1, a1.type as appli_type1,
133 IF(a2.aid IS NULL, -1, a2.aid) as appli_id2, a2.type as appli_type2
134 FROM auth_user_md5 AS u
135 INNER JOIN auth_user_quick AS q USING(user_id)
136 LEFT JOIN applis_ins AS a1 ON(a1.uid = u.user_id and a1.ordre = 0)
137 LEFT JOIN applis_ins AS a2 ON(a2.uid = u.user_id and a2.ordre = 1)
138 WHERE u.user_id = {?}", S::v('uid', -1));
139 $this->values = $res->fetchOneAssoc();
576777d7
FB
140
141 // Reformat formation data
142 $this->values['appli1'] = array('id' => $this->values['appli_id1'],
143 'type' => $this->values['appli_type1']);
144 unset($this->values['appli_id1']);
145 unset($this->values['appli_type1']);
146 $this->values['appli2'] = array('id' => $this->values['appli_id2'],
147 'type' => $this->values['appli_type2']);
148 unset($this->values['appli_id2']);
149 unset($this->values['appli_type2']);
150
151 // Retreive photo informations
152 $res = XDB::query("SELECT pub
153 FROM photo
154 WHERE uid = {?}", S::v('uid'));
155 $this->values['photo_pub'] = $res->fetchOneCell();
156
157 $res = XDB::query("SELECT COUNT(*)
158 FROM requests
159 WHERE type='photo' AND user_id = {?}",
160 S::v('uid'));
161 $this->values['nouvellephoto'] = $res->fetchOneCell();
93553cea
FB
162 }
163
7c2e0f0d 164 protected function _saveData()
93553cea 165 {
7bff4cb0
FB
166 if ($this->changed['nationalite'] || $this->changed['nom'] || $this->changed['prenom']
167 || $this->changed['naissance']) {
576777d7 168 XDB::execute("UPDATE auth_user_md5
7bff4cb0 169 SET nationalite = {?}, nom={?}, prenom={?}, naissance={?}
a7c28fff 170 WHERE user_id = {?}",
7bff4cb0
FB
171 $this->values['nationalite'], $this->values['nom'], $this->values['prenom'],
172 preg_replace('@(\d{2})/(\d{2})/(\d{4})@', '\3-\2-\1', $this->values['naissance']),
173 S::v('uid'));
576777d7
FB
174 }
175 if ($this->changed['nick'] || $this->changed['mobile'] || $this->changed['mobile_pub']
176 || $this->changed['web'] || $this->changed['web_pub'] || $this->changed['freetext']
177 || $this->changed['freetext_pub'] || $this->changed['synchro_ax']) {
178 XDB::execute("UPDATE auth_user_quick
179 SET profile_nick= {?}, profile_mobile={?}, profile_mobile_pub={?},
180 profile_web={?}, profile_web_pub={?}, profile_freetext={?},
181 profile_freetext_pub={?}, profile_from_ax = {?}
182 WHERE user_id = {?}",
183 $this->values['nick'], $this->values['mobile'], $this->values['mobile_pub'],
184 $this->values['web'], $this->values['web_pub'],
185 $this->values['freetext'], $this->values['freetext_pub'],
186 $this->values['synchro_ax'], S::v('uid'));
187 }
188 if ($this->changed['nick']) {
189 require_once('user.func.inc.php');
190 user_reindex(S::v('uid'));
191 }
a7c28fff
FB
192 if ($this->changed['photo_pub']) {
193 XDB::execute("UPDATE photo
194 SET pub = {?}
195 WHERE uid = {?}",
196 $this->values['photo_pub'], S::v('uid'));
197 }
fd38b30e
FB
198 }
199
7c2e0f0d 200 public function _prepare(PlatalPage &$page, $id)
fd38b30e 201 {
fd38b30e
FB
202 require_once "applis.func.inc.php";
203 }
204}
205
206// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
207?>