X-Git-Url: http://git.euphorik.ch/?p=euphorik.git;a=blobdiff_plain;f=js%2Feuphorik.js;h=228ea3ce3a25fd15024c6267399e4a58cdffd3ae;hp=3a9b0d767a57635c7a6ec52fcd4b3a25461f2d2b;hb=ce1fba00ff3eaa6708d6070763f74a400273203b;hpb=1676c1bd20cb3e8e1b0f98d18df88c4520dcae6d diff --git a/js/euphorik.js b/js/euphorik.js index 3a9b0d7..228ea3c 100755 --- a/js/euphorik.js +++ b/js/euphorik.js @@ -1,298 +1,88 @@ -// 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 . - -/** - * Contient la base javascript pour le site euphorik.ch. +// 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 . + +/** + * Contient la base javascript pour le site euphorik.ch. * Chaque page possède son propre fichier js nommé "page.js". * Auteur : GBurri * Date : 6.11.2007 */ - - -/** - * La configuration. - * Normalement 'const' à la place de 'var' mais non supporté par IE7. - */ -var conf = { - nbMessageAffiche : 40, // (par page) - pseudoDefaut : "", - tempsAffichageMessageDialogue : 4000, // en ms - tempsKick : 15, // en minute - tempsBan : 60 * 24 * 3, // en minutes (3jours) - smiles : { - "smile" : [/:\)/g, /:-\)/g], - "bigsmile" : [/:D/g, /:-D/g], - "clin" : [/;\)/g, /;-\)/g], - "cool" : [/8\)/g, /8-\)/g], - "eheheh" : [/:P/g, /:-P/g], - "lol" : [/\[-lol\]/g], - "spliff" : [/\[-spliff\]/g], - "oh" : [/:o/g, /:O/g], - "heink" : [/\[-heink\]/g], - "hum" : [/\[-hum\]/g], - "boh" : [/\[-boh\]/g], - "sniff" : [/:\(/g, /:-\(/g], - "triste" : [/\[-triste\]/g], - "pascontent" : [/>\(/g, />\(/g], - "argn" : [/\[-argn\]/g], - "redface" : [/\[-redface\]/g], - "bunny" : [/\[-lapin\]/g], - "chat" : [/\[-chat\]/g], - "renne" : [/\[-renne\]/g], - "star" : [/\[-star\]/g], - "kirby" : [/\[-kirby\]/g], - "slurp" : [/\[-slurp\]/g], - "agreed" : [/\[-agreed\]/g], - "dodo" : [/\[-dodo\]/g], - "bn" : [/\[-bn\]/g] - } -} -/////////////////////////////////////////////////////////////////////////////////////////////////// +// tout euphorik est contenu dans cet objet +var euphorik = {} +// ;; euphorik.include = +// ;; euphorik.include = function(f) { var s = document.createElement('script'); s.type = 'text/javascript'; s.src = "js/" + f + ".js"; document.getElementsByTagName('head')[0].appendChild(s); } + + +// version jQuery : function(f) { jQuery.ajax({async : false, url : "js/" + f + ".js", dataType : "script"}) } +// mais comme il n'est pas encore chargé... +;; euphorik.include = function(f) { +;; var req, url = 'js/' + f + '.js' +;; if (window.XMLHttpRequest) { +;; req = new XMLHttpRequest(); req.open("GET", url, false /* async */); req.send(null); +;; } else if (window.ActiveXObject) { +;; req = new ActiveXObject((navigator.userAgent.toLowerCase().indexOf('msie 5') != -1) ? "Microsoft.XMLHTTP" : "Msxml2.XMLHTTP"); +;; if (req) { req.open("GET", url, false); req.send(); } +;; } +;; if (req!==false) { if (req.status==200) { window.eval(req.responseText); } else if (req.status==404) { alert("erreur de chargement (404) de : " + url) } } +;; } + +;; euphorik.include("jquery") +;; euphorik.include("jquery.lightbox") +;; euphorik.include("md5") +;; euphorik.include("json2") + +;; euphorik.include("conf") +;; euphorik.include("util") + +;; euphorik.include("pageMinichat") +;; euphorik.include("pageAdmin") +;; euphorik.include("pageProfile") +;; euphorik.include("pageRegister") +;; euphorik.include("pageAbout") -String.prototype.trim = function() -{ - return jQuery.trim(this) // anciennement : this.replace(/^\s+|\s+$/g, ""); -} - -String.prototype.ltrim = function() -{ - return this.replace(/^\s+/, ""); -} - -String.prototype.rtrim = function() -{ - return this.replace(/\s+$/, ""); -} - -/////////////////////////////////////////////////////////////////////////////////////////////////// +// tout un tas d'améliorations des objets javascript ;) /** - * Cette classe regroupe des fonctions utilitaires (helpers). - * @formateur est permet de formater les messages affichés à l'aide de messageDialogue (facultatif) - */ -function Util(formateur) -{ - $("#info .fermer").click(function(){ - $("#info").slideUp(50) - }) - - $("body").append('
').append('

') - - this.formateur = formateur - this.bulleActive = true -} - -var messageType = {informatif: 0, question: 1, erreur: 2} - -/** - * Affiche une boite de dialogue avec un message à l'intérieur. - * @param message le message (string) - * @param type voir 'messageType'. par défaut messageType.informatif - * @param les boutons sous la forme d'un objet ou les clefs sont les labels des boutons - * et les valeurs les fonctions executées lorsqu'un bouton est activé. - * @param formate faut-il formaté le message ? true par défaut - */ -Util.prototype.messageDialogue = function(message, type, boutons, formate) -{ - var thisUtil = this - - if (type == undefined) - type = messageType.informatif - - if (formate == undefined) - formate = true - - if (this.timeoutMessageDialogue != undefined) - clearTimeout(this.timeoutMessageDialogue) - - var fermer = function(){$("#info").slideUp(100)} - fermer() - - $("#info .message").html(thisUtil.formateur == undefined || !formate ? message : thisUtil.formateur.traitementComplet(message)) - switch(type) - { - case messageType.informatif : $("#info #icone").attr("class", "information"); break - case messageType.question : $("#info #icone").attr("class", "interrogation"); break - case messageType.erreur : $("#info #icone").attr("class", "exclamation"); break - } - $("#info .boutons").html("") - for (var b in boutons) - $("#info .boutons").append("
" + b + "
").find("div:last").click(boutons[b]).click(fermer) - - $("#info").slideDown(200) - this.timeoutMessageDialogue = setTimeout(fermer, conf.tempsAffichageMessageDialogue) + * Pour chaque propriété de l'objet execute f(p, v) ou p est le nom de la propriété et v sa valeur. + * Ne parcours pas les propriétés des prototypes. + */ +object.prototype.each = function(f) { + for (var b in boutons) { + if (boutons.hasOwnProperty(b)) { + f(b, boutons[b]) + } + } } -/** - * Affiche un info bulle lorsque le curseur survole l'élément donné. - * FIXME : le width de element ne tient pas compte du padding !? - */ -Util.prototype.infoBulle = function(message, element) -{ - var thisUtil = this - - var cacherBulle = function() - { - $("#flecheBulle").hide() - $("#messageBulle").hide() - } - - element.hover( - function(e) - { - if (!thisUtil.bulleActive) - return - - var m = $("#messageBulle") - var f = $("#flecheBulle") - - $("p", m).html(message) - - var positionFleche = { - left : element.offset().left + element.width() / 2 - f.width() / 2, - top : element.offset().top - f.height() - } - var positionMessage = { - left : element.offset().left + element.width() / 2 - m.width() / 2, - top : element.offset().top - f.height() - m.height() - } - var depassementDroit = (positionMessage.left + m.width()) - $("body").width() - if (depassementDroit > 0) - positionMessage.left -= depassementDroit - else - { - if (positionMessage.left < 0) - positionMessage.left = 0 - } - - m.css("top", positionMessage.top).css("left", positionMessage.left).show() - f.css("top", positionFleche.top).css("left", positionFleche.left).show() - }, - cacherBulle - ).click(cacherBulle) +String.prototype.trim = function() { + return jQuery.trim(this) // anciennement : this.replace(/^\s+|\s+$/g, ""); } -/** - * Utilisé pour l'envoie de donnée avec la méthode ajax de jQuery. - */ -Util.prototype.jsonVersAction = function(json) -{ - return {action : JSON.stringify(json) } -} - -Util.prototype.md5 = function(chaine) -{ - return hex_md5(chaine) -} - -// pompé de http://www.faqts.com/knowledge_base/view.phtml/aid/13562/fid/130 -Util.prototype.setSelectionRange = function(input, selectionStart, selectionEnd) -{ - if (input.setSelectionRange) - { - input.focus() - input.setSelectionRange(selectionStart, selectionEnd) - } - else if (input.createTextRange) - { - var range = input.createTextRange() - range.collapse(true) - range.moveEnd('character', selectionEnd) - range.moveStart('character', selectionStart) - range.select() - } -} - -Util.prototype.setCaretToEnd = function(input) -{ - this.setSelectionRange(input, input.value.length, input.value.length) -} -Util.prototype.setCaretToBegin = function(input) -{ - this.setSelectionRange(input, 0, 0) -} -Util.prototype.setCaretToPos = function(input, pos) -{ - this.setSelectionRange(input, pos, pos) -} -Util.prototype.selectString = function(input, string) -{ - var match = new RegExp(string, "i").exec(input.value) - if (match) - { - this.setSelectionRange (input, match.index, match.index + match[0].length) - } -} -Util.prototype.replaceSelection = function(input, replaceString) { - if (input.setSelectionRange) - { - var selectionStart = input.selectionStart - var selectionEnd = input.selectionEnd - input.value = input.value.substring(0, selectionStart) + replaceString + input.value.substring(selectionEnd) - - if (selectionStart != selectionEnd) // has there been a selection - this.setSelectionRange(input, selectionStart, selectionStart + replaceString.length) - else // set caret - this.setCaretToPos(input, selectionStart + replaceString.length) - } - else if (document.selection) - { - var range = document.selection.createRange(); - if (range.parentElement() == input) - { - var isCollapsed = range.text == '' - range.text = replaceString - if (!isCollapsed) - { - // there has been a selection - // it appears range.select() should select the newly - // inserted text but that fails with IE - range.moveStart('character', -replaceString.length); - range.select(); - } - } - } +String.prototype.ltrim = function() { + return this.replace(/^\s+/, ""); } -Util.prototype.rot13 = function(chaine) -{ - var ACode = 'A'.charCodeAt(0) - var aCode = 'a'.charCodeAt(0) - var MCode = 'M'.charCodeAt(0) - var mCode = 'm'.charCodeAt(0) - var ZCode = 'Z'.charCodeAt(0) - var zCode = 'z'.charCodeAt(0) - - var f = function(ch, pos) { - if (pos == ch.length) - return "" - - var c = ch.charCodeAt(pos); - return String.fromCharCode( - c + - (c >= ACode && c <= MCode || c >= aCode && c <= mCode ? 13 : - (c > MCode && c <= ZCode || c > mCode && c <= zCode ? -13 : 0)) - ) + f(ch, pos + 1) - } - return f(chaine, 0) +String.prototype.rtrim = function() { + return this.replace(/\s+$/, ""); } + /////////////////////////////////////////////////////////////////////////////////////////////////// function Pages() @@ -319,8 +109,8 @@ Pages.prototype.ajouterPage = function(page) } Pages.prototype.afficherPage = function(nomPage, forcerChargement) -{ - if (forcerChargement == undefined) forcerChargement = false +{ + if (forcerChargement == undefined) forcerChargement = false var page = this.pages[nomPage] if (page == undefined || (!forcerChargement && page == this.pageCourante)) return @@ -336,8 +126,12 @@ Pages.prototype.afficherPage = function(nomPage, forcerChargement) if (typeof page == "string") $.ajax({async: false, url: "pages/" + page + ".html", success : function(page) { contenu += page }}) else + { contenu += this.pageCourante.contenu() - $("#page").html(contenu).removeClass().addClass(this.pageCourante.nom) + } + $("#page").html(contenu).removeClass().addClass(this.pageCourante.nom + + (this.pageCourante.classes != undefined ? " " + this.pageCourante.classes() : "") // l'objet peut fournire des classes css supplémentaires sous la forme d'un string + ) if (this.pageCourante.charger) this.pageCourante.charger() @@ -352,13 +146,13 @@ Pages.prototype.afficherPage = function(nomPage, forcerChargement) */ function Formateur() { - this.smiles = conf.smiles - this.protocoles = "http|https|ed2k" - - this.regexUrl = new RegExp("(?:(?:" + this.protocoles + ")://|www\\.)[^ ]*", "gi") - this.regexImg = new RegExp("^.*?\\.(gif|jpg|png|jpeg|bmp|tiff)$", "i") - this.regexDomaine = new RegExp("^(?:(?:" + this.protocoles + ")://|www\\.).*?([^/.]+\\.[^/.]+)(?:$|/).*$", "i") - this.regexTestProtocoleExiste = new RegExp("^(?:" + this.protocoles + ")://.*$", "i") + this.smiles = euphorik.conf.smiles + this.protocoles = "http|https|ed2k" + + this.regexUrl = new RegExp("(?:(?:" + this.protocoles + ")://|www\\.)[^ ]*", "gi") + this.regexImg = new RegExp("^.*?\\.(gif|jpg|png|jpeg|bmp|tiff)$", "i") + this.regexDomaine = new RegExp("^(?:(?:" + this.protocoles + ")://|www\\.).*?([^/.]+\\.[^/.]+)(?:$|/).*$", "i") + this.regexTestProtocoleExiste = new RegExp("^(?:" + this.protocoles + ")://.*$", "i") this.regexNomProtocole = new RegExp("^(.*?)://") } @@ -371,16 +165,16 @@ Formateur.prototype.filtrerInputPseudo = function(pseudo) { return pseudo.replace(/{|}/g, "").trim() } - -Formateur.prototype.getSmilesHTML = function() -{ - var XHTML = "" - for (var sNom in this.smiles) - { - XHTML += "\""" - } - return XHTML -} + +Formateur.prototype.getSmilesHTML = function() +{ + var XHTML = "" + for (var sNom in this.smiles) + { + XHTML += "\""" + } + return XHTML +} /** * Formatage complet d'un texte. @@ -408,16 +202,16 @@ Formateur.prototype.traiterLiensConv = function(M) } ) } - -/** + +/** * FIXME : Cette méthode est attrocement lourde ! A optimiser. - * moyenne sur échantillon : 234ms + * moyenne sur échantillon : 234ms */ Formateur.prototype.traiterSmiles = function(M) { for (var sNom in this.smiles) { - ss = this.smiles[sNom] + var ss = this.smiles[sNom] for (var i = 0; i < ss.length; i++) M = M.replace(ss[i], "\""") } @@ -431,12 +225,12 @@ Formateur.prototype.remplacerBalisesHTML = function(M) Formateur.prototype.traiterURL = function(M, pseudo) { - thisFormateur = this + var thisFormateur = this var traitementUrl = function(url) - { - // si ya pas de protocole on rajoute "http://" - if (!thisFormateur.regexTestProtocoleExiste.test(url)) + { + // si ya pas de protocole on rajoute "http://" + if (!thisFormateur.regexTestProtocoleExiste.test(url)) url = "http://" + url var extension = thisFormateur.getShort(url) return "[" + extension[0] + "]" @@ -464,35 +258,35 @@ Formateur.prototype.traiterWikiSyntaxe = function(M) } ) } - -/** - * Renvoie une version courte de l'url. - * par exemple : http://en.wikipedia.org/wiki/Yakov_Smirnoff devient wikipedia.org + +/** + * Renvoie une version courte de l'url. + * par exemple : http://en.wikipedia.org/wiki/Yakov_Smirnoff devient wikipedia.org */ Formateur.prototype.getShort = function(url) -{ +{ var estUneImage = false var versionShort = null var rechercheImg = this.regexImg.exec(url) - if (rechercheImg != null) + if (rechercheImg != null) { - versionShort = rechercheImg[1].toLowerCase() - if (versionShort == "jpeg") versionShort = "jpg" // jpeg -> jpg - estUneImage = true - } - else - { - var rechercheDomaine = this.regexDomaine.exec(url) - if (rechercheDomaine != null && rechercheDomaine.length >= 2) - versionShort = rechercheDomaine[1] - else - { - var nomProtocole = this.regexNomProtocole.exec(url) - if (nomProtocole != null && nomProtocole.length >= 2) - versionShort = nomProtocole[1] - } - } + versionShort = rechercheImg[1].toLowerCase() + if (versionShort == "jpeg") versionShort = "jpg" // jpeg -> jpg + estUneImage = true + } + else + { + var rechercheDomaine = this.regexDomaine.exec(url) + if (rechercheDomaine != null && rechercheDomaine.length >= 2) + versionShort = rechercheDomaine[1] + else + { + var nomProtocole = this.regexNomProtocole.exec(url) + if (nomProtocole != null && nomProtocole.length >= 2) + versionShort = nomProtocole[1] + } + } return [versionShort == null ? "url" : versionShort, estUneImage] } @@ -502,12 +296,12 @@ Formateur.prototype.getShort = function(url) */ Formateur.prototype.traiterPourFenetreLightBox = function(M, urlCourante) { - thisFormateur = this + var thisFormateur = this var traitementUrl = function(url) { return "[" + thisFormateur.getShort(url)[0] + (urlCourante == url ? "*" : "") + "]" } - + return this.remplacerBalisesHTML(M).replace(this.regexUrl, traitementUrl) } @@ -523,31 +317,32 @@ var statutType = { // mode déconnecté, ne peut pas poster de message deconnected : 2 } - -function Client(util) + +function Client(util) { this.util = util - + this.cookie = null this.regexCookie = new RegExp("^cookie=([^;]*)") - // données personnels + // données personnels this.resetDonneesPersonnelles() - this.setStatut(statutType.deconnected) - - // si true alors chaque modification du client est mémorisé sur le serveur - this.autoflush = $.browser["opera"] + this.setStatut(statutType.deconnected) + + // si true alors chaque modification du client est mémorisé sur le serveur + this.autoflush = $.browser["opera"] } - -Client.prototype.resetDonneesPersonnelles = function() + +Client.prototype.resetDonneesPersonnelles = function() { - this.id = 0 - this.pseudo = conf.pseudoDefaut - this.login = "" - this.password = "" - this.email = "" + this.id = 0 + this.pseudo = euphorik.conf.pseudoDefaut + this.login = "" + this.password = "" + this.email = "" this.css = $("link#cssPrincipale").attr("href") + this.chatOrder = "reverse" this.nickFormat = "nick" this.viewTimes = true this.viewTooltips = true @@ -555,11 +350,13 @@ Client.prototype.resetDonneesPersonnelles = function() this.pagePrincipale = 1 this.ekMaster = false + this.ostentatiousMaster = "light" // les conversations, une conversation est un objet possédant les attributs suivants : - // - racine (entier) + // - root (entier) // - page (entier) - this.conversations = new Array() + // - reduit (bool) + this.conversations = [] } Client.prototype.setCss = function(css) @@ -569,8 +366,6 @@ Client.prototype.setCss = function(css) this.css = css $("link#cssPrincipale").attr("href", this.css) - this.majMenu() - if (this.autoflush) this.flush(true) } @@ -623,10 +418,9 @@ Client.prototype.ajouterConversation = function(racine) for (var i = 0; i < this.conversations.length; i++) if (this.conversations[i].root == racine) return false - - this.conversations.push({root : racine, page : 1}) - - if (this.autoflush) this.flush(true) + + this.conversations.push({root : racine, page : 1, reduit : false}) + if (this.autoflush) this.flush(true) return true } @@ -638,15 +432,15 @@ Client.prototype.supprimerConversation = function(num) // décalage TODO : supprimer le dernier élément for (var i = num; i < this.conversations.length - 1; i++) this.conversations[i] = this.conversations[i+1] - this.conversations.pop() - + this.conversations.pop() + if (this.autoflush) this.flush(true) } Client.prototype.getJSONLogin = function(login, password) { return { - "action" : "authentification", + "header" : { "action" : "authentification", "version" : euphorik.conf.versionProtocole }, "login" : login, "password" : password } @@ -655,7 +449,7 @@ Client.prototype.getJSONLogin = function(login, password) Client.prototype.getJSONLoginCookie = function() { return { - "action" : "authentification", + "header" : { "action" : "authentification", "version" : euphorik.conf.versionProtocole }, "cookie" : this.cookie } } @@ -666,7 +460,7 @@ Client.prototype.getJSONLoginCookie = function() */ Client.prototype.getJSONEnregistrement = function(login, password) { - var mess = { "action" : "register" } + var mess = { "header" : { "action" : "register", "version" : euphorik.conf.versionProtocole }} if (login != undefined && password != undefined) { @@ -681,25 +475,26 @@ Client.prototype.getJSONConversations = function() { var conversations = new Array() for (var i = 0; i < this.conversations.length; i++) - conversations.push({ "root" : this.conversations[i].root, "page" : this.conversations[i].page}) + conversations.push({root : this.conversations[i].root, minimized : this.conversations[i].reduit}) return conversations } Client.prototype.getJSONProfile = function() { return { - "action" : "set_profile", + "header" : { "action" : "set_profile", "version" : euphorik.conf.versionProtocole }, "cookie" : this.cookie, "login" : this.login, "password" : this.password, "nick" : this.pseudo, "email" : this.email, "css" : this.css, + "chat_order" : this.chatOrder, "nick_format" : this.nickFormat, "view_times" : this.viewTimes, "view_tooltips" : this.viewTooltips, - "main_page" : this.pagePrincipale < 1 ? 1 : this.pagePrincipale, - "conversations" : this.getJSONConversations() + "conversations" : this.getJSONConversations(), + "ostentatious_master" : this.ostentatiousMaster } } @@ -711,21 +506,23 @@ Client.prototype.getCookie = function() var cookie = this.regexCookie.exec(document.cookie) if (cookie == null) this.cookie = null else this.cookie = cookie[1] -} - -Client.prototype.delCookie = function() -{ - document.cookie = "cookie=; max-age=0" } -Client.prototype.setCookie = function(cookie) +Client.prototype.delCookie = function() +{ + document.cookie = "cookie=; max-age=0" +} + +Client.prototype.setCookie = function() { - if (this.cookie == null) + if (this.cookie == null || this.cookie == undefined) return - document.cookie = - "cookie="+this.cookie+ - "; max-age=" + (60 * 60 * 24 * 365) + // ne fonctionne pas sous IE.... + /*document.cookie = "cookie=" + this.cookie + "; max-age=" + (60 * 60 * 24 * 365) */ + + document.cookie = + "cookie="+this.cookie+"; expires=" + new Date(new Date().getTime() + 1000 * 60 * 60 * 24 * 365).toUTCString() } Client.prototype.authentifie = function() @@ -735,38 +532,39 @@ Client.prototype.authentifie = function() Client.prototype.setStatut = function(statut) { - // conversation en "enum" si en "string" - if (typeof(statut) == "string") + // conversation en "enum" si en "string" + if (typeof(statut) == "string") { statut = statut == "auth_registered" ? statutType.auth_registered : - (statut == "auth_not_registered" ? statutType.auth_not_registered : statutType.deconnected) - } - - if (statut == this.statut) return - - this.statut = statut + (statut == "auth_not_registered" ? statutType.auth_not_registered : statutType.deconnected) + } + + if (statut == this.statut) return + + this.statut = statut this.majMenu() + this.majLogo() } - -/** - * Effectue la connexion vers le serveur. - * Cette fonction est bloquante tant que la connexion n'a pas été établie. - * S'il existe un cookie en local on s'authentifie directement avec lui. - * Si il n'est pas possible de s'authentifier alors on affiche un captcha anti-bot. - */ -Client.prototype.connexionCookie = function() -{ - this.getCookie() + +/** + * Effectue la connexion vers le serveur. + * Cette fonction est bloquante tant que la connexion n'a pas été établie. + * S'il existe un cookie en local on s'authentifie directement avec lui. + * Si il n'est pas possible de s'authentifier alors on affiche un captcha anti-bot. + */ +Client.prototype.connexionCookie = function() +{ + this.getCookie() if (this.cookie == null) return false; - return this.connexion(this.getJSONLoginCookie()) + return this.connexion(this.getJSONLoginCookie()) } Client.prototype.connexionLogin = function(login, password) { return this.connexion(this.getJSONLogin(login, password)) -} +} Client.prototype.enregistrement = function(login, password) { @@ -781,16 +579,18 @@ Client.prototype.enregistrement = function(login, password) } return false } - else + else { - return this.connexion(this.getJSONEnregistrement(login, password)) + return this.connexion(this.getJSONEnregistrement(login, password)) } } +/** + * Connexion. Réalisé de manière synchrone. + */ Client.prototype.connexion = function(messageJson) { - ;; dumpObj(messageJson) - thisClient = this + var thisClient = this jQuery.ajax( { async: false, @@ -801,23 +601,26 @@ Client.prototype.connexion = function(messageJson) success: function(data) { - ;; dumpObj(data) if (data["reply"] == "error") + { thisClient.util.messageDialogue(data["error_message"]) + // suppression du cookie actuel, cas où le cookie du client ne permet pas une authentification + thisClient.delCookie() + } else thisClient.chargerDonnees(data) } } ) return this.authentifie() -} - -Client.prototype.deconnexion = function() +} + +Client.prototype.deconnexion = function() { this.flush(true) this.delCookie() - this.resetDonneesPersonnelles() - this.setStatut(statutType.deconnected) // deconnexion + this.resetDonneesPersonnelles() + this.setStatut(statutType.deconnected) // deconnexion } Client.prototype.chargerDonnees = function(data) @@ -833,22 +636,28 @@ Client.prototype.chargerDonnees = function(data) this.cookie = data["cookie"] this.setCookie() - this.id = data["id"] + this.id = data["id"] this.login = data["login"] - this.pseudo = data["nick"] - this.email = data["email"] + this.pseudo = data["nick"] + this.email = data["email"] this.setCss(data["css"]) + this.chatOrder = data["chat_order"] this.nickFormat = data["nick_format"] this.viewTimes = data["view_times"] this.viewTooltips = data["view_tooltips"] + this.ostentatiousMaster = data["ostentatious_master"] // la page de la conversation principale - this.pagePrincipale = data["main_page"] == undefined ? 1 : data["main_page"] + this.pagePrincipale = 1 // les conversations this.conversations = data["conversations"] + for (var i = 0; i < this.conversations.length; i++) + this.conversations[i] = {root : this.conversations[i].root, page : 1, reduit : this.conversations[i].minimized} this.majBulle() + this.majCssSelectionee() + //this.majLogo() } } @@ -867,8 +676,6 @@ Client.prototype.flush = function(async) var thisClient = this var ok = true - - ;; dumpObj(this.getJSONProfile()) jQuery.ajax( { async: async, @@ -879,7 +686,6 @@ Client.prototype.flush = function(async) success: function(data) { - ;; dumpObj(data) if (data["reply"] == "error") { thisClient.util.messageDialogue(data["error_message"]) @@ -898,28 +704,26 @@ Client.prototype.flush = function(async) Client.prototype.majMenu = function() { - // TODO : à virer : ne plus changer de style de display ... spa beau .. ou trouver une autre méthode - // var displayType = this.css == "css/3/euphorik.css" ? "block" : "inline" //this.client - displayType = "block" + var displayType = "block" $("#menu .admin").css("display", this.ekMaster ? displayType : "none") // met à jour le menu if (this.statut == statutType.auth_registered) { - $("#menu .profile").css("display", displayType).text("profile") + $("#menu .profile").css("display", displayType).text("profile") $("#menu .logout").css("display", displayType) $("#menu .register").css("display", "none") } else if (this.statut == statutType.auth_not_registered) { - $("#menu .profile").css("display", "none") + $("#menu .profile").css("display", "none") $("#menu .logout").css("display", displayType) $("#menu .register").css("display", displayType) } else { - $("#menu .profile").css("display", displayType).text("login") + $("#menu .profile").css("display", displayType).text("login") $("#menu .logout").css("display", "none") $("#menu .register").css("display", displayType) } @@ -933,6 +737,32 @@ Client.prototype.majBulle = function() this.util.bulleActive = this.viewTooltips } +/** + * Met à jour la css sélectionnée, lors du chargement des données. + */ +Client.prototype.majCssSelectionee = function() +{ + // extraction du numéro de la css courante + var numCssCourante = this.css.match(/^.*?\/(\d)\/.*$/) + if (numCssCourante != null && numCssCourante[1] != undefined) + { + $("#menuCss option").removeAttr("selected") + $("#menuCss option[value=" + numCssCourante[1]+ "]").attr("selected", "selected") + } +} + +/** + * Change la "class" du logo en fonction du statut de ekMaster. + */ +Client.prototype.majLogo = function() +{ + if (this.ekMaster) + $("#logo").addClass("ekMaster") + else + $("#logo").removeClass("ekMaster") +} + + Client.prototype.slap = function(userId, raison) { var thisClient = this @@ -943,7 +773,7 @@ Client.prototype.slap = function(userId, raison) dataType: "json", data: this.util.jsonVersAction( { - "action" : "slap", + "header" : { "action" : "slap", "version" : euphorik.conf.versionProtocole }, "cookie" : thisClient.cookie, "user_id" : userId, "reason" : raison @@ -963,7 +793,7 @@ Client.prototype.ban = function(userId, raison, minutes) // par défaut un ban correspond à 3 jours if (typeof(minutes) == "undefined") - minutes = conf.tempsBan; + minutes = euphorik.conf.tempsBan; jQuery.ajax({ type: "POST", @@ -971,7 +801,7 @@ Client.prototype.ban = function(userId, raison, minutes) dataType: "json", data: this.util.jsonVersAction( { - "action" : "ban", + "header" : { "action" : "ban", "version" : euphorik.conf.versionProtocole }, "cookie" : thisClient.cookie, "duration" : minutes, "user_id" : userId, @@ -988,13 +818,23 @@ Client.prototype.ban = function(userId, raison, minutes) Client.prototype.kick = function(userId, raison) { - this.ban(userId, raison, conf.tempsKick) + this.ban(userId, raison, euphorik.conf.tempsKick) } /////////////////////////////////////////////////////////////////////////////////////////////////// /** * classe permettant de gérer les événements (push serveur). + * l'information envoyé est sous la forme : + * { + * "header" : {"action" : "wait_event", "version" : }, + * "page" : + * [..] + * } + * l'information reçu est sous la forme : + * { + * "reply" : + * } * @page la page */ function PageEvent(page, util) @@ -1025,9 +865,11 @@ PageEvent.prototype.stopAttenteCourante = function() /** * Attend un événement lié à la page. * @funSend une fonction renvoyant les données json à envoyer - * @funReceive une fonction qui accepte un paramètre correspondant au données reçues + * @funsReceive est un objet comprenant les fonctions à appeler en fonction du "reply" + * les fonctions acceptent un paramètre correspondant au données reçues. + * exemple : {"new_message" : function(data){ ... }} */ -PageEvent.prototype.waitEvent = function(funSend, funReceive) +PageEvent.prototype.waitEvent = function(funSend, funsReceive) { this.stopAttenteCourante() @@ -1039,34 +881,33 @@ PageEvent.prototype.waitEvent = function(funSend, funReceive) // TODO : ya pas mieux ? var dataToSend = { - "action" : "wait_event", + "header" : { "action" : "wait_event", "version" : euphorik.conf.versionProtocole }, "page" : this.page } var poulpe = funSend() - for (v in poulpe) + for (var v in poulpe) dataToSend[v] = poulpe[v] - ;; dumpObj(dataToSend) - this.attenteCourante = jQuery.ajax({ type: "POST", url: "request", dataType: "json", + // TODO : doit disparaitre + timeout: 180000, // timeout de 3min. Gros HACK pas beau. FIXME problème décrit ici : http://groups.google.com/group/jquery-en/browse_thread/thread/8724e64af3333a76 data: this.util.jsonVersAction(dataToSend), success: function(data) - { - ;; dumpObj(data) - - funReceive(data) + { + funsReceive[data["reply"]](data) // rappel de la fonction dans 100 ms - setTimeout(function(){ thisPageEvent.waitEvent2(funSend, funReceive) }, 100) + setTimeout(function(){ thisPageEvent.waitEvent2(funSend, funsReceive) }, 100) }, error: function(XMLHttpRequest, textStatus, errorThrown) { - setTimeout(function(){ thisPageEvent.waitEvent2(funSend, funReceive) }, 1000) + ;; console.log("Connexion perdue dans waitEvent") + setTimeout(function(){ thisPageEvent.waitEvent2(funSend, funsReceive) }, 1000) } }) } @@ -1074,41 +915,29 @@ PageEvent.prototype.waitEvent = function(funSend, funReceive) /** * Si un stopAttenteCourante survient un peu n'importe quand il faut imédiatement arreter de boucler. */ -PageEvent.prototype.waitEvent2 = function(funSend, funReceive) +PageEvent.prototype.waitEvent2 = function(funSend, funsReceive) { if (this.stop) return - this.waitEvent(funSend, funReceive) + this.waitEvent(funSend, funsReceive) } /////////////////////////////////////////////////////////////////////////////////////////////////// -function initialiserListeStyles(client) -{ - $("#menuCss").change( - function() - { - client.setCss("css/" + $("option:selected", this).attr("value") + "/euphorik.css") - } - ) -} - -// charge dynamiquement le script de debug -;; jQuery.ajax({async : false, url : "js/debug.js", dataType : "script"}) - + // le main $(document).ready( function() - { + { var formateur = new Formateur() - var util = new Util(formateur) + var util = new euphorik.Util(formateur) var client = new Client(util) - var pages = new Pages() - - // connexion vers le serveur (utilise un cookie qui traine) + var pages = new Pages() + + // connexion vers le serveur (utilise un cookie qui traine) client.connexionCookie() - initialiserListeStyles(client) + $("#menuCss").change(function(){ client.setCss("styles/" + $("option:selected", this).attr("value") + "/euphorik.css")}) // FIXME : ne fonctionne pas sous opera // voir : http://dev.jquery.com/ticket/2892#preview @@ -1116,9 +945,9 @@ $(document).ready( $("#menu .minichat").click(function(){ pages.afficherPage("minichat") }) $("#menu .admin").click(function(){ pages.afficherPage("admin") }) - $("#menu .profile").click(function(){ pages.afficherPage("profile") }) + $("#menu .profile").click(function(){ pages.afficherPage("profile") }) $("#menu .logout").click(function(){ - util.messageDialogue("Êtes-vous sur de vouloir vous délogger ?", messageType.question, + util.messageDialogue("Êtes-vous sur de vouloir vous délogger ?", euphorik.Util.messageType.question, {"Oui" : function() { client.deconnexion();