X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=modules%2Fregister%2Fregister.inc.php;h=6ac78ad17365392744527f873a9e6d208fc922a5;hb=89cb2025f5f2aed0be3994c89ac473aa11535853;hp=e1a98c98b87eb0b1ccaff628db2b7264c756b3da;hpb=316b40d60daacd3aa3b480ccba0db6a3d97c093b;p=platal.git diff --git a/modules/register/register.inc.php b/modules/register/register.inc.php index e1a98c9..6ac78ad 100644 --- a/modules/register/register.inc.php +++ b/modules/register/register.inc.php @@ -1,6 +1,6 @@ fetchOneCell() > 0) { - return "Tu as un homonyme dans ta promo, il faut traiter ce cas manuellement.
". - "envoie un mail à mail->domain}\">" . - "support@{$globals->mail->domain} en expliquant ta situation."; + $res = XDB::query("SELECT hruid FROM auth_user_md5 WHERE user_id = {?}", $uid); + if ($res->numRows() == 0) { + return "Tu n'as pas d'adresse à vie pré-attribuée.
" + . "Envoie un mail à mail->domain}\">" + . "support@{$globals->mail->domain} en expliquant ta situation."; + } else { + // TODO: at the moment forlife == hruid, however we'll have to change + // that behaviour when masters will be on plat/al. + $forlife = $res->fetchOneCell(); } - $res = XDB::query('SELECT id, type, expire FROM aliases WHERE alias={?}', $mailorg); - - if ( $res->numRows() ) { - + $res = XDB::query('SELECT id, type, expire FROM aliases WHERE alias={?}', $mailorg); + if ($res->numRows()) { list($h_id, $h_type, $expire) = $res->fetchOneRow(); - - if ( $h_type != 'homonyme' and empty($expire) ) { + if ($h_type != 'homonyme' and empty($expire)) { XDB::execute('UPDATE aliases SET expire=ADDDATE(NOW(),INTERVAL 1 MONTH) WHERE alias={?}', $mailorg); XDB::execute('REPLACE INTO homonymes (homonyme_id,user_id) VALUES ({?},{?})', $h_id, $h_id); XDB::execute('REPLACE INTO homonymes (homonyme_id,user_id) VALUES ({?},{?})', $h_id, $uid); @@ -182,7 +182,7 @@ function create_aliases (&$sub) "Bonjour,\n\n". "Un homonyme vient de s'inscrire. La politique de Polytechnique.org est de fournir des\n". - "adresses mail devinables, nous ne pouvons donc pas conserver ton alias '$mailorg' qui\n". + "adresses email devinables, nous ne pouvons donc pas conserver ton alias '$mailorg' qui\n". "correspond maintenant à deux personnes.\n\n". "Tu gardes tout de même l'usage de cet alias pour un mois encore à compter de ce jour.\n\n". @@ -225,10 +225,9 @@ function finish_ins($sub_state) { global $globals; extract($sub_state); - require_once('secure_hash.inc.php'); $pass = rand_pass(); - $pass_encrypted = hash_encrypt($pass); + $pass_encrypted = sha1($pass); $hash = rand_url_id(12); XDB::execute('UPDATE auth_user_md5 SET last_known_email={?} WHERE matricule = {?}', $email, $mat);