2 // Copyright 2008 Grégory Burri
4 // This file is part of Euphorik.
6 // Euphorik is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // Euphorik is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
19 // La page d'administation, ne peut être accédée que par les ekMaster (admins)
21 /*jslint laxbreak:true */
24 euphorik
.PageAdmin = function(client
, formater
, util
, communication
) {
28 this.formater
= formater
;
30 this.communication
= communication
;
32 this.comet
= this.communication
.createCometConnection("admin");
34 // a timer which will periodically refresh the banned IP list
35 this.timeoutIDmajIPs
= null;
39 * Interface des pages.
41 euphorik
.PageAdmin
.prototype.contenu = function() {
42 return '<h1>Trolls</h1>' +
43 '<p>Un troll est un sujet à débat, en général une question, affiché sur la page principale.</p>' +
44 '<p>Chaque semaine un troll est choisi au hasard parmis les trolls proposés et devient le troll de la semaine.</p>' +
45 '<form action="" id="nouveauTroll">' +
47 ' <input class="troll" name="troll" type="text" maxlength="500" value=""></input>' +
48 ' <button class="return" value="return">poster</button>' +
51 '<div id="trolls"></div>' +
52 '<h1>IPs bannies</h1>' +
53 '<div id="ips"></div>';
57 * Interface des pages.
59 euphorik
.PageAdmin
.prototype.charger = function() {
60 $("#page form#nouveauTroll").submit(function(){ return false; });
64 // la liste des trolls proposés par les ekMasters
65 this.trolls
= new euphorik
.Trolls(this.client
, this.util
, this.formater
, this.communication
);
71 $("#page form#nouveauTroll input.troll").focus();
73 $("#page form#nouveauTroll button.return").click(
75 thisPage
.posterTroll();
81 * Interface des pages.
83 euphorik
.PageAdmin
.prototype.decharger = function() {
84 this.comet
.stopAttenteCourante();
86 // supprime le rafraichissement période des ips
87 if (this.timeoutIDmajIPs
) {
88 clearTimeout(this.timeoutIDmajIPs
);
93 * Post un troll, le contenu est lu à partir de "input.troll".
95 euphorik
.PageAdmin
.prototype.posterTroll = function() {
96 var thisPageAdmin
= this;
98 var content
= $("#page form#nouveauTroll input.troll").val();
100 content
= content
.trim();
101 if (content
=== "") {
102 this.util
.messageDialog("Le troll est vide");
106 this.communication
.requete(
108 {"cookie" : this.client
.cookie
, "content" : content
},
110 $("#page form#nouveauTroll input.troll").val("");
116 * Met à jour la liste des IP bannies.
118 euphorik
.PageAdmin
.prototype.majIPs = function() {
119 if (this.timeoutIDmajIPs
) {
120 clearTimeout(this.timeoutIDmajIPs
);
123 var thisPageAdmin
= this;
125 this.communication
.requete(
127 {"cookie" : this.client
.cookie
},
130 data
.list
.each(function(i
, ip
) {
131 XHTML
+= '<div class="ban"><span class="ip">' + ip
.ip
+ '</span>|' +
132 '<span class="temps">' +
135 ip
.users
.each(function(j
, user
) {
136 XHTML
+= (j
> 0 ? ", " : "") +
137 '<span class="nick">' + thisPageAdmin
.formater
.completeProcessing(user
.nick
) + '</span>' +
138 (user
.login
=== "" ? "" : '<span class="login">(' + thisPageAdmin
.formater
.completeProcessing(user
.login
) + ')</span>');
140 XHTML
+= '<span class="deban">débannir</span></div>';
143 if (data
.list
.length
=== 0) {
144 XHTML
+= '<p>Aucune IP bannie</p>';
147 $("#ips").html(XHTML
);
149 $(".ban").each(function() {
150 var ip
= $(".ip", this).html();
151 $(".deban", this).click(
153 thisPageAdmin
.util
.messageDialog("Êtes-vous sur de vouloir débannir l'IP ''" + ip
+ "'' ?", euphorik
.Util
.messageType
.question
,
154 {"Oui" : function() {
155 thisPageAdmin
.deban(ip
);
164 // rafraichissement toutes les minutes (je sais c'est mal)
165 // le problème est le rafraichissement des temps restant de bannissement qui doit être fait du coté client
166 thisPageAdmin
.timeoutIDmajIPs
= setTimeout(function(){ thisPageAdmin
.majIPs(); }, 60 * 1000);
172 * Débannie une ip donnée.
174 euphorik
.PageAdmin
.prototype.deban = function(ip
) {
175 var thisPageAdmin
= this;
177 this.communication
.requete(
179 {"cookie" : this.client
.cookie
, "ip" : ip
}
184 * Attente d'événement de la part du serveur.
186 euphorik
.PageAdmin
.prototype.waitEvent = function() {
187 var thisPageAdmin
= this;
189 this.comet
.waitEvent(
190 function() { return { "last_troll" : thisPageAdmin
.trolls
.dernierTroll
}; },
192 "troll_added" : function(data
){ thisPageAdmin
.trolls
.ajouterTrollEvent(data
); },
193 "troll_modified" : function(data
){ thisPageAdmin
.trolls
.modifierTrollEvent(data
); },
194 "troll_deleted" : function(data
){ thisPageAdmin
.trolls
.supprimerTrollEvent(data
); },
195 "banned_ips_refresh" : function(data
){ thisPageAdmin
.majIPs(); },
198 thisTrolls
.util
.messageDialog(data
.error_message
);
204 ///////////////////////////////////////////////////////////////////////////////////////////////////
207 * Représente un troll, pas grand chose finalement.
209 euphorik
.Troll = function(content
, author
) {
210 this.content
= content
;
211 this.author
= author
;
214 ///////////////////////////////////////////////////////////////////////////////////////////////////
216 euphorik
.Trolls = function(client
, util
, formater
, communication
) {
217 this.client
= client
;
219 this.formater
= formater
;
220 this.communication
= communication
;
221 this.dernierTroll
= 0;
226 euphorik
.Trolls
.prototype.ajouterTrollEvent = function(data
) {
227 var thisTrolls
= this;
230 data
.trolls
.each(function(i
, trollData
) {
231 var troll
= new euphorik
.Troll(trollData
.content
, trollData
.author
);
232 var trollId
= trollData
.troll_id
;
233 thisTrolls
.trolls
[trollId
] = troll
;
236 '<div id="troll' + trollId
+ '" class="troll">' +
237 '<span class="content">' + thisTrolls
.formater
.completeProcessing(troll
.content
, troll
.author
) + '</span>' +
238 '<span class="author"> - ' + thisTrolls
.formater
.completeProcessing(troll
.author
) + '</span>' +
239 (trollData
.author_id
=== thisTrolls
.client
.id
? '<span class="editTroll">éditer</span><span class="delTroll">Supprimer</span>' : '') +
242 $("#trolls").append(XHTML
);
243 $("#trolls .troll").filter(function() { return parseInt($(this).attr("id").substr(5), 10) > thisTrolls
.dernierTroll
; }).each(
246 var id
= parseInt($(this).attr("id").substr(5), 10);
248 $("a[@rel*=lightbox]", this).lightBox();
252 if (e
.which
=== 13) { // return
253 $(".modifier", this).click();
258 $(".delTroll", this).click(
260 thisTrolls
.util
.messageDialog(
261 "Êtes-vous sur de vouloir supprimer le troll \"" + thisTrolls
.trolls
[id
].content
+ "\" ?",
262 euphorik
.Util
.messageType
.question
,
265 thisTrolls
.supprimer(id
);
273 $(".editTroll", this).click(
275 $("span", troll
).css("display", "none");
277 '<form><p><input class="content" type="text" size="50" maxlength="500" value="' +
278 thisTrolls
.trolls
[id
].content
+
279 '"></input><span class="modifier">modifier</span><span class="annuler">annuler</span></p></form>'
281 $("form input.content").focus();
283 var virerLeFormulaire = function() {
284 $('form', troll
).remove();
285 $('span', troll
).css("display", "inline");
287 $("span.modifier", troll
).click(
289 var content
= $("form input.content", troll
).val();
291 thisTrolls
.modifier(id
, content
);
294 $("span.annuler", troll
).click( virerLeFormulaire
);
295 $("form", troll
).submit(function(){ return false; });
301 if (data
.trolls
.length
> 0) {
302 thisTrolls
.dernierTroll
= data
.trolls
[data
.trolls
.length
- 1].troll_id
;
306 euphorik
.Trolls
.prototype.modifierTrollEvent = function(data
) {
307 var thisTrolls
= this;
308 $("#trolls #troll" + data
.troll_id
+ " .content").html(thisTrolls
.formater
.completeProcessing(data
.content
, thisTrolls
.trolls
[data
.troll_id
].author
));
309 $("#trolls #troll" + data
.troll_id
+ " a[@rel*=lightbox]").lightBox();
310 thisTrolls
.trolls
[data
.troll_id
].content
= data
.content
;
313 euphorik
.Trolls
.prototype.supprimerTrollEvent = function(data
) {
314 $("#trolls #troll" + data
.troll_id
).remove();
317 euphorik
.Trolls
.prototype.modifier = function(id
, content
) {
318 this.communication
.requete(
320 {"cookie" : this.client
.cookie
, "troll_id" : id
, "content" : content
}
325 * Supprime un troll en fonction de son id.
327 euphorik
.Trolls
.prototype.supprimer = function(id
) {
328 this.communication
.requete(
330 {"cookie" : this.client
.cookie
, "troll_id" : id
}