X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2FpageAdmin.js;h=ab91eecd042caccb142acd12a29c62e637ea9589;hp=fd1ddd46c665860ade0012916b574499afa5a3ac;hb=deff7a2f11dca2b300b258d1e93d71e3b2e34c84;hpb=8bec0dac79e750d0040de8a009c6ae864479642e diff --git a/js/pageAdmin.js b/js/pageAdmin.js index fd1ddd4..ab91eec 100644 --- a/js/pageAdmin.js +++ b/js/pageAdmin.js @@ -1,4 +1,22 @@ // 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) { @@ -7,26 +25,50 @@ function PageAdmin(client, formateur, util) this.client = client this.formateur = formateur this.util = util + + this.pageEvent = new euphorik.PageEvent("admin", this.util) + + // le timer qui rappelle periodiquement le rafraichissement des IP bannies + this.timeoutIDmajIPs = null } +/** + * Interface des pages. + */ 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.

\ -

\ - \ - \ -

' + return '\ +

Trolls

\ +

Un troll est un sujet à débat, en général une question, affiché sur la page principale.

\ +

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

\ +
\ +

\ + \ + \ +

\ +
\ +
\ +

IPs bannies

\ +
' } +/** + * Interface des pages. + */ PageAdmin.prototype.charger = function() { $("#page form#nouveauTroll").submit(function(){return false}) var thisPage = this + // la liste des trolls proposés par les ekMasters this.trolls = new Trolls(this.client, this.util, this.formateur) - this.trolls.rafraichirTrolls() + + this.waitEvent() + + this.majIPs() + + $("#page form#nouveauTroll input.troll").focus() $("#page form#nouveauTroll button.return").click( function() @@ -36,11 +78,21 @@ PageAdmin.prototype.charger = function() ) } +/** + * Interface des pages. + */ PageAdmin.prototype.decharger = function() { - this.trolls.pageEvent.stopAttenteCourante() + this.pageEvent.stopAttenteCourante() + + // supprime le rafraichissement période des ips + if (this.timeoutIDmajIPs) + clearTimeout(this.timeoutIDmajIPs) } +/** + * Post un troll, le contenu est lu à partir de "input.troll". + */ PageAdmin.prototype.posterTroll = function() { var thisPageAdmin = this @@ -56,12 +108,11 @@ PageAdmin.prototype.posterTroll = function() var dataToSend = { - "action" : "put_troll", + "header" : { "action" : "put_troll", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie, "content" : content } - ;;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -70,9 +121,7 @@ PageAdmin.prototype.posterTroll = function() data: this.util.jsonVersAction(dataToSend), success: function(data) - { - ;;; dumpObj(data) - + { if (data["reply"] == "ok") { $("#page form#nouveauTroll input.troll").val("") @@ -86,29 +135,277 @@ PageAdmin.prototype.posterTroll = function() ) } +/** + * Met à jour la liste des IP bannies. + */ +PageAdmin.prototype.majIPs = function() +{ + if (this.timeoutIDmajIPs) + clearTimeout(this.timeoutIDmajIPs) + + var thisPageAdmin = this + + var dataToSend = + { + "header" : { "action" : "list_banned_ips", "version" : euphorik.conf.versionProtocole }, + "cookie" : this.client.cookie + } + + jQuery.ajax( + { + type: "POST", + url: "request", + dataType: "json", + data: this.util.jsonVersAction(dataToSend), + success: + function(data) + { + if (data["reply"] == "list_banned_ips") + { + var XHTML = "" + for(var i = 0; i < data["list"].length; i++) + { + var ip = data["list"][i] + XHTML += '
' + ip["ip"] + '|' + + '' + + ip["remaining_time"] + + '|' + for(var j = 0; j < ip["users"].length; j++) + { + var user = ip["users"][j] + XHTML += (j > 0 ? ", " : "") + + '' + thisPageAdmin.formateur.traitementComplet(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.messageDialogue("Êtes-vous sur de vouloir débannir l'IP ''" + ip + "'' ?", euphorik.Util.messageType.question, + {"Oui" : function() + { + thisPageAdmin.deban(ip) + }, + "Non" : function(){} + } + ) + } + ) + } + ) + } + else if (data["reply"] == "error") + { + thisPageAdmin.util.messageDialogue(data["error_message"]) + } + + // 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) + } + } + ) +} + +/** + * Débannie une ip donnée. + */ +PageAdmin.prototype.deban = function(ip) +{ + var thisPageAdmin = this + + var dataToSend = + { + "header" : { "action" : "unban", "version" : euphorik.conf.versionProtocole }, + "cookie" : this.client.cookie, + "ip" : ip + } + + jQuery.ajax( + { + type: "POST", + url: "request", + dataType: "json", + data: this.util.jsonVersAction(dataToSend), + success: + function(data) + { + if(data["reply"] == "error") + thisPageAdmin.util.messageDialogue(data["error_message"]) + } + } + ) +} + +/** + * Attente d'événement de la part du serveur. + */ +PageAdmin.prototype.waitEvent = function() +{ + var thisPageAdmin = this + + this.pageEvent.waitEvent( + function() { return { "last_troll" : thisPageAdmin.trolls.dernierTroll }}, + { + "troll_added" : function(data){ thisPageAdmin.trolls.ajouterTrollEvent(data) }, + "troll_modified" : function(data){ thisPageAdmin.trolls.modifierTrollEvent(data) }, + "troll_deleted" : function(data){ thisPageAdmin.trolls.supprimerTrollEvent(data) }, + "banned_ips_refresh" : function(data){ thisPageAdmin.majIPs() }, + "error" : + function(data) + { + thisTrolls.util.messageDialogue(data["error_message"]) + } + } + ) +} + /////////////////////////////////////////////////////////////////////////////////////////////////// +/** + * Représente un troll, pas grand chose finalement. + */ +function Troll(content, author) +{ + this.content = content + this.author = author +} + + +/////////////////////////////////////////////////////////////////////////////////////////////////// + + 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.trolls = {} } +Trolls.prototype.ajouterTrollEvent = function(data) +{ + var thisTrolls = this + + var XHTML = "" + for (var i = 0; i < data["trolls"].length; i++) + { + var troll = new Troll(data["trolls"][i]["content"], data["trolls"][i]["author"]) + var trollId = data["trolls"][i]["troll_id"] + thisTrolls.trolls[trollId] = troll + + XHTML += + '
' + + '' + thisTrolls.formateur.traitementComplet(troll.content, troll.author) + '' + + ' - ' + thisTrolls.formateur.traitementComplet(troll.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)) + + $("a[@rel*=lightbox]", this).lightBox() + + $(this).keypress( + function(e) + { + if (e.which == 13) // return + $(".modifier", this).click() + } + ) + $(".delTroll", this).click( + function() + { + thisTrolls.util.messageDialogue( + "Êtes-vous sur de vouloir supprimer le troll \"" + thisTrolls.trolls[id].content + "\" ?", + euphorik.Util.messageType.question, + { + "oui" : function() + { + thisTrolls.supprimer(id) + }, + "non" : function(){} + } + ) + } + ) + $(".editTroll", this).click( + function() + { + $("span", troll).css("display", "none") + $(troll).append( + '

modifierannuler

' + ) + $("form input.content").focus() + + 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"] +} + +Trolls.prototype.modifierTrollEvent = function(data) +{ + var thisTrolls = this + $("#trolls #troll" + data["troll_id"] + " .content").html(thisTrolls.formateur.traitementComplet(data["content"], thisTrolls.trolls[data["troll_id"]].author)) + $("#trolls #troll" + data["troll_id"] + " a[@rel*=lightbox]").lightBox() + thisTrolls.trolls[data["troll_id"]].content = data["content"] +} + +Trolls.prototype.supprimerTrollEvent = function(data) +{ + $("#trolls #troll"+data["troll_id"]).remove() +} Trolls.prototype.modifier = function(id, content) { + var thisTrolls = this + var dataToSend = { - "action" : "mod_troll", + "header" : { "action" : "mod_troll", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie, "troll_id" : id, "content" : content } - ;;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -118,10 +415,9 @@ Trolls.prototype.modifier = function(id, content) success: function(data) { - ;;; dumpObj(data) if (data["reply"] == "error") { - thisPageAdmin.util.messageDialogue(data["error_message"]) + thisTrolls.util.messageDialogue(data["error_message"]) } } } @@ -133,14 +429,15 @@ Trolls.prototype.modifier = function(id, content) */ Trolls.prototype.supprimer = function(id) { + var thisTrolls = this + var dataToSend = { - "action" : "del_troll", + "header" : { "action" : "del_troll", "version" : euphorik.conf.versionProtocole }, "cookie" : this.client.cookie, "troll_id" : id } - ;;; dumpObj(dataToSend) jQuery.ajax( { type: "POST", @@ -150,99 +447,11 @@ Trolls.prototype.supprimer = function(id) success: function(data) { - ;;; dumpObj(data) if (data["reply"] == "error") { - thisPageAdmin.util.messageDialogue(data["error_message"]) + thisTrolls.util.messageDialogue(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