2004-12-14 00:00:12 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% File : ejabberd_auth_odbc.erl
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Author : Alexey Shchepin <alexey@process-one.net>
|
2004-12-14 00:00:12 +01:00
|
|
|
%%% Purpose : Authentification via ODBC
|
2007-12-24 12:41:41 +01:00
|
|
|
%%% Created : 12 Dec 2004 by Alexey Shchepin <alexey@process-one.net>
|
|
|
|
%%%
|
|
|
|
%%%
|
2008-01-15 18:02:57 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2008 Process-one
|
2007-12-24 12:41:41 +01:00
|
|
|
%%%
|
|
|
|
%%% This program 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.
|
|
|
|
%%%
|
|
|
|
%%% This program 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 this program; if not, write to the Free Software
|
|
|
|
%%% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
|
|
%%% 02111-1307 USA
|
|
|
|
%%%
|
2004-12-14 00:00:12 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
|
|
|
|
-module(ejabberd_auth_odbc).
|
2007-12-24 12:41:41 +01:00
|
|
|
-author('alexey@process-one.net').
|
2004-12-14 00:00:12 +01:00
|
|
|
|
|
|
|
%% External exports
|
2005-07-13 05:24:13 +02:00
|
|
|
-export([start/1,
|
2005-04-17 20:08:34 +02:00
|
|
|
set_password/3,
|
|
|
|
check_password/3,
|
|
|
|
check_password/5,
|
|
|
|
try_register/3,
|
2004-12-14 00:00:12 +01:00
|
|
|
dirty_get_registered_users/0,
|
2005-04-17 23:39:41 +02:00
|
|
|
get_vh_registered_users/1,
|
2007-11-16 14:58:00 +01:00
|
|
|
get_vh_registered_users/2,
|
2007-05-12 20:09:38 +02:00
|
|
|
get_vh_registered_users_number/1,
|
2007-11-16 14:58:00 +01:00
|
|
|
get_vh_registered_users_number/2,
|
2005-04-17 20:08:34 +02:00
|
|
|
get_password/2,
|
|
|
|
get_password_s/2,
|
|
|
|
is_user_exists/2,
|
2004-12-14 00:00:12 +01:00
|
|
|
remove_user/2,
|
2005-04-17 20:08:34 +02:00
|
|
|
remove_user/3,
|
2004-12-14 00:00:12 +01:00
|
|
|
plain_password_required/0
|
|
|
|
]).
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
-include("ejabberd.hrl").
|
|
|
|
|
2004-12-14 00:00:12 +01:00
|
|
|
%%%----------------------------------------------------------------------
|
|
|
|
%%% API
|
|
|
|
%%%----------------------------------------------------------------------
|
2005-07-13 05:24:13 +02:00
|
|
|
start(Host) ->
|
2006-02-20 05:07:42 +01:00
|
|
|
ejabberd_ctl:register_commands(
|
|
|
|
Host,
|
|
|
|
[{"registered-users", "list all registered users"}],
|
|
|
|
ejabberd_auth, ctl_process_get_registered),
|
2004-12-14 00:00:12 +01:00
|
|
|
ok.
|
|
|
|
|
|
|
|
plain_password_required() ->
|
|
|
|
false.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
check_password(User, Server, Password) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
false;
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
2006-09-03 17:15:46 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:get_password(LServer, Username) of
|
2004-12-14 00:00:12 +01:00
|
|
|
{selected, ["password"], [{Password}]} ->
|
2008-02-11 19:19:42 +01:00
|
|
|
Password /= "";
|
2004-12-14 00:00:12 +01:00
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
check_password(User, Server, Password, StreamID, Digest) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
false;
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
2006-09-03 17:15:46 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:get_password(LServer, Username) of
|
2004-12-14 00:00:12 +01:00
|
|
|
{selected, ["password"], [{Passwd}]} ->
|
|
|
|
DigRes = if
|
|
|
|
Digest /= "" ->
|
|
|
|
Digest == sha:sha(StreamID ++ Passwd);
|
|
|
|
true ->
|
|
|
|
false
|
|
|
|
end,
|
|
|
|
if DigRes ->
|
|
|
|
true;
|
|
|
|
true ->
|
|
|
|
(Passwd == Password) and (Password /= "")
|
|
|
|
end;
|
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
set_password(User, Server, Password) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
{error, invalid_jid};
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
Pass = ejabberd_odbc:escape(Password),
|
2005-12-21 17:10:56 +01:00
|
|
|
LServer = jlib:nameprep(Server),
|
2006-09-03 17:15:46 +02:00
|
|
|
catch odbc_queries:set_password_t(LServer, Username, Pass)
|
2004-12-14 00:00:12 +01:00
|
|
|
end.
|
|
|
|
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
try_register(User, Server, Password) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
{error, invalid_jid};
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
Pass = ejabberd_odbc:escape(Password),
|
2006-09-03 17:15:46 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:add_user(LServer, Username, Pass) of
|
2005-10-15 21:50:02 +02:00
|
|
|
{updated, 1} ->
|
2004-12-14 00:00:12 +01:00
|
|
|
{atomic, ok};
|
|
|
|
_ ->
|
|
|
|
{atomic, exists}
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
|
|
|
dirty_get_registered_users() ->
|
2008-02-19 14:49:29 +01:00
|
|
|
Servers = ejabberd_config:get_vh_by_auth_method(odbc),
|
|
|
|
lists:flatmap(
|
|
|
|
fun(Server) ->
|
|
|
|
get_vh_registered_users(Server)
|
|
|
|
end, Servers).
|
2005-07-13 05:24:13 +02:00
|
|
|
|
|
|
|
get_vh_registered_users(Server) ->
|
2005-08-25 22:48:45 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
2006-09-03 17:15:46 +02:00
|
|
|
case catch odbc_queries:list_users(LServer) of
|
2004-12-14 00:00:12 +01:00
|
|
|
{selected, ["username"], Res} ->
|
2005-08-25 22:48:45 +02:00
|
|
|
[{U, LServer} || {U} <- Res];
|
2004-12-14 00:00:12 +01:00
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end.
|
|
|
|
|
2007-11-03 18:35:23 +01:00
|
|
|
get_vh_registered_users(Server, Opts) ->
|
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:list_users(LServer, Opts) of
|
|
|
|
{selected, ["username"], Res} ->
|
|
|
|
[{U, LServer} || {U} <- Res];
|
|
|
|
_ ->
|
|
|
|
[]
|
|
|
|
end.
|
|
|
|
|
2007-05-12 20:09:38 +02:00
|
|
|
get_vh_registered_users_number(Server) ->
|
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:users_number(LServer) of
|
|
|
|
{selected, [_], [{Res}]} ->
|
|
|
|
list_to_integer(Res);
|
|
|
|
_ ->
|
|
|
|
0
|
|
|
|
end.
|
|
|
|
|
2007-11-03 18:35:23 +01:00
|
|
|
get_vh_registered_users_number(Server, Opts) ->
|
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:users_number(LServer, Opts) of
|
|
|
|
{selected, [_], [{Res}]} ->
|
|
|
|
list_to_integer(Res);
|
2007-12-07 00:15:04 +01:00
|
|
|
_Other ->
|
2007-11-03 18:35:23 +01:00
|
|
|
0
|
|
|
|
end.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
get_password(User, Server) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
false;
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
2006-09-03 17:15:46 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:get_password(LServer, Username) of
|
2004-12-14 00:00:12 +01:00
|
|
|
{selected, ["password"], [{Password}]} ->
|
|
|
|
Password;
|
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
get_password_s(User, Server) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
"";
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
2006-09-03 17:15:46 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:get_password(LServer, Username) of
|
2004-12-14 00:00:12 +01:00
|
|
|
{selected, ["password"], [{Password}]} ->
|
|
|
|
Password;
|
|
|
|
_ ->
|
|
|
|
""
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2005-07-13 05:24:13 +02:00
|
|
|
is_user_exists(User, Server) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
false;
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
2006-09-03 17:15:46 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
case catch odbc_queries:get_password(LServer, Username) of
|
2004-12-14 00:00:12 +01:00
|
|
|
{selected, ["password"], [{_Password}]} ->
|
|
|
|
true;
|
|
|
|
_ ->
|
|
|
|
false
|
|
|
|
end
|
|
|
|
end.
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
remove_user(User, Server) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
error;
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
2006-09-03 17:15:46 +02:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
catch odbc_queries:del_user(LServer, Username),
|
2005-10-13 03:29:21 +02:00
|
|
|
ejabberd_hooks:run(remove_user, jlib:nameprep(Server),
|
|
|
|
[User, Server])
|
2004-12-14 00:00:12 +01:00
|
|
|
end.
|
|
|
|
|
2005-06-20 05:18:13 +02:00
|
|
|
remove_user(User, Server, Password) ->
|
2004-12-14 00:00:12 +01:00
|
|
|
case jlib:nodeprep(User) of
|
|
|
|
error ->
|
|
|
|
error;
|
|
|
|
LUser ->
|
|
|
|
Username = ejabberd_odbc:escape(LUser),
|
|
|
|
Pass = ejabberd_odbc:escape(Password),
|
2005-12-21 17:10:56 +01:00
|
|
|
LServer = jlib:nameprep(Server),
|
|
|
|
F = fun() ->
|
2006-09-03 17:15:46 +02:00
|
|
|
Result = odbc_queries:del_user_return_password(
|
|
|
|
LServer, Username, Pass),
|
2005-12-21 17:10:56 +01:00
|
|
|
case Result of
|
|
|
|
{selected, ["password"], [{Password}]} ->
|
|
|
|
ejabberd_hooks:run(remove_user, jlib:nameprep(Server),
|
|
|
|
[User, Server]),
|
|
|
|
ok;
|
|
|
|
{selected, ["password"], []} ->
|
|
|
|
not_exists;
|
|
|
|
_ ->
|
|
|
|
not_allowed
|
|
|
|
end
|
|
|
|
end,
|
2007-07-26 11:42:14 +02:00
|
|
|
{atomic, Result} = odbc_queries:sql_transaction(LServer, F),
|
2005-12-21 17:10:56 +01:00
|
|
|
Result
|
2004-12-14 00:00:12 +01:00
|
|
|
end.
|