2007-01-27 17:40:37 +01:00
|
|
|
%%%-------------------------------------------------------------------
|
|
|
|
%%% File : eldap_pool.erl
|
|
|
|
%%% Author : Evgeniy Khramtsov <xram@jabber.ru>
|
|
|
|
%%% Purpose : LDAP connections pool
|
|
|
|
%%% Created : 12 Nov 2006 by Evgeniy Khramtsov <xram@jabber.ru>
|
2007-12-24 14:57:53 +01:00
|
|
|
%%%
|
|
|
|
%%%
|
2019-01-08 22:53:27 +01:00
|
|
|
%%% ejabberd, Copyright (C) 2002-2019 ProcessOne
|
2007-12-24 14:57:53 +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.
|
2009-01-12 15:44:42 +01:00
|
|
|
%%%
|
2014-02-22 11:27:40 +01:00
|
|
|
%%% 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.,
|
|
|
|
%%% 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2007-12-24 14:57:53 +01:00
|
|
|
%%%
|
2007-01-27 17:40:37 +01:00
|
|
|
%%%-------------------------------------------------------------------
|
2007-12-24 14:57:53 +01:00
|
|
|
|
2007-01-27 17:40:37 +01:00
|
|
|
-module(eldap_pool).
|
2013-03-14 10:33:02 +01:00
|
|
|
|
2007-01-27 17:40:37 +01:00
|
|
|
-author('xram@jabber.ru').
|
|
|
|
|
|
|
|
%% API
|
2013-03-14 10:33:02 +01:00
|
|
|
-export([start_link/7, bind/3, search/2,
|
|
|
|
modify_passwd/3]).
|
2007-01-27 17:40:37 +01:00
|
|
|
|
2013-04-08 11:12:54 +02:00
|
|
|
-include("logger.hrl").
|
2008-03-07 15:49:06 +01:00
|
|
|
|
2007-01-27 17:40:37 +01:00
|
|
|
%%====================================================================
|
|
|
|
%% API
|
|
|
|
%%====================================================================
|
|
|
|
bind(PoolName, DN, Passwd) ->
|
|
|
|
do_request(PoolName, {bind, [DN, Passwd]}).
|
|
|
|
|
|
|
|
search(PoolName, Opts) ->
|
|
|
|
do_request(PoolName, {search, [Opts]}).
|
|
|
|
|
2010-04-19 12:57:24 +02:00
|
|
|
modify_passwd(PoolName, DN, Passwd) ->
|
|
|
|
do_request(PoolName, {modify_passwd, [DN, Passwd]}).
|
|
|
|
|
2013-03-14 10:33:02 +01:00
|
|
|
start_link(Name, Hosts, Backups, Port, Rootdn, Passwd,
|
|
|
|
Opts) ->
|
2007-01-27 17:40:37 +01:00
|
|
|
PoolName = make_id(Name),
|
2013-03-14 10:33:02 +01:00
|
|
|
pg2:create(PoolName),
|
|
|
|
lists:foreach(fun (Host) ->
|
|
|
|
ID = list_to_binary(erlang:ref_to_list(make_ref())),
|
|
|
|
case catch eldap:start_link(ID, [Host | Backups],
|
|
|
|
Port, Rootdn, Passwd,
|
|
|
|
Opts)
|
|
|
|
of
|
|
|
|
{ok, Pid} -> pg2:join(PoolName, Pid);
|
|
|
|
Err ->
|
2018-09-19 22:12:14 +02:00
|
|
|
?ERROR_MSG("Err = ~p", [Err]),
|
2013-03-14 10:33:02 +01:00
|
|
|
error
|
|
|
|
end
|
|
|
|
end,
|
|
|
|
Hosts).
|
2007-01-27 17:40:37 +01:00
|
|
|
|
|
|
|
%%====================================================================
|
|
|
|
%% Internal functions
|
|
|
|
%%====================================================================
|
|
|
|
do_request(Name, {F, Args}) ->
|
2013-03-14 10:33:02 +01:00
|
|
|
case pg2:get_closest_pid(make_id(Name)) of
|
|
|
|
Pid when is_pid(Pid) ->
|
|
|
|
case catch apply(eldap, F, [Pid | Args]) of
|
|
|
|
{'EXIT', {timeout, _}} ->
|
|
|
|
?ERROR_MSG("LDAP request failed: timed out", []);
|
|
|
|
{'EXIT', Reason} ->
|
|
|
|
?ERROR_MSG("LDAP request failed: eldap:~p(~p)~nReason: ~p",
|
|
|
|
[F, Args, Reason]),
|
|
|
|
{error, Reason};
|
|
|
|
Reply -> Reply
|
|
|
|
end;
|
|
|
|
Err -> Err
|
2007-01-27 17:40:37 +01:00
|
|
|
end.
|
|
|
|
|
|
|
|
make_id(Name) ->
|
2017-04-11 12:13:58 +02:00
|
|
|
misc:binary_to_atom(<<"eldap_pool_", Name/binary>>).
|