| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- %%--------------------------------------------------------------------
- %% Copyright (c) 2020-2021 EMQ Technologies Co., Ltd. All Rights Reserved.
- %%
- %% Licensed under the Apache License, Version 2.0 (the "License");
- %% you may not use this file except in compliance with the License.
- %% You may obtain a copy of the License at
- %%
- %% http://www.apache.org/licenses/LICENSE-2.0
- %%
- %% Unless required by applicable law or agreed to in writing, software
- %% distributed under the License is distributed on an "AS IS" BASIS,
- %% WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- %% See the License for the specific language governing permissions and
- %% limitations under the License.
- %%--------------------------------------------------------------------
- -module(emqx_auth_pgsql_app).
- -behaviour(application).
- -emqx_plugin(auth).
- -include("emqx_auth_pgsql.hrl").
- -import(emqx_auth_pgsql_cli, [parse_query/2]).
- %% Application callbacks
- -export([ start/2
- , stop/1
- ]).
- %%--------------------------------------------------------------------
- %% Application callbacks
- %%--------------------------------------------------------------------
- start(_StartType, _StartArgs) ->
- {ok, Sup} = emqx_auth_pgsql_sup:start_link(),
- if_enabled(auth_query, fun(AuthQuery) ->
- SuperQuery = parse_query(super_query, application:get_env(?APP, super_query, undefined)),
- {ok, HashType} = application:get_env(?APP, password_hash),
- AuthEnv = #{auth_query => AuthQuery,
- super_query => SuperQuery,
- hash_type => HashType,
- pool => ?APP},
- ok = emqx_auth_pgsql:register_metrics(),
- ok = emqx:hook('client.authenticate', fun emqx_auth_pgsql:check/3, [AuthEnv])
- end),
- if_enabled(acl_query, fun(AclQuery) ->
- ok = emqx:hook('client.check_acl', fun emqx_acl_pgsql:check_acl/5, [#{acl_query => AclQuery, pool => ?APP}])
- end),
- {ok, Sup}.
- stop(_State) ->
- ok = emqx:unhook('client.authenticate', fun emqx_auth_pgsql:check/3),
- ok = emqx:unhook('client.check_acl', fun emqx_acl_pgsql:check_acl/5).
- if_enabled(Par, Fun) ->
- case application:get_env(?APP, Par) of
- {ok, Query} -> Fun(parse_query(Par, Query));
- undefined -> ok
- end.
|