Updates ChangeLog (Closes #1491).
[platal.git] / modules / register / register.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
e4860774 22// {{{ function strongCheckId
0337d704 23
e4860774 24function strongCheckId($subState)
0337d704 25{
94590511
SJ
26 $subState->set('xorgid', Profile::getXorgId($subState->i('schoolid')));
27 if (!$subState->v('xorgid')) {
28 return 'Le matricule est incorrect.';
0337d704 29 }
30
94590511 31 $uf = new UserFilter(new PFC_And(
16c709a0 32 new UFC_SchoolId('xorg', $subState->i('xorgid')),
f09bdd3d
FB
33 new PFC_Not(new UFC_Dead()),
34 new PFC_Not(new UFC_Registered(true))
94590511 35 ));
4b0cf4e4 36 $profile = $uf->getProfile();
f09bdd3d 37 if (is_null($profile)) {
94590511
SJ
38 return "Tu es déjà inscrit ou ton matricule est incorrect !";
39 }
f09bdd3d 40
4b0cf4e4 41 if ($profile->promo() != $subState->s('promo')) {
94590511
SJ
42 return 'Le matricule est incorrect.';
43 }
0337d704 44
4b0cf4e4 45 if (!$profile->compareNames($subState->s('firstname'), $subState->s('lastname'))) {
94590511 46 return "Erreur dans l'identification. Réessaie, il y a une erreur quelque part !";
0337d704 47 }
48
4b0cf4e4
SJ
49 $subState->set('lastname', $profile->lastName());
50 $subState->set('firstname', $profile->firstName());
51 $subState->set('uid', $profile->owner()->id());
52 $subState->set('watch', $profile->owner()->watch);
53 $subState->set('birthdateRef', $profile->__get('birthdate_ref'));
0337d704 54 return true;
55}
56
57// }}}
e4860774 58// {{{ function weakCheckId
0337d704 59
e4860774 60function weakCheckId($subState)
0337d704 61{
94590511
SJ
62 $uf = new UserFilter(new PFC_And(
63 new PFC_Not(new UFC_Dead()),
e4860774 64 new UFC_Promo('=', $subState->s('edu_type'), $subState->s('yearpromo')),
94590511
SJ
65 new PFC_Not(new UFC_Registered(true))
66 ));
1ee74a83
SJ
67 if ($it = $uf->iterProfiles()) {
68 while ($profile = $it->next()) {
69 if ($profile->compareNames($subState->s('firstname'), $subState->s('lastname'))) {
70 $subState->set('lastname', $profile->lastName());
71 $subState->set('firstname', $profile->firstName());
72 $subState->set('uid', $profile->owner()->id());
73 $subState->set('watch', $profile->owner()->watch);
74 $subState->set('birthdateRef', $profile->__get('birthdate_ref'));
75 $subState->set('xorgid', $profile->__get('xorg_id'));
76 return true;
77 }
0337d704 78 }
79 }
80
94590511
SJ
81 $uf = new UserFilter(new PFC_And(
82 new PFC_Not(new UFC_Dead()),
e4860774 83 new UFC_Promo('=', $subState->s('edu_type'), $subState->s('yearpromo')),
94590511
SJ
84 new UFC_Registered(true)
85 ));
1ee74a83
SJ
86 if ($it = $uf->iterProfiles()) {
87 while ($profile = $it->next()) {
88 if ($profile->compareNames($subState->s('firstname'), $subState->s('lastname'))) {
89 $subState->set('uid', $profile->owner()->id());
90 $subState->set('watch', $profile->owner()->watch);
91 $subState->set('birthdateRef', $profile->__get('birthdate_ref'));
92 $subState->set('xorgid', $profile->__get('xorg_id'));
93 return 'Tu es vraisemblablement déjà inscrit !';
94 }
0337d704 95 }
96 }
94590511 97 return 'Erreur : vérifie que tu as bien orthographié ton nom !';
0337d704 98}
99
100// }}}
94590511 101// {{{ function checkNewUser
0337d704 102
26ba053e 103function checkNewUser($subState)
0337d704 104{
94590511
SJ
105 $firstname = preg_replace("/[ \t]+/", ' ', $subState->t('firstname'));
106 $firstname = preg_replace("/--+/", '-', $firstname);
107 $firstname = preg_replace("/''+/", '\'', $firstname);
108 $subState->set('firstname', PlUser::fixFirstnameCase($firstname));
109
110 $lastname = preg_replace("/[ \t]+/", ' ', $subState->t('lastname'));
111 $lastname = preg_replace("/--+/", '-', $lastname);
112 $lastname = preg_replace("/''+/", '\'', $lastname);
113 $subState->set('lastname', mb_strtoupper($lastname));
114
e4860774
SJ
115 if ($subState->v('edu_type') == Profile::DEGREE_X && $subState->i('yearpromo') >= 1996) {
116 $res = strongCheckId($subState);
0337d704 117 } else {
e4860774 118 $res = weakCheckId($subState);
f0a52f1b 119 }
94590511
SJ
120 if ($res !== true) {
121 return $res;
0337d704 122 }
0337d704 123
124 return true;
125}
126
127// }}}
94590511 128// {{{ function createAliases
0337d704 129
26ba053e 130function createAliases($subState)
0337d704 131{
115c90db 132 global $globals;
0337d704 133
f0a52f1b 134 $res = XDB::query("SELECT hruid, state, type
94590511 135 FROM accounts
4c5a5921
FB
136 WHERE uid = {?} AND hruid != ''",
137 $subState->i('uid'));
56081a9c
VZ
138 if ($res->numRows() == 0) {
139 return "Tu n'as pas d'adresse à vie pré-attribuée.<br />"
4c5a5921 140 . "Envoie un mail à <a href=\"mailto:support@{$globals->mail->domain}\">"
56081a9c
VZ
141 . "support@{$globals->mail->domain}</a> en expliquant ta situation.";
142 } else {
f0a52f1b 143 list($forlife, $state, $type) = $res->fetchOneRow();
4c5a5921
FB
144 }
145 if ($state == 'active') {
146 return "Tu es déjà inscrit, si tu ne te souviens plus de ton mot de passe d'accès au site, "
147 . "tu peux suivre <a href=\"recovery\">la procédure de récupération de mot de passe</a>.";
148 } else if ($state == 'disabled') {
149 return "Ton compte a été désactivé par les administrateurs du site suite à des abus. "
150 . "Pour plus d'information ou pour demander la réactivation du compte, tu peux t'adresser à "
151 . "<a href=\"mailto:support@{$globals->mail->domain}\">support@{$globals->mail->domain}</a>.";
0337d704 152 }
eaf30d86 153
e4860774
SJ
154
155 $emailXorg = PlUser::makeUserName($subState->t('firstname'), $subState->t('lastname'));
156 $suffix = (User::$sub_mail_domains[$type] ? substr(User::$sub_mail_domains[$type], 0, 1) : '') . substr($subState->v('yearpromo'), -2);
157 $emailXorg2 = $emailXorg . '.' . $suffix;
f0a52f1b
SJ
158 $res = XDB::query('SELECT uid, expire
159 FROM email_source_account
160 WHERE email = {?} AND type != \'alias_aux\'',
161 $emailXorg);
162 if ($res->numRows()) {
f036c896
SJ
163 list($h_id, $expire) = $res->fetchOneRow();
164 if (empty($expire)) {
165 XDB::execute('UPDATE email_source_account
166 SET expire = ADDDATE(NOW(), INTERVAL 1 MONTH)
167 WHERE email = {?} AND type != \'alias_aux\'',
168 $emailXorg);
f88d9154 169 $hrmid = User::makeHomonymHrmid($emailXorg);
4371e993 170 XDB::execute('INSERT IGNORE INTO homonyms_list (hrmid, uid)
00ba8a74 171 VALUES ({?}, {?}), ({?}, {?})',
4371e993 172 $hrmid, $h_id, $hrmid, $subState->i('uid'));
f036c896
SJ
173 $als = XDB::fetchColumn('SELECT email
174 FROM email_source_account
175 WHERE uid = {?} AND type != \'alias_aux\' AND expire IS NULL',
176 $h_id);
0337d704 177
f036c896 178 $homonym = User::getSilentWithUID($h_id);
94590511 179 $mailer = new PlMailer('register/lostalias.mail.tpl');
f036c896 180 $mailer->addTo($homonym);
94590511
SJ
181 $mailer->setSubject("Perte de ton alias $emailXorg dans un mois !");
182 $mailer->assign('emailXorg', $emailXorg);
183 $mailer->assign('als', join(', ', $als));
0337d704 184 $mailer->SetTxtBody(wordwrap($msg,72));
185 $mailer->send();
186 }
187
94590511
SJ
188 $subState->set('forlife', $forlife);
189 $subState->set('bestalias', $emailXorg2);
190 $subState->set('emailXorg2', null);
0337d704 191 } else {
94590511
SJ
192 $subState->set('forlife', $forlife);
193 $subState->set('bestalias', $emailXorg);
194 $subState->set('emailXorg2', $emailXorg2);
0337d704 195 }
f0a52f1b 196 $subState->set('main_mail_domain', User::$sub_mail_domains[$type] . Platal::globals()->mail->domain);
0337d704 197
198 return true;
199}
200
201// }}}
94590511 202// {{{ function finishRegistration
0337d704 203
94590511 204function finishRegistration($subState)
0337d704 205{
206 global $globals;
0337d704 207
97a82cd2 208 $hash = rand_url_id(12);
b4b8ebbf
JPAMAJ
209 XDB::execute('INSERT INTO register_pending (uid, forlife, bestalias, mailorg2, password,
210 email, date, relance, naissance, hash, services)
211 VALUES ({?}, {?}, {?}, {?}, {?}, {?}, NOW(), 0, {?}, {?}, {?})
212 ON DUPLICATE KEY UPDATE password=VALUES(password), email=VALUES(email),
213 date=VALUES(date), naissance=VALUES(naissance),
214 hash=VALUES(hash), services=VALUES(services)',
94590511
SJ
215 $subState->i('uid'), $subState->s('forlife'), $subState->s('bestalias'),
216 $subState->s('emailXorg2'), $subState->s('password'), $subState->s('email'),
217 $subState->s('birthdate'), $hash, implode(',', $subState->v('services')));
218
219 $mymail = new PlMailer('register/end.mail.tpl');
220 $mymail->assign('emailXorg', $subState->s('bestalias'));
4b0cf4e4 221 $mymail->assign('to', $subState->s('email'));
0337d704 222 $mymail->assign('baseurl', $globals->baseurl);
94590511 223 $mymail->assign('hash', $hash);
f036c896 224 $mymail->assign('subject', ucfirst($globals->mail->domain) . ' : ' . $subState->s('bestalias'));
0337d704 225 $mymail->send();
226}
227
228// }}}
a7de4ef7 229// vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8:
0337d704 230?>