warning = $warning; parent::__construct($_user, true, $this->title()); $this->refuse = false; $this->loginbis = $_loginbis; $this->homonymes_hruid = $_homonymes_hruid; } // }}} // {{{ title() private function title() { return ($this->warning ? 'alerte alias' : 'robot répondeur'); } // }}} // {{{ function formu() public function formu() { return 'include/form.valid.homonymes.tpl'; } // }}} // {{{ function _mail_subj protected function _mail_subj() { global $globals; return "[Polytechnique.org/Support] " . ($this->warning ? "Dans une semaine : suppression de l'alias " : "Mise en place du robot") . " $loginbis@" . $globals->mail->domain; } // }}} // {{{ function _mail_body protected function _mail_body($isok) { global $globals; return " Comme nous t'en avons informé par email il y a quelques temps, pour respecter nos engagements en terme d'adresses email devinables, tu te verras bientôt retirer l'alias ".$this->loginbis."@".$globals->mail->domain." pour ne garder que " . $this->user->forlifeEmail() . ". Toute personne qui écrira à ".$this->loginbis."@".$globals->mail->domain." recevra la réponse d'un robot qui l'informera que ".$this->loginbis."@".$globals->mail->domain." est ambigu pour des raisons d'homonymie et signalera ton email exact."; } // }}} // {{{ function sendmail() protected function sendmail($isok) { if (!$isok) return false; global $globals; $mailer = new PlMailer; $cc = "support+homonyme@" . $globals->mail->domain; $from = "\"Support Polytechnique.org\" <$cc>"; $mailer->setSubject($this->_mail_subj()); $mailer->setFrom($from); $mailer->addTo("\"{$this->user->fullName()}\" <{$this->user->bestEmail()}>"); $mailer->addCc($cc); $body = $this->user->displayName() . ",\n\n" . $this->_mail_body($isok) . (Env::has('comm') ? "\n\n".Env::v('comm') : '') . "\n\nCordialement,\n\n-- \nL'équipe de Polytechnique.org\n"; $mailer->setTxtBody(wordwrap($body)); $mailer->send(); } // }}} // {{{ function commit() public function commit() { Platal::load('admin', 'homonyms.inc.php'); switch_bestalias($this->user, $this->loginbis); if (!$this->warning) { XDB::execute("UPDATE aliases SET type = 'homonyme', expire = NOW() WHERE alias = {?}", $this->loginbis); XDB::execute('INSERT IGNORE INTO homonyms (homonyme_id, uid) VALUES ({?}, {?})', $this->user->id(), $this->user->id()); } return true; } // }}} } // }}} // vim:set et sw=4 sts=4 sws=4 foldmethod=marker enc=utf-8: ?>