'formater' -> 'formatter'
[euphorik.git] / js / pageAdmin.js
index 93b94d5..6b1819d 100644 (file)
 // coding: utf-8
+// Copyright 2008 Grégory Burri
+//
+// This file is part of Euphorik.
+//
+// Euphorik is free software: you can redistribute it and/or modify
+// it under the terms of the GNU General Public License as published by
+// the Free Software Foundation, either version 3 of the License, or
+// (at your option) any later version.
+//
+// Euphorik is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+// GNU General Public License for more details.
+//
+// You should have received a copy of the GNU General Public License
+// along with Euphorik.  If not, see <http://www.gnu.org/licenses/>.
+//
+// La page d'administation, ne peut être accédée que par les ekMaster (admins)
 
-function PageAdmin(client, formateur, util)
-{
-   this.nom = "admin"
-   
-   this.client = client
-   this.formateur = formateur
-   this.util = util
-}
-
-PageAdmin.prototype.contenu = function()
-{
-   return '<h1>Trolls</h1>\
-   <form id="nouveauTroll"><p>Nouveau troll\
-      <input class="troll" name="troll" type="text" size="80" maxlength="500" value=""></input>\
-      <button class="return" value="return">poster</button>\
-   </p></form><div id="trolls"></div>'
-}
-
-PageAdmin.prototype.charger = function()
-{      
-   $("#page form#nouveauTroll").submit(function(){return false})
-      
-   var thisPage = this
-   
-   this.trolls = new Trolls(this.util)
-   this.trolls.rafraichirTrolls()
-   
-   $("#page form#nouveauTroll button.return").click(
-      function()
-      {         
+/*jslint laxbreak:true */
+
+
+euphorik.PageAdmin = function(client, formatter, util, communication) {
+   this.name = "admin";
+
+   this.client = client;
+   this.formatter = formatter;
+   this.util = util;
+   this.communication = communication;
+
+   this.comet = this.communication.createCometConnection("admin");
+
+   // a timer which will periodically refresh the banned IP list
+   this.timeoutIDmajIPs = null;
+};
+
+/**
+  * Interface des pages.
+  */
+euphorik.PageAdmin.prototype.contenu = function() {
+   return '<h1>IPs bannies</h1><div id="ips"></div>';
+};
+
+/**
+  * Interface des pages.
+  */
+euphorik.PageAdmin.prototype.charger = function() {
+   var thisPage = this;
+
+   this.waitEvent();
+
+   this.majIPs();
+};
+
+/**
+  * Interface des pages.
+  */
+euphorik.PageAdmin.prototype.decharger = function() {
+   this.comet.stopAttenteCourante();
+
+   // supprime le rafraichissement période des ips
+   if (this.timeoutIDmajIPs) {
+      clearTimeout(this.timeoutIDmajIPs);
+   }
+};
+
+/**
+  * Met à jour la liste des IP bannies.
+  */
+euphorik.PageAdmin.prototype.majIPs = function() {
+   if (this.timeoutIDmajIPs) {
+      clearTimeout(this.timeoutIDmajIPs);
+   }
+
+   var thisPageAdmin = this;
+
+   this.communication.requete(
+      "list_banned_ips",
+      {"cookie" : this.client.cookie},
+      function(data) {
+         var XHTML = "";
+         data.list.each(function(i, ip) {
+            XHTML += '<div class="ban"><span class="ip">' + ip.ip + '</span>|' +
+               '<span class="temps">' +
+               ip.remaining_time +
+               '</span>|';
+            ip.users.each(function(j, user) {
+               XHTML += (j > 0 ? ", " : "") +
+                  '<span class="nick">' + thisPageAdmin.formatter.completeProcessing(user.nick) + '</span>' +
+                  (user.login === "" ? "" : '<span class="login">(' + thisPageAdmin.formatter.completeProcessing(user.login) + ')</span>');
+            });
+            XHTML += '<span class="deban">débannir</span></div>';
+         });
+
+         if (data.list.length === 0) {
+            XHTML += '<p>Aucune IP bannie</p>';
+         }
+
+         $("#ips").html(XHTML);
+
+         $(".ban").each(function() {
+            var ip = $(".ip", this).html();
+            $(".deban", this).click(
+               function() {
+                  thisPageAdmin.util.messageDialog("Êtes-vous sur de vouloir débannir l'IP ''" + ip + "'' ?", euphorik.Util.messageType.question,
+                     {"Oui" : function() {
+                           thisPageAdmin.deban(ip);
+                        },
+                      "Non" : function(){}
+                     }
+                  );
+               }
+            );
+         });
+
+         // rafraichissement toutes les minutes (je sais c'est mal)
+         // le problème est le rafraichissement des temps restant de bannissement qui doit être fait du coté client
+         thisPageAdmin.timeoutIDmajIPs = setTimeout(function(){ thisPageAdmin.majIPs(); }, 60 * 1000);
       }
-   )
-}
-
-PageAdmin.prototype.decharger = function()
-{
-   this.trolls.pageEvent.stopAttenteCourante()
-}
-
-
-///////////////////////////////////////////////////////////////////////////////////////////////////
-
-function Trolls(util)
-{
-   this.util = util
-   this.dernierTroll = 0
-   this.pageEvent = new PageEvent("admin", this.util)
-}
-
-Trolls.prototype.rafraichirTrolls = function()
-{
-   var thisTrolls = this
-         
-   this.pageEvent.waitEvent(
-      function() { return { "last_troll" : thisTrolls.dernierTroll }},
-      function(data)
+   );
+};
+
+/**
+  * Débannie une ip donnée.
+  */
+euphorik.PageAdmin.prototype.deban = function(ip) {
+   var thisPageAdmin = this;
+
+   this.communication.requete(
+      "unban",
+      {"cookie" : this.client.cookie, "ip" : ip}
+   );
+};
+
+/**
+  * Attente d'événement de la part du serveur.
+  */
+euphorik.PageAdmin.prototype.waitEvent = function() {
+   var thisPageAdmin = this;
+
+   this.comet.waitEvent(
       {
-         switch (data["reply"]) {
-            case "troll_added" :
-               var XHTML = ""
-               for (var i = 0; i < data["trolls"].length; i++)
-               {
-                  thisTrolls.dernierTroll = data["trolls"][i]["troll_id"]
-                  XHTML += '<p id="troll' + data["trolls"][i]["troll_id"] + '">' + data["trolls"][i]["content"] + '</p>'
-               }
-               $("#trolls").append(XHTML)
-               break
-            case "troll_modified" :
-               $("#trolls #troll"+data["troll_id"]).html(data["content"])
-               break
-         }
+         "banned_ips_refresh" : function(data){ thisPageAdmin.majIPs(); },
+         "error" :
+            function(data) {
+               thisPage.util.messageDialog(data.error_message);
+            }
       }
-   )
-}
\ No newline at end of file
+   );
+};
\ No newline at end of file