Show user's melix in administration page
[platal.git] / include / emails.inc.php
index d1044c9..a87bb7c 100644 (file)
@@ -39,9 +39,9 @@ function fix_bestalias($uid)
     }
     XDB::execute("UPDATE  aliases
                                SET  flags=CONCAT(flags,',','bestalias')
-                            WHERE  id={?} AND type!='homonyme'
-                         ORDER BY  !FIND_IN_SET('usage',flags),alias LIKE '%.%', LENGTH(alias)
-                            LIMIT  1", $uid);
+                 WHERE  id={?} AND type!='homonyme'
+                  ORDER BY  !FIND_IN_SET('usage',flags),alias LIKE '%.%', LENGTH(alias)
+                     LIMIT  1", $uid);
 }
 
 // }}}
@@ -77,14 +77,17 @@ class Bogo
 
     function Bogo($uid)
     {
-       $res = XDB::query('SELECT email FROM emails WHERE uid={?} AND flags="filter"', $uid);
-       if ($res->numRows()) {
-            $this->state = $res->fetchOneCell();
-       } else {
-           $this->state = 'tag_and_drop_spams';
-           $res = XDB::query("INSERT INTO emails (uid,email,rewrite,panne,flags)
-                                             VALUES ({?},'tag_and_drop_spams','','0000-00-00','filter')", $uid);
-       }
+        if (!$uid) {
+            return;
+        }
+        $res = XDB::query('SELECT email FROM emails WHERE uid={?} AND flags="filter"', $uid);
+        if ($res->numRows()) {
+                $this->state = $res->fetchOneCell();
+        } else {
+            $this->state = 'tag_and_drop_spams';
+            $res = XDB::query("INSERT INTO emails (uid,email,rewrite,panne,flags)
+                                    VALUES ({?},'tag_and_drop_spams','','0000-00-00','filter')", $uid);
+        }
     }
 
     // }}}
@@ -92,8 +95,8 @@ class Bogo
 
     function change($uid, $state)
     {
-       $this->state = is_int($state) ? $this->_states[$state] : $state;
-       XDB::execute('UPDATE emails SET email={?} WHERE uid={?} AND flags = "filter"',
+    $this->state = is_int($state) ? $this->_states[$state] : $state;
+    XDB::execute('UPDATE emails SET email={?} WHERE uid={?} AND flags = "filter"',
                      $this->state, $uid);
     }
 
@@ -119,13 +122,14 @@ class Email
     var $rewrite;
     var $panne;
     var $last;
+    var $panne_level;
 
     // }}}
     // {{{ constructor
 
     function Email($row)
     {
-        list($this->email, $flags, $this->rewrite, $this->panne, $this->last) = $row;
+        list($this->email, $flags, $this->rewrite, $this->panne, $this->last, $this->panne_level) = $row;
         $this->active = ($flags == 'active');
         $this->broken = ($flags == 'panne');
     }
@@ -140,7 +144,7 @@ class Email
                              SET  panne_level = IF(flags = 'panne', panne_level - 1, panne_level),
                                   flags = 'active'
                            WHERE  uid={?} AND email={?}", $uid, $this->email);
-           $_SESSION['log']->log("email_on", $this->email.($uid!=S::v('uid') ? "(admin on $uid)" : ""));
+        $_SESSION['log']->log("email_on", $this->email.($uid!=S::v('uid') ? "(admin on $uid)" : ""));
             $this->active = true;
             $this->broken = false;
         }
@@ -153,8 +157,8 @@ class Email
     {
         if ($this->active) {
             XDB::execute("UPDATE  emails SET flags =''
-                                    WHERE  uid={?} AND email={?}", $uid, $this->email);
-           $_SESSION['log']->log("email_off",$this->email.($uid!=S::v('uid') ? "(admin on $uid)" : "") );
+                     WHERE  uid={?} AND email={?}", $uid, $this->email);
+            $_SESSION['log']->log("email_off",$this->email.($uid!=S::v('uid') ? "(admin on $uid)" : "") );
             $this->active = false;
         }
     }
@@ -164,12 +168,12 @@ class Email
 
     function rewrite($rew, $uid)
     {
-       if ($this->rewrite == $rew) {
+        if ($this->rewrite == $rew) {
             return;
         }
-       XDB::execute('UPDATE emails SET rewrite={?} WHERE uid={?} AND email={?}', $rew, $uid, $this->email);
-       $this->rewrite = $rew;
-       return;
+        XDB::execute('UPDATE emails SET rewrite={?} WHERE uid={?} AND email={?}', $rew, $uid, $this->email);
+        $this->rewrite = $rew;
+        return;
     }
 
     // }}}
@@ -192,15 +196,15 @@ class Redirect
 
     function Redirect($_uid)
     {
-       $this->uid=$_uid;
+        $this->uid=$_uid;
         $res = XDB::iterRow("
-           SELECT email, flags, rewrite, panne, last
-             FROM emails WHERE uid = {?} AND flags != 'filter'", $_uid);
-       $this->emails=Array();
+            SELECT email, flags, rewrite, panne, last, panne_level
+              FROM emails WHERE uid = {?} AND flags != 'filter'", $_uid);
+        $this->emails=Array();
         while ($row = $res->next()) {
-           $this->emails[] = new Email($row);
+            $this->emails[] = new Email($row);
         }
-       $this->bogo = new Bogo($_uid);
+        $this->bogo = new Bogo($_uid);
     }
 
     // }}}
@@ -226,11 +230,11 @@ class Redirect
         }
         XDB::execute('DELETE FROM emails WHERE uid={?} AND email={?}', $this->uid, $email);
         $_SESSION['log']->log('email_del',$email.($this->uid!=S::v('uid') ? " (admin on {$this->uid})" : ""));
-       foreach ($this->emails as $i=>$mail) {
-           if ($email==$mail->email) {
+        foreach ($this->emails as $i=>$mail) {
+            if ($email==$mail->email) {
                 unset($this->emails[$i]);
             }
-       }
+        }
         return SUCCESS;
     }
 
@@ -247,15 +251,35 @@ class Redirect
             return ERROR_LOOP_EMAIL;
         }
         XDB::execute('REPLACE INTO emails (uid,email,flags) VALUES({?},{?},"active")', $this->uid, $email);
-       if ($logger = S::v('log', null)) { // may be absent --> step4.php
-           $logger->log('email_add',$email.($this->uid!=S::v('uid') ? " (admin on {$this->uid})" : ""));
+        if ($logger = S::v('log', null)) { // may be absent --> step4.php
+            $logger->log('email_add',$email.($this->uid!=S::v('uid') ? " (admin on {$this->uid})" : ""));
         }
-       foreach ($this->emails as $mail) {
-           if ($mail->email == $email_stripped) {
+        foreach ($this->emails as $mail) {
+            if ($mail->email == $email_stripped) {
                 return SUCCESS;
             }
-       }
+        }
         $this->emails[] = new Email(array($email,1,'','0000-00-00'));
+
+        // security stuff
+        $res = XDB::query("SELECT state, description
+                             FROM emails_watch
+                            WHERE state != 'safe' AND email = {?}", $email);
+        if ($res->numRows()) {
+            $row = $res->fetchOneAssoc();
+            $message = "L'email $email vient d'être ajouté aux redirections de ". S::v('forlife')
+                     . ". Cette adresse est surveillée avec l'état *" . $row['state']
+                     . "* et la description :\n" . $row['description'];
+            $message = wordwrap($message);
+            $mailer = new PlMailer();
+            $mailer->setFrom("webmaster@polytechnique.org");
+            $mailer->addTo("hotliners@staff.polytechnique.org");
+            $mailer->setSubject("ALERTE LORS DE L'AJOUT DE REDIRECTION de "
+                . S::v('prenom') . ' ' . S::v('nom') . '(' . S::v('promo') . ')');
+            $mailer->setTxtBody($message
+                . "\n\nInformations de connexion :\n" . var_export($_SERVER, true));
+            $mailer->send();
+        } 
         return SUCCESS;
     }
 
@@ -264,27 +288,47 @@ class Redirect
 
     function modify_email($emails_actifs,$emails_rewrite)
     {
-       foreach ($this->emails as $i=>$mail) {
+        foreach ($this->emails as $i=>$mail) {
             if (in_array($mail->email,$emails_actifs)) {
                 $this->emails[$i]->activate($this->uid);
-           } else {
+            } else {
                 $this->emails[$i]->deactivate($this->uid);
-           }
-           $this->emails[$i]->rewrite($emails_rewrite[$mail->email], $this->uid);
+            }
+            $this->emails[$i]->rewrite($emails_rewrite[$mail->email], $this->uid);
         }
     }
 
     function modify_one_email($email, $activate) {
+        $allinactive = true;
+        $thisone = false;
         foreach ($this->emails as $i=>$mail) {
             if ($mail->email == $email) {
-                if ($activate)
-                    $this->emails[$i]->activate($this->uid);
-                else
-                    $this->emails[$i]->deactivate($this->uid);
+                $thisone = $i;
             }
+            $allinactive &= !$mail->active || $mail->email == $email;
         }
+        if ($thisone === false) {
+            return ERROR_INVALID_EMAIL;
+        }
+        if ($allinactive || $activate)
+            $this->emails[$thisone]->activate($this->uid);
+        else
+            $this->emails[$thisone]->deactivate($this->uid);
+        if ($allinactive && !$activate) {
+            return ERROR_INACTIVE_REDIRECTION;
+        } else {
+            return SUCCESS;
+        } 
     }
 
+       function modify_one_email_redirect($email, $redirect) {
+               foreach ($this->emails as $i=>$mail) {
+                       if ($mail->email == $email) {
+                               $this->emails[$i]->rewrite($redirect, $this->uid);
+                               return;
+                       }
+               }
+       }
     // }}}
 }