DEL tout ce qui concerne la gestion du CAPTCHA
[euphorik.git] / modules / erl / euphorik_protocole.erl
1 % coding: utf-8
2 % Ce module gére les différents message envoyé par le client (javascript) via AJAX.
3 % Par exemple le client peut demander les derniers messages du minichat.
4 % Les messages sont au format XML, la plus part des fonctions accepte un xmlDocument() et renvoie un string()
5 % qui est la réponse XML.
6 % Example XML : http://www.erlang.org/doc/apps/xmerl/xmerl_ug.html.
7 % @author G.Burri
8
9 -module(euphorik_protocole).
10 -export([
11 nouveau_user_login/1,
12 login/1,
13 logout/1,
14 profile/1,
15 refreshMessage/1,
16 message/1
17 ]).
18
19 -include_lib("xmerl/include/xmerl.hrl").
20 -include("../include/euphorik_bd.hrl").
21 -include("../include/euphorik_defines.hrl").
22
23
24 % Une utilisateur s'enregistre avec un tuple {Login, Password}.
25 % @spec nouveau_user_login(xmerl:xmlElement()) -> string()
26 nouveau_user_login(Action) ->
27 {Login, Password, Login_deja_pris} = case {xmerl_xpath:string("login", Action), xmerl_xpath:string("password", Action)} of
28 {[#xmlElement{content = [#xmlText{value = L}]}], [#xmlElement{content = [#xmlText{value = P}]}]} ->
29 {L, P, case euphorik_minichat:user_by_login(L) of {ok, _} -> true; _ -> false end};
30 _ -> {[], [], false}
31 end,
32 simple_xml_to_string(
33 if Login_deja_pris->
34 xml_reponse_login_pas_ok("Login déjà pris");
35 true ->
36 Cookie = generer_cookie(),
37 User = euphorik_minichat:nouveau_user(Login, Password, Cookie),
38 xml_reponse_login_ok(User)
39 end
40 ).
41
42
43 % Un utilisateur se logge.
44 login(Action) ->
45 case xmerl_xpath:string("cookie", Action) of
46 [#xmlElement{content = [#xmlText{value = Cookie}]}] ->
47 loginUser(euphorik_minichat:user_by_cookie(Cookie));
48 _ ->
49 case {xmerl_xpath:string("login", Action), xmerl_xpath:string("password", Action)} of
50 {[#xmlElement{content = [#xmlText{value = Login}]}], [#xmlElement{content = [#xmlText{value = Password}]}]} ->
51 loginUser(euphorik_minichat:user_by_login_password(Login, Password));
52 _ ->
53 simple_xml_to_string(xml_reponse_login_pas_ok("XML malformé"))
54 end
55 end.
56 loginUser({ok, User}) ->
57 euphorik_minichat:update_date_derniere_connexion(User#user.id),
58 simple_xml_to_string(xml_reponse_login_ok(User));
59 loginUser(_) ->
60 simple_xml_to_string(xml_reponse_login_pas_ok("Erreur de login")).
61
62
63 % Renvoie un string() représentant un cookie en base 36. Il y a 10^32 possibillités.
64 generer_cookie() ->
65 {A1,A2,A3} = now(),
66 random:seed(A1, A2, A3),
67 erlang:integer_to_list(random:uniform(math:pow(10, 32)), 36).
68
69
70 % Un utilisateur se délogge.
71 logout(_) ->
72 do_nothing.
73
74
75 % Modification du profile.
76 profile(Action) ->
77 simple_xml_to_string(
78 case xmerl_xpath:string("cookie", Action) of
79 [#xmlElement{content = [#xmlText{value = Cookie}]}] ->
80 Login = case xmerl_xpath:string("login", Action) of [#xmlElement{content = [#xmlText{value = L}]}] -> L; _ -> undefined end,
81 Password = case xmerl_xpath:string("password", Action) of [#xmlElement{content = [#xmlText{value = P}]}] -> P; _ -> undefined end,
82 Pseudo = case xmerl_xpath:string("pseudo", Action) of [#xmlElement{content = [#xmlText{value = P2}]}] -> P2; _ -> Login end,
83 Email = case xmerl_xpath:string("email", Action) of [#xmlElement{content = [#xmlText{value = E}]}] -> E; _ -> undefined end,
84 Css = case xmerl_xpath:string("css", Action) of [#xmlElement{content = [#xmlText{value = C}]}] -> C; _ -> undefined end,
85 Page_principale = case xmerl_xpath:string("pagePrincipale", Action) of [#xmlElement{content = [#xmlText{value = P3}]}] -> list_to_integer(P3); _ -> undefined end,
86 Conversations = lists:map(
87 fun(Conv) ->
88 [#xmlElement{content = [#xmlText{value = Id_racine_str}]}] = xmerl_xpath:string("racine", Conv),
89 [#xmlElement{content = [#xmlText{value = Page_conv_str}]}] = xmerl_xpath:string("page", Conv),
90 {erlang:list_to_integer(Id_racine_str, 36), list_to_integer(Page_conv_str)}
91 end,
92 xmerl_xpath:string("conversation", Action)
93 ),
94 case euphorik_minichat:set_profile(Cookie, Login, Password, Pseudo, Email, Css, Page_principale, Conversations) of
95 ok ->
96 xml_reponse_profile_ok();
97 login_deja_pris ->
98 xml_reponse_profile_pas_ok("Login déjà pris");
99 _ ->
100 xml_reponse_profile_pas_ok("Impossible de mettre à jour le profile")
101 end;
102 _ ->
103 xml_reponse_profile_pas_ok("XML malformé")
104 end
105 ).
106
107
108 % Renvoie les messages appropriés.
109 refreshMessage(Action) ->
110 simple_xml_to_string(
111 case xmerl_xpath:string("nombreMessage", Action) of % le nombre de message qu'affiche le client
112 [#xmlElement{content = [#xmlText{value = Nb_message_str}]}] ->
113 Nb_message = list_to_integer(Nb_message_str),
114 Dernier_id = case xmerl_xpath:string("dernierMessageId", Action) of % l'id du dernier message que connait le client
115 [#xmlElement{content = [#xmlText{value = D}]}] -> erlang:list_to_integer(D, 36);
116 _ -> 0
117 end,
118 User = case xmerl_xpath:string("cookie", Action) of
119 [#xmlElement{content = [#xmlText{value = Cookie}]}] ->
120 case euphorik_minichat:user_by_cookie(Cookie) of
121 {ok, U} -> U;
122 _ -> inconnu
123 end;
124 _ -> inconnu
125 end,
126 % extraction des conversations en [{id, page}, ..]
127 % Obsolète : obtenu depuis la table 'user'
128 %~ Conversations = lists:map(
129 %~ fun(Conv) ->
130 %~ [#xmlElement{content = [#xmlText{value = Id_racine_str}]}] = xmerl_xpath:string("racine", Conv),
131 %~ [#xmlElement{content = [#xmlText{value = Page_conv_str}]}] = xmerl_xpath:string("page", Conv),
132 %~ {erlang:list_to_integer(Id_racine_str, 36), erlang:list_to_integer(Page_conv_str)}
133 %~ end,
134 %~ xmerl_xpath:string("conversation", Action)
135 %~ ),
136 % accrochez-vous ca va siouxer ;)
137 [{reponse, [{name, "refreshMessages"}],
138 lists:map(
139 fun({Conv, Plus}) ->
140 {conversation, [],
141 [{autresPages, [], [atom_to_list(Plus)]} |
142 lists:map(
143 fun({Mess, Repond_a}) ->
144 Est_proprietaire = User =/= inconnu andalso User#user.id =:= Mess#minichat.auteur_id,
145 A_repondu_a_message = User =/= inconnu andalso euphorik_minichat:a_repondu_a_message(User#user.id, Mess#minichat.id),
146 Est_une_reponse_a_user = User =/= inconnu andalso euphorik_minichat:est_une_reponse_a_user(User#user.id, Mess#minichat.id),
147 User_mess =
148 if Mess#minichat.auteur_id =:= 0 ->
149 inconnu;
150 true ->
151 {ok, U2} = euphorik_minichat:user_by_id(Mess#minichat.auteur_id),
152 U2
153 end,
154 {message, [{id, erlang:integer_to_list(Mess#minichat.id, 36)}],
155 [
156 {date, [], [format_date(Mess#minichat.date)]},
157 {systeme, [], [atom_to_list(Mess#minichat.auteur_id =:= 0)]},
158 {proprietaire, [], [atom_to_list(Est_proprietaire)]},
159 {repondu, [], [atom_to_list(A_repondu_a_message)]},
160 {reponse, [], [atom_to_list(Est_une_reponse_a_user)]},
161 {pseudo, [], [Mess#minichat.pseudo]},
162 {login, [], [if User_mess =:= inconnu -> Mess#minichat.pseudo; true -> User_mess#user.login end]},
163 {contenu, [], [Mess#minichat.contenu]},
164 {repondA, [], xml_repond_a(Repond_a)}
165 ]
166 }
167 end,
168 Conv
169 )
170 ]
171 }
172 end,
173 euphorik_minichat_conversation:conversations(User#user.conversations, Nb_message, Dernier_id, User#user.page_principale)
174 )
175 }];
176 _ ->
177 [{reponse, [{name, "refreshMessages"}], [{erreur, [], ["erreur"]}]}]
178 end
179 ).
180
181
182 % Prend une liste de xml text node et en resort un string()
183 % xmerl : "test & test" devient deux fragments de texte : "test " et "& test", il faut donc rassembler les morceaux...
184 defragmenter(Text_nodes) ->
185 lists:foldl(fun(Node, Acc) -> #xmlText{value = V} = Node, Acc ++ V end, [], Text_nodes).
186
187
188 % Un utilisateur envoie un message
189 message(Action) ->
190 simple_xml_to_string(
191 case {
192 xmerl_xpath:string("cookie", Action),
193 xmerl_xpath:string("pseudo", Action),
194 xmerl_xpath:string("contenu", Action)
195 } of
196 {
197 [#xmlElement{content = [#xmlText{value = Cookie}]}],
198 [#xmlElement{content = Pseudo_fragments}],
199 [#xmlElement{content = Contenu_fragments}]
200 } ->
201 case euphorik_minichat:user_by_cookie(Cookie) of
202 {ok, U} ->
203 Pseudo = defragmenter(Pseudo_fragments),
204 Contenu = defragmenter(Contenu_fragments),
205 % met à jour le pseudo du user
206 euphorik_minichat:update_pseudo_user(U#user.id, Pseudo),
207 Reponses = case xmerl_xpath:string("reponses", Action) of
208 [#xmlElement{content = C}] ->
209 lists:map(
210 fun (Reponse) ->
211 #xmlElement{attributes = [#xmlAttribute{name = id, value = Id_reponse}]} = Reponse,
212 erlang:list_to_integer(Id_reponse, 36)
213 end
214 , C);
215 _ -> []
216 end,
217 Contenu_strip = string:strip(Contenu),
218 if Contenu_strip =:= [] -> xml_reponse_message(pas_ok);
219 true ->
220 case euphorik_minichat:nouveau_message(Contenu, U#user.id, Reponses) of
221 erreur -> xml_reponse_message(pas_ok);
222 _ -> xml_reponse_message(ok)
223 end
224 end;
225 _ -> xml_reponse_message(pas_ok)
226 end;
227 _ ->
228 xml_reponse_message(pas_ok)
229 end
230 ).
231
232
233 % Formatage d'une heure
234 % local_time() -> string
235 format_date(Date) ->
236 DateLocal = calendar:now_to_local_time(Date),
237 DateNowLocal = calendar:local_time(),
238 {{Annee, Mois, Jour}, {Heure, Minute, Seconde}} = DateLocal,
239 {{AnneeNow, _, _}, {_, _, _}} = DateNowLocal,
240 Hier = calendar:date_to_gregorian_days(element(1, DateLocal)) =:= calendar:date_to_gregorian_days(element(1, DateNowLocal)) - 1,
241 if element(1, DateLocal) =:= element(1, DateNowLocal) ->
242 "";
243 Hier ->
244 "Hier ";
245 Annee =:= AnneeNow ->
246 io_lib:format("~2.10.0B/~2.10.0B ", [Jour, Mois]);
247 true ->
248 io_lib:format("~2.10.0B/~2.10.0B/~B ", [Jour, Mois, Annee])
249 end ++
250 io_lib:format("~2.10.0B:~2.10.0B:~2.10.0B", [Heure, Minute, Seconde]).
251
252
253 %%%%%%%%% <Réponses XML> %%%%%%%%%
254 simple_xml_to_string(XML) ->
255 lists:flatten(xmerl:export_simple(XML, xmerl_xml, [{prolog, ["<?xml version=\"1.0\" encoding=\"utf-8\" ?>\n"]}])).
256
257
258 % Construit une réponse positive à un login
259 % si Enregistre vaut true alors cela veut dire que la personne s'est enregistré (elle possède au moins un login et un password)
260 xml_reponse_login_ok(User) ->
261 [{reponse, [{name, "login"}],
262 [
263 {statut, [if (User#user.password =/= []) and (User#user.login =/= []) -> "enregistre"; true -> "identifie" end]},
264 {cookie, [User#user.cookie]},
265 {id, [erlang:integer_to_list(User#user.id, 36)]},
266 {pseudo, [User#user.pseudo]},
267 {login, [User#user.login]},
268 {email, [User#user.email]},
269 {css, [User#user.css]},
270 {pagePrincipale, [integer_to_list(User#user.page_principale)]}
271 ] ++
272 lists:map(
273 fun(C) ->
274 {conversation,
275 [
276 {racine, [erlang:integer_to_list(element(1, C), 36)]},
277 {page, [integer_to_list(element(2, C))]}
278 ]
279 }
280 end,
281 User#user.conversations
282 )
283 }].
284
285
286 % Construit un réponse négative à un login
287 xml_reponse_login_pas_ok(Message) ->
288 [{reponse, [{name, "login"}],
289 [
290 {statut, ["erreur"]},
291 {information, [Message]}
292 ]
293 }].
294
295
296 xml_reponse_profile_ok() ->
297 [{reponse, [{name, "profile"}],
298 [
299 {statut, ["ok"]}
300 ]
301 }].
302
303
304 xml_reponse_profile_pas_ok(Message) ->
305 [{reponse, [{name, "profile"}],
306 [
307 {statut, ["pas ok"]},
308 {information, [Message]}
309 ]
310 }].
311
312
313 % Pas utilisé
314 %~ xml_conversation(Mess_id, Nb) ->
315 %~ {Mess_id, Conversation} = minichat:conversation(Mess_id, Nb),
316 %~ xml_conversation(Conversation).
317 %~ xml_conversation([]) -> [];
318 %~ xml_conversation(Liste_id) ->
319 %~ lists:map(
320 %~ fun({Id, Sous_liste}) ->
321 %~ {id, [{id, erlang:integer_to_list(Id, 36)}], xml_conversation(Sous_liste)}
322 %~ end,
323 %~ Liste_id
324 %~ ).
325
326
327 % Renvoie un element XML representant une liste de messages auquel le message M_id repond
328 xml_repond_a(Reponses) ->
329 lists:map(
330 fun(Id_mess) ->
331 {ok, M} = euphorik_minichat:message_by_id(Id_mess),
332 {ok, User} = euphorik_minichat:user_by_mess(Id_mess),
333 {id, [{id, erlang:integer_to_list(M#minichat.id, 36)}, {pseudo, M#minichat.pseudo}, {login, User#user.login}], []}
334 end,
335 Reponses
336 ).
337
338
339 xml_reponse_message(Ok) ->
340 [
341 {reponse, [{name, "message"}],
342 [
343 {statut, [], [case Ok of ok -> "ok"; pas_ok -> "pas ok" end]}
344 ]
345 }
346 ].
347
348 %%%%%%%%% </réponses XML> %%%%%%%%%