X-Git-Url: http://git.euphorik.ch/?a=blobdiff_plain;f=js%2FpageAdmin.js;h=d7a14be15f23f413e4fbd0eb4beac8a9f0c462a1;hb=28cbabecbfc2e05861779a19e5a75bddbc0ad416;hp=93b94d5e520c8b2a78ad853685733164398ebe2a;hpb=fa5add0c6d5f461922e97624bb67038087e37a91;p=euphorik.git diff --git a/js/pageAdmin.js b/js/pageAdmin.js index 93b94d5..d7a14be 100644 --- a/js/pageAdmin.js +++ b/js/pageAdmin.js @@ -12,10 +12,16 @@ function PageAdmin(client, formateur, util) PageAdmin.prototype.contenu = function() { return '

Trolls

\ -

Nouveau troll\ - \ - \ -

' +

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

\ +
\ +

\ + \ + \ +

\ +
\ +
\ +

IPs bannies

\ +
' } PageAdmin.prototype.charger = function() @@ -24,12 +30,17 @@ PageAdmin.prototype.charger = function() var thisPage = this - this.trolls = new Trolls(this.util) + this.trolls = new Trolls(this.client, this.util, this.formateur) this.trolls.rafraichirTrolls() + this.majIPs() + + $("#page form#nouveauTroll input.troll").focus() + $("#page form#nouveauTroll button.return").click( function() - { + { + thisPage.posterTroll() } ) } @@ -39,14 +50,196 @@ 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 + } + + 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"]) + } + } + } + ) +} + + +/** + * Met à jour la liste des IP bannies. + */ +PageAdmin.prototype.majIPs = function() +{ + var thisPageAdmin = this + + var dataToSend = + { + "action" : "list_banned_ips", + "cookie" : this.client.cookie + } + + ;;; dumpObj(dataToSend) + jQuery.ajax( + { + type: "POST", + url: "request", + dataType: "json", + data: this.util.jsonVersAction(dataToSend), + success: + function(data) + { + ;;; dumpObj(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"] == "" ? "" : '(' + thisPageAdmin.formateur.traitementComplet(user["login"]) + ')') + } + XHTML += ']' + } + $("#ips").html(XHTML) + } + else if (data["reply"] == "error") + { + thisPageAdmin.util.messageDialogue(data["error_message"]) + } + } + } + ) +} + +/////////////////////////////////////////////////////////////////////////////////////////////////// + + +function Troll(content, author) +{ + this.content = content + this.author = author +} + /////////////////////////////////////////////////////////////////////////////////////////////////// -function Trolls(util) + +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.modifier = function(id, content) +{ + var thisTrolls = this + + var dataToSend = + { + "action" : "mod_troll", + "cookie" : this.client.cookie, + "troll_id" : id, + "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"] == "error") + { + thisTrolls.util.messageDialogue(data["error_message"]) + } + } + } + ) +} + +/** + * Supprime un troll en fonction de son id. + */ +Trolls.prototype.supprimer = function(id) +{ + var thisTrolls = this + + var dataToSend = + { + "action" : "del_troll", + "cookie" : this.client.cookie, + "troll_id" : id + } + + ;;; dumpObj(dataToSend) + jQuery.ajax( + { + type: "POST", + url: "request", + dataType: "json", + data: this.util.jsonVersAction(dataToSend), + success: + function(data) + { + ;;; dumpObj(data) + if (data["reply"] == "error") + { + thisTrolls.util.messageDialogue(data["error_message"]) + } + } + } + ) } Trolls.prototype.rafraichirTrolls = function() @@ -57,18 +250,99 @@ Trolls.prototype.rafraichirTrolls = function() function() { return { "last_troll" : thisTrolls.dernierTroll }}, function(data) { - switch (data["reply"]) { + 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 += '

' + data["trolls"][i]["content"] + '

' + 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 \"" + $("#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

' + ) + $("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"] break case "troll_modified" : - $("#trolls #troll"+data["troll_id"]).html(data["content"]) + $("#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"] + break + case "troll_deleted" : + $("#trolls #troll"+data["troll_id"]).remove() + break + case "error" : + thisTrolls.util.messageDialogue(data["error_message"]) break } }