X-Git-Url: http://git.polytechnique.org/?a=blobdiff_plain;f=include%2Fmarketing.inc.php;h=7a5398943dd2c6f5258b3ca488076cdbfdc68362;hb=e0ee31204dbb8e43870716190e4549257416fcb8;hp=37657294426fca0e6a252976fa1df4e16f9339cb;hpb=0baf0741b59974981aced47c7196a7a319b7f3e8;p=platal.git diff --git a/include/marketing.inc.php b/include/marketing.inc.php index 3765729..7a53989 100644 --- a/include/marketing.inc.php +++ b/include/marketing.inc.php @@ -1,6 +1,6 @@ user = $this->getUser($uid, $email); $this->sender_mail = $this->getFrom($from, $sender); - $this->engine = $this->getEngine($type, $data, $from == 'user' ? null : $this->sender); + $this->engine =& $this->getEngine($type, $data, $from == 'user' ? $sender : null); $this->type = $type; $this->data = $data; $this->from = $from; - $this->sender = $sender; + $this->sender = $sender; } private function getUser($uid, $email) { - require_once("xorg.misc.inc.php"); - $res = XDB::query("SELECT FIND_IN_SET('femme', flags) AS sexe, nom, prenom, promo - FROM auth_user_md5 - WHERE user_id = {?}", $uid); - if ($res->numRows() == 0) { + $user = User::getSilent($uid); + if (!$user) { return null; - } - $user = $res->fetchOneAssoc(); - $user['id'] = $uid; - $user['forlife'] = make_forlife($user['prenom'], $user['nom'], $user['promo']); - $user['mail'] = $email; - $user['to'] = '"' . $user['prenom'] . ' ' . $user['nom'] . '" <' . $email . '>'; - return $user; + } + + global $globals; + return array( + 'user' => $user, + 'id' => $user->id(), + 'sexe' => $user->isFemale(), + 'mail' => $email, + 'to' => '"' . $user->fullName() . '" <' . $email . '>', + 'forlife_email' => $user->login() . '@' . $globals->mail->domain, + 'forlife_email2' => $user->login() . '@' . $globals->mail->domain2, + ); } private function getFrom($from, $sender) { - if ($from == 'staff') { - return '"Equipe Polytechnique.org" '; - } else { - $res = XDB::query("SELECT u.nom, u.prenom, a.alias - FROM auth_user_md5 AS u - INNER JOIN aliases AS a ON (a.id = u.user_id AND FIND_IN_SET('bestalias', a.flags)) - WHERE u.user_id = {?}", $sender); - if (!$res->numRows()) { - return '"Equipe Polytechnique.org" '; - } - $sender = $res->fetchOneAssoc(); - return '"' . $sender['prenom'] . ' ' . $sender['nom'] . '" <' . $sender['alias'] . '@polytechnique.org>'; + global $globals; + + if ($from == 'staff' || !($user = User::getSilent($sender))) { + return '"L\'équipe de Polytechnique.org" mail->domain . '>'; } + return '"' . $user->fullName() . '" <' . $user->bestEmail() . '>'; } - private function getEngine($type, $data, $from) + private function &getEngine($type, $data, $from) { $class = $type . 'Marketing'; if (!class_exists($class, false)) { $class= 'DefaultMarketing'; } - return new $class($data, $from); + $engine = new $class($data, $from); + if (!$engine instanceof MarketingEngine) { + $engine = null; + } + return $engine; } public function getTitle() @@ -136,8 +135,8 @@ class Marketing $this->engine->process($this->user); if ($valid) { require_once 'validations.inc.php'; - $valid = new MarkReq($this->sender, $this->user['id'], $this->user['mail'], - $this->from == 'user', $this->type, $this->data); + $valid = new MarkReq(User::getSilent($this->sender), $this->user['user'], $this->user['mail'], + $this->from == 'user', $this->type, $this->data); $valid->submit(); } return true; @@ -162,11 +161,14 @@ class Marketing return $array; } - static public function get($uid, $email) + static public function get($uid, $email, $recentOnly = false) { $res = XDB::query("SELECT uid, email, message, message_data, type, sender FROM register_marketing - WHERE uid = {?} AND email = {?}", $uid, $email); + WHERE uid = {?} + AND email = {?}".( + $recentOnly ? ' AND DATEDIFF(NOW(), last) < 30' : ''), $uid, $email); + if ($res->numRows() == 0) { return null; } @@ -179,7 +181,7 @@ class Marketing if (!$email) { XDB::execute("DELETE FROM register_marketing WHERE uid = {?}", $uid); } else { - XDB::execute("DELETE FROM register_marketing WHERE uid = {?} AND email = {?}", $uid, $email); + XDB::execute("DELETE FROM register_marketing WHERE uid = {?} AND email = {?}", $uid, $email); } } @@ -191,22 +193,24 @@ class Marketing $res = XDB::query("SELECT COUNT(*) FROM auth_user_md5 WHERE deces=0"); $nbx = $res->fetchOneCell(); } - + $res = XDB::query("SELECT r.date, u.promo, u.nom, u.prenom, r.email, r.bestalias FROM register_pending AS r INNER JOIN auth_user_md5 AS u ON u.user_id = r.uid - WHERE hash!='INSCRIT' AND uid={?} AND TO_DAYS(relance) < TO_DAYS(NOW())", $uid); + WHERE hash != 'INSCRIT' AND uid = {?} AND + (TO_DAYS(relance) IS NULL OR TO_DAYS(relance) < TO_DAYS(NOW()))", + $uid); if (!list($date, $promo, $nom, $prenom, $email, $alias) = $res->fetchOneRow()) { return false; } - + require_once('secure_hash.inc.php'); $hash = rand_url_id(12); $pass = rand_pass(); $pass_encrypted = hash_encrypt($pass); $fdate = strftime('%d %B %Y', strtotime($date)); - - $mymail = new PlMailer('marketing/mail.relance.tpl'); + + $mymail = new PlMailer('marketing/relance.mail.tpl'); $mymail->assign('nbdix', $nbx); $mymail->assign('fdate', $fdate); $mymail->assign('lusername', $alias); @@ -218,7 +222,7 @@ class Marketing $mymail->send(); XDB::execute('UPDATE register_pending SET hash={?}, password={?}, relance=NOW() - WHERE uid={?}', $hash, $pass_encrypted, $uid); + WHERE uid={?}', $hash, $pass_encrypted, $uid); return "$prenom $nom ($promo)"; } } @@ -231,18 +235,25 @@ interface MarketingEngine public function process(array $user); } -// +// class AnnuaireMarketing implements MarketingEngine { protected $titre; protected $intro; + protected $signature; public function __construct($data, $from) { - $this->titre = "Annuaire en ligne des Polytechniciens"; - $this->intro = " Ta fiche n'est pas à jour dans l'annuaire des Polytechniciens sur Internet. " - . "Pour la mettre à jour, il te it de visiter cette page ou de copier cette adresse " + $this->titre = "Rejoins la communauté polytechnicienne sur Internet"; + $this->intro = " Tu n'as pas de fiche dans l'annuaire des polytechniciens sur Internet. " + . "Pour y figurer, il te suffit de visiter cette page ou de copier cette adresse " . "dans la barre de ton navigateur :"; + if ($from === null) { + $this->signature = "L'équipe de Polytechnique.org,\n" + . "Le portail des élèves & anciens élèves de l'École polytechnique"; + } else { + $this->signature = "%%sender%%"; + } } public function getTitle() @@ -255,17 +266,24 @@ class AnnuaireMarketing implements MarketingEngine return $this->intro; } - protected function prepareText(PlatalPage &$page, array $user) + public function getSignature() + { + return $this->signature; + } + + protected function prepareText(PlPage &$page, array $user) { $page->assign('intro', $this->getIntro()); $page->assign('u', $user); + $page->assign('sign', $this->getSignature()); $res = XDB::query("SELECT COUNT(*) FROM auth_user_md5 WHERE perms IN ('user', 'admin') AND deces = 0"); $page->assign('num_users', $res->fetchOneCell()); } public function getText(array $user) { - $page = new PlatalPage('marketing/mail.marketing.tpl', NO_SKIN); + $page = new XorgPage(); + $page->changeTpl('marketing/marketing.mail.tpl', NO_SKIN); $this->prepareText($page, $user); return $page->raw(); } @@ -282,32 +300,28 @@ class ListMarketing extends AnnuaireMarketing public function __construct($data, $from) { list($this->name, $this->domain) = explode('@', $data); - $res = XDB::query("SELECT prenom, IF (nom_usage != '', nom_usage, nom) - FROM auth_user_md5 - WHERE user_id = {?} AND user_id != 0", $from ? $from : 0); - if ($res->numRows()) { - list($prenom, $nom) = $res->fetchOneRow(); - $from = "$prenom $nom"; + if ($from && ($user = User::getSilent($from))) { + $from = $user->fullName(); } else { $from = "Je"; } $this->titre = "Un camarade solicite ton inscription à $data"; - $this->intro = "Polytechnique.org, l'annuaire des Polytechniciens sur internet, " - . "fournit de nombreux services aux groupes X, ainsi que des listes " - . "de diffusion pour les X en faisant la demande.\n\n" - . "$from solicite ton inscription à la liste <$data>. " - . "Cependant, seuls les X inscrits sur Polytechnique.org peuvent " - . "profiter de l'ensemble de nos services, c'est pourquoi nous te " - . "proposons auparavant de t'inscrire sur notre site. Pour cela, il " - . "te suffit de visiter cette page ou de copier cette adresse dans " - . "la barre de ton navigateur :"; + $this->intro = "Polytechnique.org, l'annuaire des polytechniciens sur internet, " + . "fournit de nombreux services aux groupes X, ainsi que des listes " + . "de diffusion pour les X en faisant la demande.\n\n" + . "$from solicite ton inscription à la liste <$data>. " + . "Cependant, seuls les X inscrits sur Polytechnique.org peuvent " + . "profiter de l'ensemble de nos services, c'est pourquoi nous te " + . "proposons auparavant de t'inscrire sur notre site. Pour cela, il " + . "te suffit de visiter cette page ou de copier cette adresse dans " + . "la barre de ton navigateur :"; } public function process(array $user) { return XDB::execute("REPLACE INTO register_subs (uid, type, sub, domain) - VALUES ({?}, 'list', {?}, {?})", - $user['id'], $this->name, $this->domain); + VALUES ({?}, 'list', {?}, {?})", + $user['id'], $this->name, $this->domain); } } @@ -317,31 +331,27 @@ class GroupMarketing extends AnnuaireMarketing public function __construct($data, $from) { $this->group = $data; - $res = XDB::query("SELECT prenom, IF (nom_usage != '', nom_usage, nom) - FROM auth_user_md5 - WHERE user_id = {?} AND user_id != 0", $from ? $from : 0); - if ($res->numRows()) { - list($prenom, $nom) = $res->fetchOneRow(); - $from = "$prenom $nom vient"; + if ($from && ($user = User::getSilent($from))) { + $from = $user->fullName() . " vient"; } else { $from = "Je viens"; } $this->titre = "Profite de ton inscription au groupe \"$data\" pour découvrir Polytechnique.org"; - $this->intro = "Polytechnique.org, l'annuaire des Polytechniciens sur internet, fournit " - . "de nombreux services aux groupes X ( listes de diffusion, paiement en " - . "ligne, sites internet...), en particulier pour le groupe \"$data\"\n\n" - . "$from de t'inscrire dans l'annuaire du groupe \"$data\". " - . "Cependant, seuls les X inscrits sur Polytechnique.org peuvent profiter " - . "de l'ensemble de nos services, c'est pourquoi nous te proposons de " - . "t'inscrire sur notre site . Pour cela, il te suffit de visiter cette page " - . "ou de copier cette adresse dans la barre de ton navigateur :"; + $this->intro = "Polytechnique.org, l'annuaire des polytechniciens sur internet, fournit " + . "de nombreux services aux groupes X ( listes de diffusion, paiement en " + . "ligne, sites internet...), en particulier pour le groupe \"$data\"\n\n" + . "$from de t'inscrire dans l'annuaire du groupe \"$data\". " + . "Cependant, seuls les X inscrits sur Polytechnique.org peuvent profiter " + . "de l'ensemble de nos services, c'est pourquoi nous te proposons de " + . "t'inscrire sur notre site . Pour cela, il te suffit de visiter cette page " + . "ou de copier cette adresse dans la barre de ton navigateur :"; } public function process(array $user) { return XDB::execute("REPLACE INTO register_subs (uid, type, sub, domain) - VALUES ({?}, 'group', {?}, '')", - $user['id'], $this->group); + VALUES ({?}, 'group', {?}, '')", + $user['id'], $this->group); } }