ADD trois mode d'affichage pour les pseudos
[euphorik.git] / modules / erl / euphorik_requests.erl
index 42348cf..7ee5c7d 100755 (executable)
@@ -12,8 +12,9 @@
 \r
 -include_lib("xmerl/include/xmerl.hrl").\r
 -include_lib("yaws/include/yaws_api.hrl").
+
 \r
-% Test du module\r
+% Test du module (TODO)\r
 tester() ->
    que_dal.\r
 
@@ -22,34 +23,22 @@ tester() ->
 out(A) ->\r
    %inet:setopts(A#arg.clisock, inet:getopts(A#arg.clisock, [active])),\r
    {value, {_, Contenu}} = lists:keysearch("action", 1, yaws_api:parse_post(A)),\r
-   Ret = traiter_donnees(Contenu),\r
-   %{content, "text/xml", Ret}.
+   Ret = traiter_donnees(Contenu),
    {content, "application/json", Ret}.\r
 
 \r
 traiter_donnees(Contenu) ->
-   % FIXME : ne plus encapsuler le JSON dans de l'xml... apparement yaws veux absolument de l'xml (voir post mi-avril 2008 sur la mailing list)\r
-   Reponse = case xmerl_scan:string(Contenu) of
-      {#xmlElement{name = json, content = [#xmlText{value = J}|_]}, _} ->
-         case json:decode_string(J) of
-            {ok, {struct, [{action, Action}| Reste]}} ->
-               %io:format("~p~n", [euphorik_protocole:login(JSON)]),
-               json:encode(traiter_action(Action, Reste));
-            _ ->
-               error
-         end;
-      _ -> error
-   end,
-   if Reponse =:= error ->
-         euphorik_protocole:erreur("Format XML/JSON incorrect");
-      true ->
-         Reponse
+   case json:decode_string(Contenu) of
+      {ok, {struct, [{action, Action}| Reste]}} ->
+         json:encode(traiter_action(Action, Reste));
+      _ ->
+         error
    end.
    
 
 % authentification d'un client
 traiter_action("authentification", JSON) ->
-   euphorik_protocole:login(JSON));
+   euphorik_protocole:login(JSON);
 % un client s'enregistre (pseudo + password)
 traiter_action("register", JSON) ->
    euphorik_protocole:register(JSON);
@@ -61,20 +50,5 @@ traiter_action("wait_event", JSON) ->
    euphorik_protocole:wait_event(JSON);
 % un utilisateur envoie un message
 traiter_action("put_message", JSON) ->
-   euphorik_protocole:message(JSON).\r
-
-
-
-
-traiter_action([#xmlAttribute{value="register"}], XML) ->
-   euphorik_protocole:nouveau_user_login(XML); 
-traiter_action([#xmlAttribute{value="login"}], XML) ->
-   euphorik_protocole:login(XML); 
-traiter_action([#xmlAttribute{value="profile"}], XML) ->
-   euphorik_protocole:profile(XML); 
-traiter_action([#xmlAttribute{value="refreshMessages"}], XML) ->
- euphorik_protocole:refreshMessage(XML); 
-% un utilisateur envoie un message
-traiter_action([#xmlAttribute{value="message"}], XML) ->
-   euphorik_protocole:message(XML).
+   euphorik_protocole:put_message(JSON).
  
\ No newline at end of file