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/>.
20 * Contient la base javascript pour le site euphorik.ch.
21 * Chaque page possède son propre fichier js nommé "page<nom de la page>.js".
29 * Normalement 'const' à la place de 'var' mais non supporté par IE7.
32 nbMessageAffiche : 40, // (par page)
33 pseudoDefaut : "<nick>",
34 tempsAffichageMessageDialogue : 4000, // en ms
35 tempsKick : 15, // en minute
36 tempsBan : 60 * 24 * 3, // en minutes (3jours)
38 "smile" : [/:\)/g, /:-\)/g],
39 "bigsmile" : [/:D/g, /:-D/g],
40 "clin" : [/;\)/g, /;-\)/g],
41 "cool" : [/8\)/g, /8-\)/g],
42 "eheheh" : [/:P/g, /:-P/g],
43 "lol" : [/\[-lol\]/g],
44 "spliff" : [/\[-spliff\]/g],
45 "oh" : [/:o/g, /:O/g],
46 "heink" : [/\[-heink\]/g],
47 "hum" : [/\[-hum\]/g],
48 "boh" : [/\[-boh\]/g],
49 "sniff" : [/:\(/g, /:-\(/g],
50 "triste" : [/\[-triste\]/g],
51 "pascontent" : [/>\(/g, />\(/g],
52 "argn" : [/\[-argn\]/g],
53 "redface" : [/\[-redface\]/g],
54 "bunny" : [/\[-lapin\]/g],
55 "chat" : [/\[-chat\]/g],
56 "renne" : [/\[-renne\]/g],
57 "star" : [/\[-star\]/g],
58 "kirby" : [/\[-kirby\]/g],
59 "slurp" : [/\[-slurp\]/g],
60 "agreed" : [/\[-agreed\]/g],
61 "dodo" : [/\[-dodo\]/g],
66 ///////////////////////////////////////////////////////////////////////////////////////////////////
68 String
.prototype.trim = function()
70 return jQuery
.trim(this) // anciennement : this.replace(/^\s+|\s+$/g, "");
73 String
.prototype.ltrim = function()
75 return this.replace(/^\s+/, "");
78 String
.prototype.rtrim = function()
80 return this.replace(/\s+$/, "");
83 ///////////////////////////////////////////////////////////////////////////////////////////////////
86 * Cette classe regroupe des fonctions utilitaires (helpers).
87 * @formateur est permet de formater les messages affichés à l'aide de messageDialogue (facultatif)
89 function Util(formateur
)
91 $("#info .fermer").click(function(){
92 $("#info").slideUp(50)
95 $("body").append('<div id="flecheBulle"></div>').append('<div id="messageBulle"><p></p></div>')
97 this.formateur
= formateur
98 this.bulleActive
= true
101 var messageType
= {informatif: 0, question: 1, erreur: 2}
104 * Affiche une boite de dialogue avec un message à l'intérieur.
105 * @param message le message (string)
106 * @param type voir 'messageType'. par défaut messageType.informatif
107 * @param les boutons sous la forme d'un objet ou les clefs sont les labels des boutons
108 * et les valeurs les fonctions executées lorsqu'un bouton est activé.
109 * @param formate faut-il formaté le message ? true par défaut
111 Util
.prototype.messageDialogue = function(message
, type
, boutons
, formate
)
115 if (type
== undefined)
116 type
= messageType
.informatif
118 if (formate
== undefined)
121 if (this.timeoutMessageDialogue
!= undefined)
122 clearTimeout(this.timeoutMessageDialogue
)
124 var fermer = function(){$("#info").slideUp(100)}
127 $("#info .message").html(thisUtil
.formateur
== undefined || !formate
? message : thisUtil
.formateur
.traitementComplet(message
))
130 case messageType
.informatif : $("#info #icone").attr("class", "information"); break
131 case messageType
.question : $("#info #icone").attr("class", "interrogation"); break
132 case messageType
.erreur : $("#info #icone").attr("class", "exclamation"); break
134 $("#info .boutons").html("")
135 for (var b
in boutons
)
136 $("#info .boutons").append("<div>" + b
+ "</div>").find("div:last").click(boutons
[b
]).click(fermer
)
138 $("#info").slideDown(200)
139 this.timeoutMessageDialogue
= setTimeout(fermer
, conf
.tempsAffichageMessageDialogue
)
143 * Affiche un info bulle lorsque le curseur survole l'élément donné.
144 * FIXME : le width de element ne tient pas compte du padding !?
146 Util
.prototype.infoBulle = function(message
, element
)
150 var cacherBulle = function()
152 $("#flecheBulle").hide()
153 $("#messageBulle").hide()
159 if (!thisUtil
.bulleActive
)
162 var m
= $("#messageBulle")
163 var f
= $("#flecheBulle")
165 // remplie le paragraphe de la bulle avec le message
166 $("p", m
).html(message
)
168 // réinitialise la position, évite le cas ou la boite est collé à droite et remplie avec un texte la faisant dépassé
169 // dans ce cas la hauteur n'est pas calculé correctement
170 m
.css("top", 0).css("left", 0)
172 var positionFleche
= {
173 left : element
.offset().left
+ element
.width() / 2 - f
.width() / 2,
174 top : element
.offset().top
- f
.height()
176 var positionMessage
= {
177 left : element
.offset().left
+ element
.width() / 2 - m
.width() / 2,
178 top : element
.offset().top
- f
.height() - m
.height()
180 var depassementDroit
= (positionMessage
.left
+ m
.width()) - $("body").width()
181 if (depassementDroit
> 0)
182 positionMessage
.left
-= depassementDroit
185 if (positionMessage
.left
< 0)
186 positionMessage
.left
= 0
189 m
.css("top", positionMessage
.top
).css("left", positionMessage
.left
).show()
190 f
.css("top", positionFleche
.top
).css("left", positionFleche
.left
).show()
197 * Utilisé pour l'envoie de donnée avec la méthode ajax de jQuery.
199 Util
.prototype.jsonVersAction = function(json
)
201 return {action : JSON
.stringify(json
) }
204 Util
.prototype.md5 = function(chaine
)
206 return hex_md5(chaine
)
209 // pompé de http://www.faqts.com/knowledge_base/view.phtml/aid/13562/fid/130
210 Util
.prototype.setSelectionRange = function(input
, selectionStart
, selectionEnd
)
212 if (input
.setSelectionRange
)
215 input
.setSelectionRange(selectionStart
, selectionEnd
)
217 else if (input
.createTextRange
)
219 var range
= input
.createTextRange()
221 range
.moveEnd('character', selectionEnd
)
222 range
.moveStart('character', selectionStart
)
227 Util
.prototype.setCaretToEnd = function(input
)
229 this.setSelectionRange(input
, input
.value
.length
, input
.value
.length
)
231 Util
.prototype.setCaretToBegin = function(input
)
233 this.setSelectionRange(input
, 0, 0)
235 Util
.prototype.setCaretToPos = function(input
, pos
)
237 this.setSelectionRange(input
, pos
, pos
)
239 Util
.prototype.selectString = function(input
, string
)
241 var match
= new RegExp(string
, "i").exec(input
.value
)
244 this.setSelectionRange (input
, match
.index
, match
.index
+ match
[0].length
)
247 Util
.prototype.replaceSelection = function(input
, replaceString
) {
248 if (input
.setSelectionRange
)
250 var selectionStart
= input
.selectionStart
251 var selectionEnd
= input
.selectionEnd
252 input
.value
= input
.value
.substring(0, selectionStart
) + replaceString
+ input
.value
.substring(selectionEnd
)
254 if (selectionStart
!= selectionEnd
) // has there been a selection
255 this.setSelectionRange(input
, selectionStart
, selectionStart
+ replaceString
.length
)
257 this.setCaretToPos(input
, selectionStart
+ replaceString
.length
)
259 else if (document
.selection
)
262 var range
= document
.selection
.createRange()
263 if (range
.parentElement() == input
)
265 var isCollapsed
= range
.text
== ''
266 range
.text
= replaceString
269 range
.moveStart('character', -replaceString
.length
);
275 Util
.prototype.rot13 = function(chaine
)
277 var ACode
= 'A'.charCodeAt(0)
278 var aCode
= 'a'.charCodeAt(0)
279 var MCode
= 'M'.charCodeAt(0)
280 var mCode
= 'm'.charCodeAt(0)
281 var ZCode
= 'Z'.charCodeAt(0)
282 var zCode
= 'z'.charCodeAt(0)
284 var f = function(ch
, pos
) {
285 if (pos
== ch
.length
)
288 var c
= ch
.charCodeAt(pos
);
289 return String
.fromCharCode(
291 (c
>= ACode
&& c
<= MCode
|| c
>= aCode
&& c
<= mCode
? 13 :
292 (c
> MCode
&& c
<= ZCode
|| c
> mCode
&& c
<= zCode
? -13 : 0))
298 ///////////////////////////////////////////////////////////////////////////////////////////////////
302 this.pageCourante
= null
307 * Accepte soit un objet soit un string.
308 * un string correspond au nom de la page, par exemple : "page" -> "page.html"
310 Pages
.prototype.ajouterPage = function(page
)
312 if (typeof page
== "string")
314 this.pages
[page
] = page
318 page
.pages
= this // la magie des langages dynamiques : le foutoire
319 this.pages
[page
.nom
] = page
323 Pages
.prototype.afficherPage = function(nomPage
, forcerChargement
)
325 if (forcerChargement
== undefined) forcerChargement
= false
327 var page
= this.pages
[nomPage
]
328 if (page
== undefined || (!forcerChargement
&& page
== this.pageCourante
)) return
330 if (this.pageCourante
!= null && this.pageCourante
.decharger
)
331 this.pageCourante
.decharger()
333 $("#menu li").removeClass("courante")
334 $("#menu li." + nomPage
).addClass("courante")
336 this.pageCourante
= page
338 if (typeof page
== "string")
339 $.ajax({async: false, url: "pages/" + page
+ ".html", success : function(page
) { contenu
+= page
}})
341 contenu
+= this.pageCourante
.contenu()
342 $("#page").html(contenu
).removeClass().addClass(this.pageCourante
.nom
)
344 if (this.pageCourante
.charger
)
345 this.pageCourante
.charger()
348 ///////////////////////////////////////////////////////////////////////////////////////////////////
351 * Classe permettant de formater du texte par exemple pour la substitution des liens dans les
352 * message par "[url]".
353 * TODO : améliorer l'efficacité des méthods notamment lié au smiles.
357 this.smiles
= conf
.smiles
358 this.protocoles
= "http|https|ed2k"
360 this.regexUrl
= new RegExp("(?:(?:" + this.protocoles
+ ")://|www\\.)[^ ]*", "gi")
361 this.regexImg
= new RegExp("^.*?\\.(gif|jpg|png|jpeg|bmp|tiff)$", "i")
362 this.regexDomaine
= new RegExp("^(?:(?:" + this.protocoles
+ ")://|www\\.).*?([^/.]+\\.[^/.]+)(?:$|/).*$", "i")
363 this.regexTestProtocoleExiste
= new RegExp("^(?:" + this.protocoles
+ ")://.*$", "i")
364 this.regexNomProtocole
= new RegExp("^(.*?)://")
368 * Formate un pseudo saise par l'utilisateur.
369 * @param pseudo le pseudo brut
370 * @return le pseudo filtré
372 Formateur
.prototype.filtrerInputPseudo = function(pseudo
)
374 return pseudo
.replace(/{|}/g, "").trim()
377 Formateur
.prototype.getSmilesHTML = function()
380 for (var sNom
in this.smiles
)
382 XHTML
+= "<img class=\"" + sNom
+ "\" src=\"img/smileys/" + sNom
+ ".gif\" alt =\"" + sNom
+ "\" />"
388 * Formatage complet d'un texte.
390 * @pseudo facultatif, permet de contruire le label des images sous la forme : "<Pseudo> : <Message>"
392 Formateur
.prototype.traitementComplet = function(M
, pseudo
)
394 return this.traiterLiensConv(this.traiterSmiles(this.traiterURL(this.traiterWikiSyntaxe(this.remplacerBalisesHTML(M
)), pseudo
)))
398 * Transforme les liens en entités clickables.
399 * Un lien vers une conversation permet d'ouvrire celle ci, elle se marque comme ceci dans un message :
400 * "{5F}" ou 5F est la racine de la conversation.
401 * Ce lien sera transformer en <span class="lienConv">{5F}</span> pouvant être clické pour créer la conv 5F.
403 Formateur
.prototype.traiterLiensConv = function(M
)
409 return "<span class=\"lienConv\">" + lien
+ "</span>"
415 * FIXME : Cette méthode est attrocement lourde ! A optimiser.
416 * moyenne sur échantillon : 234ms
418 Formateur
.prototype.traiterSmiles = function(M
)
420 for (var sNom
in this.smiles
)
422 ss
= this.smiles
[sNom
]
423 for (var i
= 0; i
< ss
.length
; i
++)
424 M
= M
.replace(ss
[i
], "<img src=\"img/smileys/" + sNom
+ ".gif\" alt =\"" + sNom
+ "\" />")
429 Formateur
.prototype.remplacerBalisesHTML = function(M
)
431 return M
.replace(/</g
, "<").replace(/>/g
, ">").replace(/"/g, ""
;")
434 Formateur.prototype.traiterURL = function(M, pseudo)
438 var traitementUrl = function(url)
440 // si ya pas de protocole on rajoute "http://"
441 if (!thisFormateur
.regexTestProtocoleExiste
.test(url
))
442 url
= "http://" + url
443 var extension
= thisFormateur
.getShort(url
)
444 return "<a " + (extension
[1] ? "title=\"" + (pseudo
== undefined ? "" : thisFormateur
.traiterPourFenetreLightBox(pseudo
, url
) + ": ") + thisFormateur
.traiterPourFenetreLightBox(M
, url
) + "\"" + " rel=\"lightbox\"" : "") + " href=\"" + url
+ "\" >[" + extension
[0] + "]</a>"
446 return M
.replace(this.regexUrl
, traitementUrl
)
450 * Formatage en utilisant un sous-ensemble des règles de mediwiki.
451 * par exemple ''italic'' devient <i>italic</i>
453 Formateur
.prototype.traiterWikiSyntaxe = function(M
)
457 function(texte
, capture
)
459 return "<b>" + capture
+ "</b>"
463 function(texte
, capture
)
465 return "<i>" + capture
+ "</i>"
471 * Renvoie une version courte de l'url.
472 * par exemple : http://en.wikipedia.org/wiki/Yakov_Smirnoff devient wikipedia.org
474 Formateur
.prototype.getShort = function(url
)
476 var estUneImage
= false
477 var versionShort
= null
478 var rechercheImg
= this.regexImg
.exec(url
)
480 if (rechercheImg
!= null)
482 versionShort
= rechercheImg
[1].toLowerCase()
483 if (versionShort
== "jpeg") versionShort
= "jpg" // jpeg -> jpg
488 var rechercheDomaine
= this.regexDomaine
.exec(url
)
489 if (rechercheDomaine
!= null && rechercheDomaine
.length
>= 2)
490 versionShort
= rechercheDomaine
[1]
493 var nomProtocole
= this.regexNomProtocole
.exec(url
)
494 if (nomProtocole
!= null && nomProtocole
.length
>= 2)
495 versionShort
= nomProtocole
[1]
499 return [versionShort
== null ? "url" : versionShort
, estUneImage
]
503 * Traite les pseudo et messages à être affiché dans le titre d'une image visualisé avec lightbox.
505 Formateur
.prototype.traiterPourFenetreLightBox = function(M
, urlCourante
)
508 var traitementUrl = function(url
)
510 return "[" + thisFormateur
.getShort(url
)[0] + (urlCourante
== url
? "*" : "") + "]"
513 return this.remplacerBalisesHTML(M
).replace(this.regexUrl
, traitementUrl
)
517 ///////////////////////////////////////////////////////////////////////////////////////////////////
519 // les statuts possibes du client
521 // mode enregistré, peut poster des messages et modifier son profile
523 // mode identifié, peut poster des messages mais n'a pas accès au profile
524 auth_not_registered : 1,
525 // mode déconnecté, ne peut pas poster de message
529 function Client(util
)
534 this.regexCookie
= new RegExp("^cookie=([^;]*)")
536 // données personnels
537 this.resetDonneesPersonnelles()
539 this.setStatut(statutType
.deconnected
)
541 // si true alors chaque modification du client est mémorisé sur le serveur
542 this.autoflush
= $.browser
["opera"]
545 Client
.prototype.resetDonneesPersonnelles = function()
548 this.pseudo
= conf
.pseudoDefaut
552 this.css
= $("link#cssPrincipale").attr("href")
553 this.nickFormat
= "nick"
554 this.viewTimes
= true
555 this.viewTooltips
= true
556 this.cookie
= undefined
558 this.pagePrincipale
= 1
559 this.ekMaster
= false
561 // les conversations, une conversation est un objet possédant les attributs suivants :
564 this.conversations
= new Array()
567 Client
.prototype.setCss = function(css
)
569 if (this.css
== css
|| css
== "")
573 $("link#cssPrincipale").attr("href", this.css
)
574 if (this.autoflush
) this.flush(true)
577 Client
.prototype.pageSuivante = function(numConv
)
579 if (numConv
< 0 && this.pagePrincipale
> 1)
580 this.pagePrincipale
-= 1
581 else if (this.conversations
[numConv
].page
> 1)
582 this.conversations
[numConv
].page
-= 1
585 Client
.prototype.pagePrecedente = function(numConv
)
588 this.pagePrincipale
+= 1
590 this.conversations
[numConv
].page
+= 1
594 * Définit la première page pour la conversation donnée.
595 * @return true si la page a changé sinon false
597 Client
.prototype.goPremierePage = function(numConv
)
601 if (this.pagePrincipale
== 1)
603 this.pagePrincipale
= 1
607 if (this.conversations
[numConv
].page
== 1)
609 this.conversations
[numConv
].page
= 1
615 * Ajoute une conversation à la vue de l'utilisateur.
616 * Le profile de l'utilisateur est directement sauvegardé sur le serveur.
617 * @param racines la racine de la conversation (integer)
618 * @return true si la conversation a été créée sinon false (par exemple si la conv existe déjà)
620 Client
.prototype.ajouterConversation = function(racine
)
622 // vérification s'il elle n'existe pas déjà
623 for (var i
= 0; i
< this.conversations
.length
; i
++)
624 if (this.conversations
[i
].root
== racine
)
627 this.conversations
.push({root : racine
, page : 1})
629 if (this.autoflush
) this.flush(true)
634 Client
.prototype.supprimerConversation = function(num
)
636 if (num
< 0 || num
>= this.conversations
.length
) return
638 // décalage TODO : supprimer le dernier élément
639 for (var i
= num
; i
< this.conversations
.length
- 1; i
++)
640 this.conversations
[i
] = this.conversations
[i
+1]
641 this.conversations
.pop()
643 if (this.autoflush
) this.flush(true)
646 Client
.prototype.getJSONLogin = function(login
, password
)
649 "action" : "authentification",
651 "password" : password
655 Client
.prototype.getJSONLoginCookie = function()
658 "action" : "authentification",
659 "cookie" : this.cookie
664 * le couple (login, password) est facultatif. S'il n'est pas fournit alors il ne sera pas possible
665 * de s'autentifier avec (login, password).
667 Client
.prototype.getJSONEnregistrement = function(login
, password
)
669 var mess
= { "action" : "register" }
671 if (login
!= undefined && password
!= undefined)
673 mess
["login"] = login
674 mess
["password"] = password
680 Client
.prototype.getJSONConversations = function()
682 var conversations
= new Array()
683 for (var i
= 0; i
< this.conversations
.length
; i
++)
684 conversations
.push({ "root" : this.conversations
[i
].root
, "page" : this.conversations
[i
].page
})
688 Client
.prototype.getJSONProfile = function()
691 "action" : "set_profile",
692 "cookie" : this.cookie
,
693 "login" : this.login
,
694 "password" : this.password
,
695 "nick" : this.pseudo
,
696 "email" : this.email
,
698 "nick_format" : this.nickFormat
,
699 "view_times" : this.viewTimes
,
700 "view_tooltips" : this.viewTooltips
,
701 "main_page" : this.pagePrincipale
< 1 ? 1 : this.pagePrincipale
,
702 "conversations" : this.getJSONConversations()
707 * Renvoie null si pas définit.
709 Client
.prototype.getCookie = function()
711 var cookie
= this.regexCookie
.exec(document
.cookie
)
712 if (cookie
== null) this.cookie
= null
713 else this.cookie
= cookie
[1]
716 Client
.prototype.delCookie = function()
718 document
.cookie
= "cookie=; max-age=0"
721 Client
.prototype.setCookie = function()
723 if (this.cookie
== null || this.cookie
== undefined)
726 // ne fonctionne pas sous IE....
727 /*document.cookie = "cookie=" + this.cookie + "; max-age=" + (60 * 60 * 24 * 365) */
730 "cookie="+this.cookie
+"; expires=" + new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * 365).toUTCString()
733 Client
.prototype.authentifie = function()
735 return this.statut
== statutType
.auth_registered
|| this.statut
== statutType
.auth_not_registered
738 Client
.prototype.setStatut = function(statut
)
740 // conversation en "enum" si en "string"
741 if (typeof(statut
) == "string")
744 statut
== "auth_registered" ?
745 statutType
.auth_registered :
746 (statut
== "auth_not_registered" ? statutType
.auth_not_registered : statutType
.deconnected
)
749 if (statut
== this.statut
) return
756 * Effectue la connexion vers le serveur.
757 * Cette fonction est bloquante tant que la connexion n'a pas été établie.
758 * S'il existe un cookie en local on s'authentifie directement avec lui.
759 * Si il n'est pas possible de s'authentifier alors on affiche un captcha anti-bot.
761 Client
.prototype.connexionCookie = function()
764 if (this.cookie
== null) return false;
765 return this.connexion(this.getJSONLoginCookie())
768 Client
.prototype.connexionLogin = function(login
, password
)
770 return this.connexion(this.getJSONLogin(login
, password
))
773 Client
.prototype.enregistrement = function(login
, password
)
775 if (this.authentifie())
778 this.password
= password
781 this.setStatut(statutType
.auth_registered
)
788 return this.connexion(this.getJSONEnregistrement(login
, password
))
792 Client
.prototype.connexion = function(messageJson
)
794 ;; dumpObj(messageJson
)
802 data: this.util
.jsonVersAction(messageJson
),
807 if (data
["reply"] == "error")
808 thisClient
.util
.messageDialogue(data
["error_message"])
810 thisClient
.chargerDonnees(data
)
814 return this.authentifie()
817 Client
.prototype.deconnexion = function()
821 this.resetDonneesPersonnelles()
822 this.setStatut(statutType
.deconnected
) // deconnexion
825 Client
.prototype.chargerDonnees = function(data
)
827 // la modification du statut qui suit met à jour le menu, le menu dépend (page admin)
828 // de l'état ekMaster
829 this.ekMaster
= data
["ek_master"] != undefined ? data
["ek_master"] : false
831 this.setStatut(data
["status"])
833 if (this.authentifie())
835 this.cookie
= data
["cookie"]
839 this.login
= data
["login"]
840 this.pseudo
= data
["nick"]
841 this.email
= data
["email"]
842 this.setCss(data
["css"])
843 this.nickFormat
= data
["nick_format"]
844 this.viewTimes
= data
["view_times"]
845 this.viewTooltips
= data
["view_tooltips"]
847 // la page de la conversation principale
848 this.pagePrincipale
= data
["main_page"] == undefined ? 1 : data
["main_page"]
851 this.conversations
= data
["conversations"]
854 this.majCssSelectionee()
859 * Met à jour les données personne sur serveur.
860 * @param async de manière asynchrone ? défaut = true
861 * @return false si le flush n'a pas pû se faire sinon true
863 Client
.prototype.flush = function(async
)
865 if (async
== undefined)
868 if (!this.authentifie())
871 var thisClient
= this
874 ;; dumpObj(this.getJSONProfile())
881 data: this.util
.jsonVersAction(this.getJSONProfile()),
886 if (data
["reply"] == "error")
888 thisClient
.util
.messageDialogue(data
["error_message"])
893 thisClient
.majBulle()
902 Client
.prototype.majMenu = function()
904 displayType
= "block"
906 $("#menu .admin").css("display", this.ekMaster
? displayType : "none")
908 // met à jour le menu
909 if (this.statut
== statutType
.auth_registered
)
911 $("#menu .profile").css("display", displayType
).text("profile")
912 $("#menu .logout").css("display", displayType
)
913 $("#menu .register").css("display", "none")
915 else if (this.statut
== statutType
.auth_not_registered
)
917 $("#menu .profile").css("display", "none")
918 $("#menu .logout").css("display", displayType
)
919 $("#menu .register").css("display", displayType
)
923 $("#menu .profile").css("display", displayType
).text("login")
924 $("#menu .logout").css("display", "none")
925 $("#menu .register").css("display", displayType
)
930 * Met à jour l'affichage des infos bulles en fonction du profile.
932 Client
.prototype.majBulle = function()
934 this.util
.bulleActive
= this.viewTooltips
938 * Met à jour la css sélectionnée, lors du chargement des données.
940 Client
.prototype.majCssSelectionee = function()
942 // extraction du numéro de la css courante
943 var numCssCourante
= this.css
.match(/^.*?\/(\d)\/.*$/)
944 if (numCssCourante
[1] != undefined)
946 $("#menuCss option").removeAttr("selected")
947 $("#menuCss option[value=" + numCssCourante
[1]+ "]").attr("selected", "selected")
951 Client
.prototype.slap = function(userId
, raison
)
953 var thisClient
= this
959 data: this.util
.jsonVersAction(
962 "cookie" : thisClient
.cookie
,
969 if (data
["reply"] == "error")
970 thisClient
.util
.messageDialogue(data
["error_message"])
975 Client
.prototype.ban = function(userId
, raison
, minutes
)
977 var thisClient
= this
979 // par défaut un ban correspond à 3 jours
980 if (typeof(minutes
) == "undefined")
981 minutes
= conf
.tempsBan
;
987 data: this.util
.jsonVersAction(
990 "cookie" : thisClient
.cookie
,
991 "duration" : minutes
,
998 if (data
["reply"] == "error")
999 thisClient
.util
.messageDialogue(data
["error_message"])
1004 Client
.prototype.kick = function(userId
, raison
)
1006 this.ban(userId
, raison
, conf
.tempsKick
)
1009 ///////////////////////////////////////////////////////////////////////////////////////////////////
1012 * classe permettant de gérer les événements (push serveur).
1013 * l'information envoyé est sous la forme :
1015 * "action" : "wait_event"
1019 * l'information reçu est sous la forme :
1025 function PageEvent(page
, util
)
1030 // l'objet JSONHttpRequest représentant la connexion d'attente
1031 this.attenteCourante
= null
1033 // le multhreading du pauvre, merci javascript de m'offrire autant de primitives pour la gestion de la concurrence...
1038 * Arrête l'attente courante s'il y en a une.
1040 PageEvent
.prototype.stopAttenteCourante = function()
1044 if (this.attenteCourante
!= null)
1046 this.attenteCourante
.abort()
1051 * Attend un événement lié à la page.
1052 * @funSend une fonction renvoyant les données json à envoyer
1053 * @funsReceive est un objet comprenant les fonctions à appeler en fonction du "reply"
1054 * les fonctions acceptent un paramètre correspondant au données reçues.
1055 * exemple : {"new_message" : function(data){ ... }}
1057 PageEvent
.prototype.waitEvent = function(funSend
, funsReceive
)
1059 this.stopAttenteCourante()
1063 var thisPageEvent
= this
1065 // on doit conserver l'ordre des valeurs de l'objet JSON (le serveur les veut dans l'ordre définit dans le protocole)
1066 // TODO : ya pas mieux ?
1069 "action" : "wait_event",
1072 var poulpe
= funSend()
1074 dataToSend
[v
] = poulpe
[v
]
1076 ;; dumpObj(dataToSend
)
1078 this.attenteCourante
= jQuery
.ajax({
1082 // Obsolète (voir TODO)
1083 //timeout: 300000, // timeout de 5min. Gros HACK pas beau. FIXME problème décrit ici : http://groups.google.com/group/jquery-en/browse_thread/thread/8724e64af3333a76
1084 data: this.util
.jsonVersAction(dataToSend
),
1090 funsReceive
[data
["reply"]](data
)
1092 // rappel de la fonction dans 100 ms
1093 setTimeout(function(){ thisPageEvent
.waitEvent2(funSend
, funsReceive
) }, 100)
1096 function(XMLHttpRequest
, textStatus
, errorThrown
)
1098 ;; console
.log("Connexion perdue dans waitEvent")
1099 setTimeout(function(){ thisPageEvent
.waitEvent2(funSend
, funsReceive
) }, 1000)
1105 * Si un stopAttenteCourante survient un peu n'importe quand il faut imédiatement arreter de boucler.
1107 PageEvent
.prototype.waitEvent2 = function(funSend
, funsReceive
)
1111 this.waitEvent(funSend
, funsReceive
)
1114 ///////////////////////////////////////////////////////////////////////////////////////////////////
1116 function initialiserListeStyles(client
)
1118 $("#menuCss").change(
1121 client
.setCss("css/" + $("option:selected", this).attr("value") + "/euphorik.css")
1126 // charge dynamiquement le script de debug
1127 ;; jQuery
.ajax({async : false, url : "js/debug.js", dataType : "script"})
1133 var formateur
= new Formateur()
1134 var util
= new Util(formateur
)
1135 var client
= new Client(util
)
1136 var pages
= new Pages()
1138 // connexion vers le serveur (utilise un cookie qui traine)
1139 client
.connexionCookie()
1141 initialiserListeStyles(client
)
1143 // FIXME : ne fonctionne pas sous opera
1144 // voir : http://dev.jquery.com/ticket/2892#preview
1145 $(window
).unload(function(){client
.flush()})
1147 $("#menu .minichat").click(function(){ pages
.afficherPage("minichat") })
1148 $("#menu .admin").click(function(){ pages
.afficherPage("admin") })
1149 $("#menu .profile").click(function(){ pages
.afficherPage("profile") })
1150 $("#menu .logout").click(function(){
1151 util
.messageDialogue("Êtes-vous sur de vouloir vous délogger ?", messageType
.question
,
1154 client
.deconnexion();
1155 pages
.afficherPage("minichat", true)
1157 "Non" : function(){}
1161 $("#menu .register").click(function(){ pages
.afficherPage("register") })
1162 $("#menu .about").click(function(){ pages
.afficherPage("about") })
1164 // TODO : simplifier et pouvoir créer des liens par exemple : <span class="lien" href="conditions">Conditions d'utilisation</span>
1165 $("#footer .conditions").click(function(){ pages
.afficherPage("conditions_utilisation") })
1167 pages
.ajouterPage(new PageMinichat(client
, formateur
, util
))
1168 pages
.ajouterPage(new PageAdmin(client
, formateur
, util
))
1169 pages
.ajouterPage(new PageProfile(client
, formateur
, util
))
1170 pages
.ajouterPage(new PageRegister(client
, formateur
, util
))
1171 pages
.ajouterPage(new PageAbout(client
, formateur
, util
))
1172 pages
.ajouterPage("conditions_utilisation")
1174 pages
.afficherPage("minichat")