0ad/source/tools/XpartaMuPP/mod_ipstamp.erl

77 lines
2.7 KiB
Erlang
Raw Normal View History

%% Copyright (C) 2013 Wildfire Games.
%% This file is part of 0 A.D.
%%
%% 0 A.D. 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 2 of the License, or
%% (at your option) any later version.
%%
%% 0 A.D. 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 0 A.D. If not, see <http://www.gnu.org/licenses/>.
-module(mod_ipstamp).
-behaviour(gen_mod).
-include("ejabberd.hrl").
-export([start/2, stop/1, on_filter_packet/1]).
%% Domain on which run the ejabberd server
-define (Domain, "lobby.wildfiregames.com").
%% Login of the Xpartamupp jabber client
-define (XpartamuppLogin, "xpartamupp").
start(_Host, _Opts) ->
?INFO_MSG("mod_ipip starting", []),
ejabberd_hooks:add(filter_packet, global, ?MODULE, on_filter_packet, 50),
ok.
stop(_Host) ->
ejabberd_hooks:delete(filter_packet, global, ?MODULE, on_filter_packet, 50),
ok.
on_filter_packet({From, To, Packet} = Input) ->
{_,STo,_,_,_,_,_} = To,
{_,SFrom,_,_,_,_,_} = From,
if STo == "xpartamupp" ->
{_,SElement,LPacketInfo,LPacketQuery} = Packet,
if SElement == "iq" ->
{_, SType} = lists:keyfind("type",1,LPacketInfo),
if SType == "set" ->
{_,_,LXmlns,LGame} = lists:keyfind("query",2,LPacketQuery),
{_,SXmlns} = lists:keyfind("xmlns",1,LXmlns),
if SXmlns == "jabber:iq:gamelist" ->
{_,_,_,LCommand} = lists:keyfind("command",2,LGame),
{_,SCommand} = lists:keyfind(xmlcdata,1,LCommand),
if SCommand == <<"register">> ->
{_,_,KGame,_} = lists:keyfind("game",2,LGame),
Info = ejabberd_sm:get_user_info(SFrom,[?Domain],"0ad"),
{ip, {Ploc, _Port}} = lists:keyfind(ip, 1, Info),
SIp = inet_parse:ntoa(Ploc),
?INFO_MSG(string:concat("stamp ip: ",SIp), []),
{From,To,{xmlelement,"iq",LPacketInfo,[
{xmlelement,"query",[{"xmlns","jabber:iq:gamelist"}],[
{xmlelement,"game",lists:keyreplace("ip",1,KGame,{"ip",SIp}),[]},
{xmlelement,"command",[],[{xmlcdata,<<"register">>}]}
]
}
]}}
; true -> Input
end
; true -> Input
end
; true -> Input
end
; true -> Input
end
; true -> Input
end.