Current section

Files

Jump to
zotonic_mod_admin src models m_admin.erl
Raw

src/models/m_admin.erl

%% @author Marc Worrell <marc@worrell.nl>
%% @copyright 2017-2021 Marc Worrell
%% @doc Model for mod_admin
%% Copyright 2017-2021 Marc Worrell
%%
%% 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(m_admin).
-export([ m_get/3 ]).
-include_lib("kernel/include/logger.hrl").
-spec m_get( list(), zotonic_model:opt_msg(), z:context() ) -> zotonic_model:return().
m_get([ <<"pivot_queue_count">> | Rest ], _Msg, Context) ->
case z_acl:is_allowed(use, mod_admin, Context) of
true -> {ok, {z_pivot_rsc:queue_count(Context), Rest}};
false -> {error, eacces}
end;
m_get([ <<"rsc_dialog_is_published">> | Rest ], _Msg, Context) ->
{ok, {m_config:get_boolean(mod_admin, rsc_dialog_is_published, Context), Rest}};
m_get([ <<"rsc_dialog_is_dependent">> | Rest ], _Msg, Context) ->
{ok, {m_config:get_boolean(mod_admin, rsc_dialog_is_dependent, Context), Rest}};
m_get([ <<"rsc_dialog_hide_dependent">> | Rest ], _Msg, Context) ->
{ok, {m_config:get_boolean(mod_admin, rsc_dialog_hide_dependent, Context), Rest}};
m_get([ <<"edge_list_max_length">> | Rest ], _Msg, Context) ->
Len = case m_config:get_value(mod_admin, edge_list_max_length, Context) of
<<>> -> undefined;
LenS -> z_convert:to_integer(LenS)
end,
{ok, {Len, Rest}};
m_get([ <<"connect_created_me">> | Rest ], _Msg, Context) ->
{ok, {m_config:get_boolean(mod_admin, connect_created_me, Context), Rest}};
m_get(Vs, _Msg, _Context) ->
?LOG_INFO("Unknown ~p lookup: ~p", [?MODULE, Vs]),
{error, unknown_path}.