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 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
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 /*jslint laxbreak:true */
21 euphorik
.PageMinichat = function(client
, formater
, util
, communication
) {
22 this.name
= "minichat";
25 this.formater
= formater
;
27 this.communication
= communication
;
28 this.commandes
= new euphorik
.Commandes(this.client
, this, this.util
, this.formater
);
30 // permet d'éviter d'envoyer plusieurs messages simultanément en pressant
31 // rapidement sur "enter" par exemple
32 this.envoieMessageEnCours
= false;
35 euphorik
.PageMinichat
.prototype.contenu = function() {
36 // le fait que tout soit collé est fait exprès, permet d'éviter d'avoir des espaces supplémentaires entre les spans
37 var formulaireXHTML
= '' +
38 '<form method="post" action="" id ="posterMessage">' +
40 ' <input class="captcha" name="captcha" type="text" size="8" maxlength="8"></input>' +
41 ' <input class="nick" name="nick" type="text" maxlength="50" value="' + encodeURI(euphorik
.conf
.defaultNick
) + '"></input>' +
42 ' <span id="repondA"><span class="nb">0</span><span class="messages"></span></span>' +
43 ' <input class="message" name="message" type="text" maxlength="500" value=""></input>' +
44 ' <button class="smiles"></button>' +
45 ' <button class="return"></button>' +
49 var conversationXHTML
= '<table id="conversations"><tr></tr></table>';
51 if (this.client
.chatOrder
=== "reverse") {
52 return formulaireXHTML
+ conversationXHTML
;
54 return conversationXHTML
+ formulaireXHTML
;
58 euphorik
.PageMinichat
.prototype.classes = function() {
59 return this.client
.chatOrder
=== "reverse" ? "orderReverse" : "orderChrono";
62 euphorik
.PageMinichat
.prototype.charger = function() {
65 $("#posterMessage input.nick").val(this.client
.nick
);
67 // cet appel ne doit pas être fait avant l'appel à 'charger'
68 this.conversations
= new euphorik
.Conversations(this.client
, this.formater
, this.util
, this.communication
, this.fragment
);
70 this.chargerConversationsFragment();
72 this.conversations
.rafraichirMessages(true);
74 this.util
.setCaretToEnd($("form#posterMessage input.message")[0]);
76 // les outils de bannissement (uniquement pour les ekMaster)
77 if (this.client
.ekMaster
) {
78 // TODO : augmentation un peu space, à revoir
79 this.util
.outilsBan
= $(
80 '<span id="outilsBan">' +
81 ' <span class="spacer"></span>' +
82 ' <form action=""><p><input id="raison" name="raison" type="text" size="10" maxlength="200"></input></p></form>' +
83 ' <img id="ban" src="img/ban.gif" alt="Ban de 3 jours" />' +
84 ' <img id="kick" src="img/kick.gif" alt="Ban de 15 min" />' +
85 ' <img id="slap" src="img/slap.gif" alt="Avertissement" />' +
89 this.util
.infoBulle("Slap", $("#slap", this.util
.outilsBan
));
90 this.util
.infoBulle("Kick (" + euphorik
.conf
.tempsKick
+ "min)", $("#kick", this.util
.outilsBan
));
91 this.util
.infoBulle("Ban (" + euphorik
.conf
.tempsBan
/ 24 / 60 + " jours)", $("#ban", this.util
.outilsBan
));
92 this.util
.infoBulle("La raison", $("input", this.util
.outilsBan
));
95 // la barre d'outils liée à chaque message
96 this.util
.outilsMessage
= $('<div id="outilsMess"><div class="extraire"></div><div class="extraireCompletement"></div></div>').prependTo("#page.minichat");
97 this.util
.infoBulle("Cliquer sur les messages pour les enlevers de la liste",
98 $("form#posterMessage #repondA").hover(
100 thisPage
.util
.afficherBoite(
101 $(".messages", this),
103 euphorik
.Util
.positionTypeX
.centre
,
104 thisPage
.client
.chatOrder
=== "reverse" ? euphorik
.Util
.positionTypeY
.bas : euphorik
.Util
.positionTypeY
.haut
107 function() { $(".messages", this).hide(); }
110 if ($(e
.target
).is(".nb")) {
111 thisPage
.conversations
.enleverMessagesRepond();
115 euphorik
.Util
.positionBulleType
.droite
119 $("body").append('<div id="smiles"></div>');
120 // affichage des smiles
121 $("#smiles").append(this.formater
.getSmilesHTML()).children().each(
123 var opacityBase
= $(this).css("opacity");
126 thisPage
.util
.replaceSelection($("form#posterMessage input.message")[0], thisPage
.formater
.smiles
[$(this).attr("class")][0].source
.replace(/\\/g
, ""));
129 function() { $(this).animate({opacity: 1}, 200); },
130 function() { $(this).animate({opacity: opacityBase
}, 200); }
134 $("form#posterMessage button.smiles").hover(
135 // affichage de la boite présentant les smiles
136 function(e
){ thisPage
.util
.afficherBoite($("#smiles"), $(e
.target
), euphorik
.Util
.positionTypeX
.centre
, euphorik
.Util
.positionTypeY
.basRecouvrement
); },
151 if ($("form#posterMessage input.captcha").val() !== "") {
155 var message
= $("form#posterMessage input.message").val();
157 // traitement des commandes..
158 var retCommandes
= thisPage
.commandes
.exec(message
);
159 switch (retCommandes
[0]) {
160 case euphorik
.Commandes
.statut
.pas_une_commande :
161 thisPage
.envoyerMessage(message
);
163 case euphorik
.Commandes
.statut
.erreur_commande :
164 thisPage
.util
.messageDialog(retCommandes
[1], euphorik
.Util
.messageType
.erreur
);
166 case euphorik
.Commandes
.statut
.ok :
167 $("form#posterMessage input.message").val("");
171 $("form#posterMessage input.message").focus();
174 $("form#posterMessage").keypress(
176 if (e
.which
=== 13) { // return
182 $("form#posterMessage button.return").click(nouveauMessage
);
184 // interdiction de submiter le formulaire
185 $("form#posterMessage").submit(function(){ return false; });
187 $("input.nick").click(
189 var input
= $("input.nick")[0];
190 if (input
.value
=== euphorik
.conf
.defaultNick
) {
197 euphorik
.PageMinichat
.prototype.chargerConversationsFragment = function() {
198 var thisPageMinichat
= this;
200 // attention : "conv" doit être un tableau d'entier
202 var conv
= this.fragment
.getVal("conv");
204 conv
.each(function(i
, racine
) {
205 thisPageMinichat
.client
.ajouterConversation(racine
)
213 euphorik
.PageMinichat
.prototype.decharger = function() {
214 this.conversations
.comet
.stopAttenteCourante();
216 $("body #smiles").remove();
218 this.fragment
.delVal("conv");
222 * Envoie un nouve message donné, le nick utilisé est celui se trouvant
223 * dans la zone de saisie (form#posterMessage input.nick).
225 euphorik
.PageMinichat
.prototype.envoyerMessage = function(message
) {
226 var thisPageMinichat
= this;
227 var nick
= $("form#posterMessage input.nick").val();
229 // (un nick vide est autorisé)
230 nick
= this.formater
.formatNick(nick
);
232 if (nick
=== euphorik
.conf
.defaultNick
) {
233 this.util
.messageDialog("Choose a nickname");
237 message
= message
.trim();
239 this.util
.messageDialog("The message is empty");
243 if (!this.client
.authentifie()) {
244 if (!this.client
.enregistrement()) {
245 this.util
.messageDialog("unable to login");
250 // évite le double post
251 if (this.envoieMessageEnCours
) {
252 this.util
.messageDialog("Message en cours d'envoie...");
255 this.envoieMessageEnCours
= true;
257 this.client
.nick
= nick
;
259 this.communication
.requete(
261 this.getJSONMessage(this.client
.nick
, message
),
263 $("form#posterMessage input.message").val("");
264 thisPageMinichat
.conversations
.enleverMessagesRepond();
265 thisPageMinichat
.envoieMessageEnCours
= false;
268 thisPageMinichat
.util
.messageDialog(data
.error_message
);
269 thisPageMinichat
.envoieMessageEnCours
= false;
274 thisPageMinichat
.envoieMessageEnCours
= false;
280 euphorik
.PageMinichat
.prototype.getJSONMessage = function(nick
, message
) {
282 objectEach(this.conversations
.messagesRepond
, function(id
) {
283 repondA
.push(parseInt(id
, 10));
287 "cookie" : this.client
.cookie
,
290 "answer_to" : repondA