2 % Ce module est fait pour répondre à des requêtes 'AJAX'.
3 % Il est définit comme 'appmods' pour l'url "request" dans yaws.
4 % Par exemple http://www.euphorik.ch/request abouti sur la fonction out() de ce module.
7 -module(euphorik_requests
).
13 -include_lib("xmerl/include/xmerl.hrl").
14 -include_lib("yaws/include/yaws_api.hrl").
17 % Test du module (TODO)
23 %io:format("~p~n~n", [A]),
24 IP
= case inet:peername(A#arg
.clisock
) of
25 {ok
, {Adresse
, _Port
}} -> Adresse
;
28 %inet:setopts(A#arg.clisock, inet:getopts(A#arg.clisock, [active])),
29 {value
, {_
, Contenu
}} = lists:keysearch("action", 1, yaws_api:parse_post(A
)),
30 Ret
= traiter_donnees(Contenu
, IP
),
31 {content
, "application/json", Ret
}.
34 traiter_donnees(Contenu
, IP
) ->
35 case json:decode_string(Contenu
) of
36 {ok
, {struct
, [{action
, Action
}| Reste
]}} ->
37 json:encode(traiter_action(Action
, Reste
, IP
));
43 % authentification d'un client
44 traiter_action("authentification", JSON
, IP
) ->
45 euphorik_protocole:login(JSON
, IP
);
46 % un client s'enregistre (pseudo + password)
47 traiter_action("register", JSON
, IP
) ->
48 euphorik_protocole:register(JSON
, IP
);
49 % modification du profile
50 traiter_action("set_profile", JSON
, _
) ->
51 euphorik_protocole:profile(JSON
);
52 % un utilisateur attend un événement (par exemple l'arrivé d'un nouveau message)
53 traiter_action("wait_event", JSON
, _
) ->
54 euphorik_protocole:wait_event(JSON
);
55 % un utilisateur envoie un message
56 traiter_action("put_message", JSON
, _
) ->
57 euphorik_protocole:put_message(JSON
);
58 traiter_action("ban", JSON
, _
) ->
59 euphorik_protocole:ban(JSON
);
60 traiter_action("slap", JSON
, _
) ->
61 euphorik_protocole:slap(JSON
);
62 traiter_action("put_troll", JSON
, _
) ->
63 euphorik_protocole:put_troll(JSON
);
64 traiter_action("mod_troll", JSON
, _
) ->
65 euphorik_protocole:mod_troll(JSON
);
66 traiter_action("del_troll", JSON
, _
) ->
67 euphorik_protocole:del_troll(JSON
).