{\r
var estUneImage = false
var versionShort = null
- var rechercheImg = this.regexImg.exec(url)\r
- //alert(url)
+ var rechercheImg = this.regexImg.exec(url)
+
if (rechercheImg != null)\r
{
versionShort = rechercheImg[1].toLowerCase()\r
Client.prototype.setStatut = function(statut)
{
- //alert(statut)
// conversation en "enum" si en "string"\r
if (typeof(statut) == "string")\r
{
// 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
- alert(this.ekMaster)
$("#menu .admin").css("display", this.ekMaster ? "inline" : "none")
// met à jour le menu
}
}
-
Client.prototype.slap = function(userId, raison)
{
var thisClient = this
})
}
-
Client.prototype.ban = function(userId, raison, minutes)
{
var thisClient = this
///////////////////////////////////////////////////////////////////////////////////////////////////
+/**
+ * classe permettant de gérer les événements (push serveur).
+ * @page la page
+ */
+function PageEvent(page, util)
+{
+ this.page = page
+ this.util = util
+
+ // l'objet JSONHttpRequest représentant la connexion d'attente
+ this.attenteCourante = null
+}
+
+/**
+ * Arrête l'attente courante s'il y en a une.
+ */
+PageEvent.prototype.stopAttenteCourante = function()
+{
+ if (this.attenteCourante != null)
+ this.attenteCourante.abort()
+}
+
+/**
+ * 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
+ */
+PageEvent.prototype.waitEvent = function(funSend, funReceive)
+{
+ var thisPageEvent = this
+
+ this.stopAttenteCourante()
+
+ // on doit conserver l'ordre des valeurs de l'objet JSON (le serveur les veux dans l'ordre définit dans le protocole)
+ // TODO : ya pas mieux ?
+ var dataToSend =
+ {
+ "action" : "wait_event",
+ "page" : this.page
+ }
+ var poulpe = funSend()
+ for (v in poulpe)
+ dataToSend[v] = poulpe[v]
+
+ ;;; dumpObj(dataToSend)
+ this.attenteCourante = jQuery.ajax({
+ type: "POST",
+ url: "request",
+ dataType: "json",
+ data: this.util.jsonVersAction(dataToSend),
+ success:
+ function(data)
+ {
+ ;;; dumpObj(data)
+
+ funReceive(data)
+
+ // rappel de la fonction dans 100 ms
+ setTimeout(function(){ thisPageEvent.waitEvent(funSend, funReceive) }, 100);
+ },
+ error:
+ function(XMLHttpRequest, textStatus, errorThrown)
+ {
+ setTimeout(function(){ thisPageEvent.rafraichirMessages(funSend, funReceive) }, 1000);
+ }
+ })
+
+}
+
+///////////////////////////////////////////////////////////////////////////////////////////////////
+
function initialiserListeStyles(client)
{
$("#menuCss").change(
PageMinichat.prototype.decharger = function()
{
- //alert(this.attenteCourante)
- this.messages.stopAttenteCourante()
+ this.messages.pageEvent.stopAttenteCourante()
$("body #smiles").remove()
$("body #outilsBan").remove()
this.conversations = new Array() // les conversations, la première représente la conversation principale
this.nouvelleConversation(0)
- // l'objet JSONHttpRequest représentant la connexion d'attente
- this.attenteCourante = null
+ this.pageEvent = new PageEvent("chat", this.util)
}
/**
Messages.prototype.getJSONrafraichirMessages = function()
{
var mess = {
- "action" : "wait_event",
- "page" : "chat",
"message_count" : conf.nbMessageAffiche,
"main_page" : this.client.pagePrincipale,
"conversations" : this.getJSONConversations()
if (this.client.cookie != null) mess["cookie"] = this.client.cookie;
mess["last_message_id"] = this.conversations[0].idDernierMessageAffiche
- // obsolète
- //if (this.idDernierMessage != null) mess["last_message_id"] = this.idDernierMessage
-
return mess
}
Messages.prototype.viderMessages = function()
{
- // Obsolète
- //this.idDernierMessage = null
-
for (var i = 0; i < this.conversations.length; i++)
this.conversations[i].viderMessages()
}
-/**
- * Arrete l'attente courante s'il y en a une.
- */
-Messages.prototype.stopAttenteCourante = function()
-{
- if (this.attenteCourante != null)
- this.attenteCourante.abort()
-}
-
/**
* Met à jour les messages de manière continue.
* (AJAX-Comet-style proof)
*/
Messages.prototype.rafraichirMessages = function(vider)
{
- var thisMessages = this // caisupair javacrypte
+ var thisMessages = this
if (vider == undefined)
vider = false
-
- this.stopAttenteCourante()
if (vider)
for (var i = 0; i < this.conversations.length; i++)
- this.conversations[i].idDernierMessageAffiche = 0\r
-
- ;;; dumpObj(this.getJSONrafraichirMessages())
- this.attenteCourante = jQuery.ajax({
- type: "POST",
- url: "request",
- dataType: "json",
- data: this.util.jsonVersAction(this.getJSONrafraichirMessages()),
- success:
- function(data)
- { \r
- ;;; dumpObj(data)\r
+ this.conversations[i].idDernierMessageAffiche = 0
+ this.pageEvent.waitEvent(
+ function() { return thisMessages.getJSONrafraichirMessages() },
+ function(data)
+ {
if (vider)
+ {
thisMessages.viderMessages()
+ vider = false
+ }
// ajoute les messages reçus à leur conversation respective
for (var numConv = 0; numConv < data["conversations"].length; numConv++)
thisMessages.client.supprimerConversation(numConv - 1)
}
}
-
- // rappel de la fonction dans 100 ms
- setTimeout(function(){ thisMessages.rafraichirMessages() }, 100);
- },
- error:
- function(XMLHttpRequest, textStatus, errorThrown)
- {
- setTimeout(function(){ thisMessages.rafraichirMessages() }, 1000);
- }
- })
+ }
+ )
}
if User2#user.login =:= [] -> ""; true -> "(" ++ User2#user.login ++ ")" end,
if Duration =< 15 -> "kické"; true -> "banni" end,
format_minutes(Duration),
- if Reason =/= [] -> " Raison: " ++ Reason; true -> "" end ++ "."
+ if Reason =/= [] -> " - Raison: " ++ Reason; true -> "" end ++ "."
]
))),
json_reponse_ok();
euphorik_bd:nouveau_message_sys(lists:flatten(io_lib:format("~s s'auto slap~s.",
[
User1#user.pseudo,
- if Reason =/= [] -> " Raison: " ++ Reason; true -> "" end
+ if Reason =/= [] -> " - Raison: " ++ Reason; true -> "" end
]
)));
{ok, User2 = #user{ek_master = false}} ->
[
User2#user.pseudo,
User1#user.pseudo,
- if Reason =/= [] -> " Raison: " ++ Reason; true -> "" end ++ "."
+ if Reason =/= [] -> " - Raison: " ++ Reason; true -> "" end ++ "."
]
))),
json_reponse_ok();
buffer.2.path=/home/gburri/projets/euphorik/js/pageMinichat.js
buffer.2.position=7496
-buffer.2.current=1
buffer.3.path=/home/gburri/projets/euphorik/js/pageProfile.js
buffer.3.position=1
buffer.4.path=/home/gburri/projets/euphorik/js/pageRegister.js
buffer.4.position=1
-buffer.5.path=/home/gburri/projets/euphorik/js/debug.js
+buffer.5.path=/home/gburri/projets/euphorik/js/pageAbout.js
buffer.5.position=1
-buffer.6.path=/home/gburri/projets/euphorik/css/1/euphorik.css
+buffer.6.path=/home/gburri/projets/euphorik/js/pageAdmin.js
buffer.6.position=1
-
-buffer.7.path=/home/gburri/projets/euphorik/css/1/pageAbout.css
-buffer.7.position=1
-
-buffer.8.path=/home/gburri/projets/euphorik/css/1/pageMinichat.css
-buffer.8.position=1
-
-buffer.9.path=/home/gburri/projets/euphorik/css/1/pageProfileRegister.css
-buffer.9.position=164
+buffer.6.current=1