X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageAdmin.js;h=6b1819d664d1f5d063606449689aa9bb5b9766d3;hp=fd1ddd46c665860ade0012916b574499afa5a3ac;hb=4a6c575807a90370c0069b688026b10102e1ce10;hpb=8bec0dac79e750d0040de8a009c6ae864479642e diff --git a/js/pageAdmin.js b/js/pageAdmin.js index fd1ddd4..6b1819d 100644 --- a/js/pageAdmin.js +++ b/js/pageAdmin.js @@ -1,248 +1,151 @@ // 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 . +// +// 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 '

Trolls

\ -

Chaque semaine un troll est choisit au hasard parmis les trolls proposés et devient le troll de la semaine.

\ -

\ - \ - \ -

' -} - -PageAdmin.prototype.charger = function() -{ - $("#page form#nouveauTroll").submit(function(){return false}) - - var thisPage = this - - this.trolls = new Trolls(this.client, this.util, this.formateur) - this.trolls.rafraichirTrolls() - - $("#page form#nouveauTroll button.return").click( - function() - { - thisPage.posterTroll() - } - ) -} - -PageAdmin.prototype.decharger = function() -{ - this.trolls.pageEvent.stopAttenteCourante() -} - -PageAdmin.prototype.posterTroll = function() -{ - var thisPageAdmin = this - - var content = $("#page form#nouveauTroll input.troll").val() - - content = content.trim() - if (content == "") - { - this.util.messageDialogue("Le troll est vide") - return - } +/*jslint laxbreak:true */ - var dataToSend = - { - "action" : "put_troll", - "cookie" : this.client.cookie, - "content" : content - } - ;;; dumpObj(dataToSend) - jQuery.ajax( - { - type: "POST", - url: "request", - dataType: "json", - data: this.util.jsonVersAction(dataToSend), - success: - function(data) - { - ;;; dumpObj(data) - - if (data["reply"] == "ok") - { - $("#page form#nouveauTroll input.troll").val("") - } - else if (data["reply"] == "error") - { - thisPageAdmin.util.messageDialogue(data["error_message"]) - } - } - } - ) -} +euphorik.PageAdmin = function(client, formatter, util, communication) { + this.name = "admin"; -/////////////////////////////////////////////////////////////////////////////////////////////////// + this.client = client; + this.formatter = formatter; + this.util = util; + this.communication = communication; -function Trolls(client, util, formateur) -{ - this.client = client - this.util = util - this.formateur = formateur - this.dernierTroll = 0 - this.pageEvent = new PageEvent("admin", this.util) -} + this.comet = this.communication.createCometConnection("admin"); + // a timer which will periodically refresh the banned IP list + this.timeoutIDmajIPs = null; +}; -Trolls.prototype.modifier = function(id, content) -{ - var dataToSend = - { - "action" : "mod_troll", - "cookie" : this.client.cookie, - "troll_id" : id, - "content" : content - } +/** + * Interface des pages. + */ +euphorik.PageAdmin.prototype.contenu = function() { + return '

IPs bannies

'; +}; - ;;; dumpObj(dataToSend) - jQuery.ajax( - { - type: "POST", - url: "request", - dataType: "json", - data: this.util.jsonVersAction(dataToSend), - success: - function(data) - { - ;;; dumpObj(data) - if (data["reply"] == "error") - { - thisPageAdmin.util.messageDialogue(data["error_message"]) +/** + * 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 += '
' + ip.ip + '|' + + '' + + ip.remaining_time + + '|'; + ip.users.each(function(j, user) { + XHTML += (j > 0 ? ", " : "") + + '' + thisPageAdmin.formatter.completeProcessing(user.nick) + '' + + (user.login === "" ? "" : ''); + }); + XHTML += 'débannir
'; + }); + + if (data.list.length === 0) { + XHTML += '

Aucune IP bannie

'; + } + + $("#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); } - ) -} + ); +}; /** - * Supprime un troll en fonction de son id. + * Débannie une ip donnée. */ -Trolls.prototype.supprimer = function(id) -{ - var dataToSend = - { - "action" : "del_troll", - "cookie" : this.client.cookie, - "troll_id" : id - } +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; - ;;; dumpObj(dataToSend) - jQuery.ajax( + this.comet.waitEvent( { - type: "POST", - url: "request", - dataType: "json", - data: this.util.jsonVersAction(dataToSend), - success: - function(data) - { - ;;; dumpObj(data) - if (data["reply"] == "error") - { - thisPageAdmin.util.messageDialogue(data["error_message"]) - } + "banned_ips_refresh" : function(data){ thisPageAdmin.majIPs(); }, + "error" : + function(data) { + thisPage.util.messageDialog(data.error_message); } } - ) -} - -Trolls.prototype.rafraichirTrolls = function() -{ - var thisTrolls = this - - this.pageEvent.waitEvent( - function() { return { "last_troll" : thisTrolls.dernierTroll }}, - function(data) - { - switch (data["reply"]) - { - case "troll_added" : - var XHTML = "" - for (var i = 0; i < data["trolls"].length; i++) - { - XHTML += - '
' + - '' + thisTrolls.formateur.traitementComplet(data["trolls"][i]["content"], data["trolls"][i]["author"]) + '' + - '' + thisTrolls.formateur.traitementComplet(data["trolls"][i]["author"]) + '' + - (data["trolls"][i]["author_id"] == thisTrolls.client.id ? 'éditerSupprimer' : '') + - '
' - } - $("#trolls").append(XHTML) - $("#trolls .troll").filter(function(){return parseInt($(this).attr("id").substr(5)) > thisTrolls.dernierTroll}).each( - function() - { - var troll = this - var id = parseInt($(this).attr("id").substr(5)) - $(".delTroll", this).click( - function() - { - thisTrolls.util.messageDialogue( - "Êtes-vous sur de vouloir supprimer le troll \"" + $("#trolls .troll .content").html() + "\" ?", - messageType.question, - { - "oui" : function() - { - thisTrolls.supprimer(id) - }, - "non" : function(){} - } - ) - } - ) - $(".editTroll", this).click( - function() - { - $("span", troll).css("display", "none") - $(troll).append( - '

modifierannuler

' - ) - var virerLeFormulaire = function() - { - $("form", troll).remove() - $('span', troll).css("display", "inline") - } - $("span.modifier", troll).click( - function() - { - var content = $("form input.content", troll).val() - virerLeFormulaire() - thisTrolls.modifier(id, content) - } - ) - $("span.annuler", troll).click( virerLeFormulaire ) - $("form", troll).submit(function(){ return false}) - } - ) - } - ) - - if (data["trolls"].length > 0) - thisTrolls.dernierTroll = data["trolls"][data["trolls"].length - 1]["troll_id"] - break - case "troll_modified" : - $("#trolls #troll" + data["troll_id"] + " .content").html(thisTrolls.formateur.traitementComplet(data["content"], $("#trolls #troll" + data["troll_id"] + " .author").html())) - $("#trolls #troll" + data["troll_id"] + " .contentPasFormat").html(data["content"]) - break - case "troll_deleted" : - $("#trolls #troll"+data["troll_id"]).remove() - break - } - } - ) -} \ No newline at end of file + ); +}; \ No newline at end of file