Current section

Files

Jump to
zotonic_mod_acl_user_groups src mod_acl_user_groups.erl
Raw

src/mod_acl_user_groups.erl

%% @copyright 2015-2026 Arjan Scherpenisse
%% @doc Adds content groups to enable access-control rules on resources.
%% @end
%% Copyright 2015-2026 Arjan Scherpenisse
%%
%% 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(mod_acl_user_groups).
-moduledoc("
This module adds rule-based access control.
* All resources (pages) are put into a content group.
* All users are member of zero or more user groups.
* Content groups are arranged in a hierarchy.
* User groups are arranged in a hierarchy.
ACL rules are defined between user groups and content groups. Each single rule gives some user group one or more
permissions on some content group.
Managing user groups
--------------------
By default, Zotonic has four user groups:
* anonymous (anonymous visitors of the website)
* members (logged in users of the website)
* editors (content editors)
* managers (manage users)
These user groups are arranged in a hierarchy, so that each group has the permissions its parent plus more. So, the
permissions of users in the members group include those of anonymous users; and editors have the permissions of both
anonymous users and members plus more.
To add or remove user groups, go to *Auth > User groups* in the admin.
### Collaboration groups
Collaboration groups are a special type of user groups. They are most useful when you have groups of users that together
collaborate on content. All content belongs to the group. Each collaboration group has one or more managers. So if you
have groups of students working together and being supervised by teachers, you can define them as collaboration groups
with the teachers as managers.
Managing content groups
-----------------------
By default, Zotonic has two content groups:
* default (all site content)
* system content (categories, predicates and user groups)
To add or remove content groups, go to *Structure > Content groups* in the admin. Just like user groups, content groups
are ordered in a hierarchy. So the permissions that apply to the parent content group also apply to all of its children.
Defining access rules
---------------------
You can add ACL rules in two ways:
1. in the admin web interface at `http://yoursite/admin/acl/rules`
2. in your site’s or module’s code; see [Managed rules](#managed-rules) below.
Let’s start by defining rules in the web interface.
### Content access rules
Each content access control rule grants some user group one or more permissions on some content group. So, for each rule
you must specify the following properties:
* User group
* Content group
* Resource category (or ‘all categories’)
* Permissions: ‘view’, ‘insert’, ‘update’, ‘delete’, ‘link’, ‘manage own’.
If you wish to narrow down the rule, you can select a single resource category it applies to. The default is ‘all categories’.
The content group dropdown contains:
* all your [Managing content groups](#content-groups)
* all your [Collaboration groups](#collaboration-groups)
The permissions include simple resource permissions that determine whether users in the group are allowed to view,
insert, update or delete resources. The ‘link’ permission is about creating outgoing edges from resources in the
content group to other resources.
Some rules may be greyed out and have a note saying ‘This rule is managed by module …’. These are [Managed
rules](#managed-rules) that you cannot edit in the web interface.
### Collaboration group rules
Collaboration rules are special content access rules that apply to content in [collaboration
groups](#collaboration-groups) only. Each rule applies to all collaboration groups.
### Allowed media
For each user group it is possible to define:
* Maximum size of uploaded files
* Allowed types of files
In the admin, go to *Auth > Access control rules > File Uploads* tab to edit them.
The file size and allowed types is inherited along the user-group hierarchy. For example, if *Managers* is a specialized
subgroup of *Editors* then all settings of *Editors* also apply to all *Managers*. Not the other way round.
The file types are entered using the mime type or extension of the allowed files.
The following are allowed types:
* Any mime type (e.g. `image/png`)
* Wildcard mime type (e.g. `image/*` or `*/*`)
* A file extension (e.g. `.txt`)
* `msoffice` for Microsoft Office files
* `openoffice` for Open Office files
* `embed` for media imported with `mod_oembed` and `mod_video_embed`
* `none`
The default is: `image/*, video/*, audio/*, embed, .pdf, .txt, msoffice, openoffice`
The default mime types can be changed with the `site.acl_mime_allowed` key. The default upload size is 50MB.
If a user group is not allowed to upload any files then enter `none`.
### Access control on properties
Some private sensitive resource properties are protected by the ACL rules. The *privacy* property defines who can see
these properties.
The default privacy for category *person* is *collaboration group members*. For other categories the default is *public*.
The privacy property can have the following values:
* 0 public
* 10 members
* 20 member of same user group (except default members group)
* 30 collaboration group members
* 40 collaboration group managers
* 50 private
Increments are 10 so that more refined options can be added by custom modules.
The protected properties are:
* email
* phone
* phone_mobile
* phone_alt
* address_street_1
* address_street_2
* address_postcode
* address_city
* date_start
* date_end
* location_lat
* location_lng
* pivot_location_lat
* pivot_location_lng
* pivot_geocode
* pivot_geocode_qhash
### Module access rules
Each module access rule grants some user group use permissions on some module. In the admin, go to *Auth > Access
control rules > Modules* tab to edit them.
### Deny rules
By default, rules grant some permissions. But sometimes you want to deny some permissions that are granted by another
rule. For instance, if you have a rule that allows anonymous users to view all content groups, but you have a special
content group ‘Top secret’ that you want to hide from anonymous users, add a rule to deny access:
| Deny | ACL user group | Content group | Category | Permissions |
| ---- | -------------- | ------------- | -------- | ----------- |
| √ | Anonymous | Top secret | All | √ View |
Publishing rules
----------------
When you’re editing rules, they are not effective immediately: you have to publish them first. Click the ‘Publish’
button to do so.
You can test out your rules before publishing them by clicking the ‘Try rules…’ button.
Managed rules
-------------
Above you’ve seen how you can add rules through the web interface. Using [module
versioning](/id/doc_developerguide_modules#guide-modules-versioning), you can also write rules in your code. These rules
are called ‘managed rules’ because they are defined in the code of modules, including your own [site module](/id/doc_developerguide_sites#guide-site-anatomy).
While editing a simple set of ACL rules in the web interface is easier for end users, developers may prefer to manage
more complex rules in code. Managed rules have two important advantages:
* they are equal between all environments (such as development, acceptance and production)
* when developing and deploying new features, ACL rules and code often belong together. By defining the rules in your code, you can commit and store them along with the feature code.
If you haven’t yet done so, set up [module versioning](/id/doc_developerguide_modules#guide-modules-versioning) in
`yoursite.erl` or `mod_your_module.erl`. Then, in the `manage_data/2` function, call the `m_acl_rule:replace_managed/3`
function to add your new ACL rules.
Note that you always to need a `manage_schema/2` function, even if it only returns `ok`. Otherwise the `manage_data/2`
function will not be called:
```erlang
%% yoursite.erl
-module(yoursite).
-mod_title(\"Your Site\").
-mod_description(\"An example module for the docs\").
-mod_depends([ mod_acl_user_groups ]).
-mod_schema(1).
-export([
manage_schema/2,
manage_data/2
]).
%% .... more code here...
manage_schema(install, Context) ->
#datamodel{
%% your resources...
};
manage_schema({upgrade, 2}, Context) ->
%% code to upgrade from version 1 to 2
ok.
manage_data(install, Context) ->
Rules = [
%% A resource ACL rule is defined as {rsc, Properties}
{rsc, [
{acl_user_group_id, acl_user_group_members},
{actions, [view, link]},
{is_owner, true},
{category_id, person}
]},
%% A module rule is defined as {module, Properties}
{module, [
{acl_user_group_id, acl_user_group_editors},
{actions, [use]},
{module, mod_ginger_base}
]},
%% A collaboration group rule is defined as {collab, Properties}
{collab, [
{is_owner, true},
{actions, [view, insert, update, link]},
{category_id, text}
]}
],
m_acl_rule:replace_managed(Rules, ?MODULE, Context);
manage_data(_Upgrade, Context) ->
ok.
```
Compile the code and restart your module to load the managed rules. They will be added and immediately [published](#publishing-rules).
The set of rules added with `m_acl:replace_managed/3` is *declarative* and *complete*. That is to say, you declare the
full set of rules that you wish to define. Any changes or deletions that you make to the rules in your code, will
propagate to the site’s rules. To protect the set’s completeness, managed rules cannot be altered in the web interface.
Exporting and importing rules
-----------------------------
To back up your rules, go to *Auth > Access control rules* and click the ‘Export edit rules’ button. The backup will
include the full hierarchies of all user and content groups.
You can import a previous backup by clicking the ‘Import edit rules…’ button.
Accepted Events
---------------
This module handles the following notifier callbacks:
- `observe_acl_add_sql_check`: Add ACL SQL constraints to search/query plans so result sets are filtered by user-group/content-group permissions.
- `observe_acl_context_authenticated`: Refresh the authenticated context with resolved ACL group state after login/session auth changes.
- `observe_acl_is_allowed`: Evaluate resource/action permission checks against compiled user-group/content-group ACL rules.
- `observe_acl_is_allowed_prop`: Evaluate property-level view permissions, allowing anonymous `view` when no object is supplied.
- `observe_acl_is_owner`: Treat users as owner of their own person resource, creator-owned resources, and optionally author-linked resources when `author_is_owner` is enabled.
- `observe_acl_logoff`: Clear cached ACL group state from the context on logoff.
- `observe_acl_logon`: Populate ACL group state for the logging-in user.
- `observe_acl_user_groups`: Return the full effective user-group list for the current user.
- `observe_admin_menu`: Add admin menu entries for User groups, Collaboration groups, and Access control rules.
- `observe_edge_delete`: Log removal of `hasusergroup`, `hascollabmember`, and `hascollabmanager` membership edges.
- `observe_edge_insert`: Log additions of `hasusergroup`, `hascollabmember`, and `hascollabmanager` membership edges.
- `observe_hierarchy_updated`: Rebuild published/edit ACL lookup tables when category, content-group, or acl-user-group hierarchies change.
- `observe_rsc_delete`: Block deletion of acl user groups that are still referenced by ACL rules or memberships.
- `observe_rsc_get`: Set a default `privacy` value on resources without one (`collab_member` for persons, otherwise `public`).
- `observe_rsc_insert`: Assign a default `content_group_id` on insert when none is provided, based on the resource category.
- `observe_rsc_update`: Validate ACL-related updates and prevent non-ACL-admin users from changing `acl_mime_allowed` and `acl_upload_size`.
- `observe_rsc_update_done`: Rebuild the `acl_user_group` hierarchy when a resource changes into or out of that category.
Delegate callbacks:
- `event/2` with `postback` messages: `delete_all`, `set_config`.
- `event/2` with `submit` messages: `delete_move`.
See also
[mod_content_groups](/id/doc_module_mod_content_groups), [Access control](/id/doc_developerguide_access_control#guide-auth)").
-mod_title("ACL User Groups").
-mod_description("Organize users into hierarchical groups").
-mod_prio(400).
-mod_schema(13).
-mod_depends([menu, mod_content_groups]).
-mod_provides([acl]).
-mod_config([
#{
key => author_is_owner,
type => boolean,
default => false,
description => "If true, authors of resources are considered owners of the resource, and can edit it."
},
#{
key => collab_group_update,
type => string,
default => "",
description => "Who is allowed to update the collaboration group itself: member or manager"
},
#{
key => collab_group_link,
type => string,
default => "",
description => "Who is allowed to add connections to the collaboration group itself: member or manager"
}
]).
-behaviour(gen_server).
-behaviour(zotonic_observer).
-include_lib("zotonic_core/include/zotonic.hrl").
-include("support/acl_user_groups.hrl").
-include_lib("zotonic_mod_admin/include/admin_menu.hrl").
-include_lib("zotonic_mod_wires/include/mod_wires.hrl").
% API
-export([
is_acl_admin/1,
status/1,
table/1,
table/2,
await_table/1,
await_table/2,
await_table/3,
lookup/2,
await_lookup/2,
match/2,
await_match/2,
rebuild/2,
observe_admin_menu/3,
observe_rsc_update_done/2,
observe_rsc_delete/2,
observe_rsc_insert/3,
observe_rsc_update/3,
observe_rsc_get/3,
observe_edge_insert/2,
observe_edge_delete/2,
name/1,
manage_schema/2,
manage_data/2
]).
% Access control hooks
-export([
event/2,
observe_acl_is_owner/2,
observe_acl_is_allowed/2,
observe_acl_is_allowed_prop/2,
observe_acl_logon/2,
observe_acl_logoff/2,
observe_acl_context_authenticated/2,
observe_acl_user_groups/2,
observe_acl_add_sql_check/2,
observe_hierarchy_updated/2
]).
%% gen_server exports
-export([init/1, handle_call/3, handle_cast/2, handle_info/2, terminate/2, code_change/3]).
-export([start_link/1]).
%% gen_server state record
-record(state, {
site,
is_rebuild_publish=true,
is_rebuild_edit=true,
rebuilder_pid,
rebuilder_mref,
rebuilding,
table_edit = [],
table_publish = []
}).
%% @doc Check if the user is an administrator for the ACLs
is_acl_admin(Context) ->
z_acl:is_allowed(use, mod_acl_user_groups, Context)
andalso z_acl:is_allowed(insert, acl_user_group, Context).
event(#submit{message={delete_move, Args}}, Context) ->
ToUGId = z_convert:to_integer(z_context:get_q_validated(<<"acl_user_group_id">>, Context)),
{id, Id} = proplists:lookup(id, Args),
Ids = [ Id | m_hierarchy:children('acl_user_group', Id, Context) ],
case deletable(Ids, Context) andalso z_acl:rsc_editable(ToUGId, Context) of
true ->
Context1 = z_context:prune_for_async(Context),
spawn(fun() ->
ug_move_and_delete(Ids, ToUGId, Context1)
end),
z_render:wire({dialog_close, []}, Context);
false ->
z_render:growl(?__("Sorry, you are not allowed to delete this.", Context), Context)
end;
event(#postback{message={delete_all, Args}}, Context) ->
{id, Id} = proplists:lookup(id, Args),
IfEmpty = proplists:get_value(if_empty, Args, false),
Ids = [ Id | m_hierarchy:children('acl_user_group', Id, Context) ],
case not IfEmpty orelse not m_acl_user_group:is_used(Id, Context) of
true ->
case deletable(Ids, Context) of
true ->
Context1 = z_context:prune_for_async(Context),
spawn(fun() ->
ug_delete(Ids, Context1)
end),
z_render:wire({dialog_close, []}, Context);
false ->
z_render:growl(?__("Sorry, you are not allowed to delete this.", Context), Context)
end;
false ->
z_render:wire(
{alert, [
{text, ?__("Delete is canceled, there are users in the user groups.", Context)}
]},
Context
)
end;
event(#postback{message={set_config, [{key, Key}]}}, Context) when is_atom(Key) ->
case z_acl:is_admin(Context) orelse z_acl:is_allowed(use, mod_acl_user_groups, Context) of
true ->
Value = z_convert:to_bool(z_context:get_q(<<"triggervalue">>, Context)),
m_config:set_value(?MODULE, Key, Value, Context),
z_render:wire(
{growl, [
{text, ?__("Changed configuration.", Context)}
]},
Context);
false ->
z_render:wire(
{growl, [
{text, ?__("Not allowed to change ACL options.", Context)}
]},
Context)
end.
%% @todo let the client subscribe to the resources to reflect the deletions
-spec ug_delete(list(m_rsc:resource_id()), z:context()) -> any().
ug_delete(Ids, Context) ->
UGUserIds = in_user_groups(Ids, Context),
Total = lists:sum([length(UIds) || {_, UIds} <- UGUserIds]),
case unlink_all(UGUserIds, 0, Total, Context) of
ok ->
lists:foreach(fun(Id) ->
m_rsc:delete(Id, Context)
end,
Ids),
page_actions({ unmask, []}, Context);
{error, _} ->
Actions = [
{unmask, []},
{alert, [{text, ?__("Not all user groups could be deleted.", Context)}]}
],
page_actions(Actions, Context)
end.
-spec ug_move_and_delete([pos_integer()], m_rsc:resource_id(), #context{}) -> ok.
ug_move_and_delete(Ids, ToGroupId, Context) ->
page_actions({mask, [{message, ?__("Deleting...", Context)}]}, Context),
UGUserIds = in_user_groups(Ids, Context),
Total = lists:sum([length(UIds) || {_, UIds} <- UGUserIds]),
ok = move_all(UGUserIds, ToGroupId, 0, Total+Total, Context),
lists:foreach(fun(Id) ->
m_rsc:delete(Id, Context)
end,
Ids),
page_actions({unmask, []}, Context ),
ok.
in_user_groups(Ids, Context) ->
lists:flatten([ {Id, m_edge:subjects(Id, hasusergroup, Context)} || Id <- Ids ]).
unlink_all([], _N, _Total, _Context) ->
ok;
unlink_all([{UGId, UserIds}|Ids], N, Total, Context) ->
case unlink_users(UGId, UserIds, N, Total, Context) of
{ok, N1} ->
unlink_all(Ids, N1, Total, Context);
Error ->
{error, Error}
end.
unlink_users(_UGId, [], N, _Total, _Context) ->
{ok, N};
unlink_users(UGId, [UserId|UserIds], N, Total, Context) ->
case m_edge:delete(UserId, hasusergroup, UGId, [], Context) of
ok ->
maybe_progress(N, N+1, Total, Context),
unlink_users(UGId, UserIds, N+1, Total, Context);
{error, _} = Error ->
Error
end.
move_all([], _ToUGId, _N, _Total, _Context) ->
ok;
move_all([{UGId, UserIds}|Ids], ToUGId, N, Total, Context) ->
case move_link_users(UGId, ToUGId, UserIds, N, Total, Context) of
{ok, N1} ->
move_all(Ids, ToUGId, N1, Total, Context);
{error, _} = Error ->
Error
end.
move_link_users(_OldUGId, _UGId, [], N, _Total, _Context) ->
{ok, N};
move_link_users(OldUGId, UGId, [UserId|UserIds], N, Total, Context) ->
case m_edge:insert(UserId, hasusergroup, UGId, [], Context) of
{ok, _} ->
case m_edge:delete(UserId, hasusergroup, OldUGId, [], Context) of
ok ->
maybe_progress(N, N+1, Total, Context),
move_link_users(OldUGId, UGId, UserIds, N+1, Total, Context);
{error, _} = Error ->
Error
end;
{error, _} = Error ->
Error
end.
maybe_progress(_N1, _N2, 0, _Context) ->
ok;
maybe_progress(N1, N2, Total, Context) ->
z_pivot_rsc:pivot_delay(Context),
PerStep = Total / 100,
S1 = round(N1 / PerStep),
S2 = round(N2 / PerStep),
case S1 of
S2 -> ok;
_ -> page_actions({mask_progress, [{percent,S2}]}, Context )
end.
deletable(Ids, Context) ->
lists:all(fun(Id) -> z_acl:rsc_deletable(Id, Context) end, Ids).
% @doc Per default users own their person record and creators own the created content.
-spec observe_acl_is_owner(#acl_is_owner{}, z:context()) -> boolean() | undefined.
observe_acl_is_owner(#acl_is_owner{user_id=UserId, id=UserId}, _Context) when is_integer(UserId) ->
true;
observe_acl_is_owner(#acl_is_owner{user_id=UserId, creator_id=UserId}, _Context) when is_integer(UserId) ->
true;
observe_acl_is_owner(#acl_is_owner{id=Id, user_id=UserId}, Context) when is_integer(UserId) ->
case m_config:get_boolean(?MODULE, author_is_owner, Context) of
true ->
As = m_edge:objects(Id, author, Context),
case lists:member(UserId, As) of
true -> true;
false -> undefined
end;
false ->
undefined
end;
observe_acl_is_owner(#acl_is_owner{}, _Context) ->
undefined.
-spec observe_acl_is_allowed(#acl_is_allowed{}, z:context()) -> boolean() | undefined.
observe_acl_is_allowed(AclIsAllowed, Context) ->
acl_user_groups_checks:acl_is_allowed(AclIsAllowed, Context).
-spec observe_acl_is_allowed_prop(#acl_is_allowed_prop{}, z:context()) -> boolean() | undefined.
observe_acl_is_allowed_prop(#acl_is_allowed_prop{action=view, object=undefined}, _Context) ->
true;
observe_acl_is_allowed_prop(#acl_is_allowed_prop{action=view, object=Id, prop=Property}, #context{} = Context) when is_integer(Id) ->
acl_user_groups_checks:acl_is_allowed_prop(Id, Property, Context);
observe_acl_is_allowed_prop(#acl_is_allowed_prop{}, #context{user_id=undefined}) ->
undefined.
-spec observe_acl_logon(#acl_logon{}, z:context()) -> z:context() | undefined.
observe_acl_logon(AclLogon, Context) ->
acl_user_groups_checks:acl_logon(AclLogon, Context).
-spec observe_acl_logoff(#acl_logoff{}, z:context()) -> z:context() | undefined.
observe_acl_logoff(AclLogoff, Context) ->
acl_user_groups_checks:acl_logoff(AclLogoff, Context).
-spec observe_acl_context_authenticated(#acl_context_authenticated{}, z:context()) -> z:context() | undefined.
observe_acl_context_authenticated(_AclAuthenticated, Context) ->
acl_user_groups_checks:acl_context_authenticated(Context).
-spec observe_acl_user_groups(#acl_user_groups{}, z:context()) -> Groups | undefined when
Groups :: [ m_rsc:resource_id() ].
observe_acl_user_groups(_AclUserGroups, Context) ->
acl_user_groups_checks:user_groups_all(Context).
observe_acl_add_sql_check(AclAddSQLCheck, Context) ->
acl_user_groups_checks:acl_add_sql_check(AclAddSQLCheck, Context).
-spec observe_hierarchy_updated(#hierarchy_updated{}, z:context()) -> any().
observe_hierarchy_updated(#hierarchy_updated{root_id= <<"$category">>, predicate=undefined}, Context) ->
rebuild(Context);
observe_hierarchy_updated(#hierarchy_updated{root_id= <<"content_group">>, predicate=undefined}, Context) ->
rebuild(Context);
observe_hierarchy_updated(#hierarchy_updated{root_id= <<"acl_user_group">>, predicate=undefined}, Context) ->
rebuild(Context);
observe_hierarchy_updated(#hierarchy_updated{}, _Context) ->
ok.
%% @doc Add default content group when resource is inserted without one
-spec observe_rsc_insert(#rsc_insert{}, m_rsc:props(), z:context()) -> m_rsc:props().
observe_rsc_insert(#rsc_insert{ props = RscProps }, InsertProps, Context) ->
case maps:get(<<"content_group_id">>, RscProps,
maps:get(<<"content_group_id">>, InsertProps, undefined))
of
undefined ->
CategoryId = maps:get(<<"category_id">>, InsertProps),
ContentGroupId = acl_user_groups_checks:default_content_group(CategoryId, Context),
InsertProps#{
<<"content_group_id">> => ContentGroupId
};
_ ->
InsertProps
end.
-spec observe_rsc_update(#rsc_update{}, {ok, m_rsc:props()} | {error, term()}, z:context()) -> {ok, m_rsc:props()} | {error, term()}.
observe_rsc_update(_, {error, _} = Error, _Context) ->
Error;
observe_rsc_update(#rsc_update{ id = Id, props = PrevProps }, {ok, NewProps}, Context) ->
{ok, NewProps1} = acl_user_groups_checks:rsc_update_check(Id, NewProps, Context),
case maps:is_key(<<"acl_mime_allowed">>, NewProps1)
orelse maps:is_key(<<"acl_upload_size">>, NewProps1)
of
true ->
case is_acl_admin(Context) of
true ->
{ok, NewProps1};
false ->
P1 = force_copy_prop(<<"acl_mime_allowed">>, PrevProps, NewProps1),
P2 = force_copy_prop(<<"acl_upload_size">>, PrevProps, P1),
{ok, P2}
end;
false ->
{ok, NewProps1}
end.
force_copy_prop(P, PrevProps, NewProps) ->
case maps:find(P, PrevProps) of
error -> maps:remove(P, NewProps);
{ok, V} -> NewProps#{ P => V }
end.
-spec observe_rsc_update_done(#rsc_update_done{}, z:context()) -> any().
observe_rsc_update_done(#rsc_update_done{
pre_is_a = PreIsA,
post_is_a = PostIsA
}, Context) ->
case lists:member('acl_user_group', PreIsA)
orelse lists:member('acl_user_group', PostIsA)
of
true -> m_hierarchy:ensure('acl_user_group', Context);
false -> ok
end.
%% @doc Do now allow the deletion of a acl_user_group if that group is still used.
-spec observe_rsc_delete(#rsc_delete{}, z:context()) -> any().
observe_rsc_delete(#rsc_delete{id=Id, is_a=IsA}, Context) ->
case lists:member('acl_user_group', IsA) of
true ->
case m_acl_user_group:is_used(Id, Context) of
true -> throw({error, is_used});
false ->
z:info("Deleting user group ~p ('~s')",
[ Id, title_bin(Id, Context) ],
[ {module, ?MODULE} ],
Context),
ok
end;
false ->
case lists:member('acl_collaboration_group', IsA) of
true ->
z:info("Deleting collaboration group ~p ('~s')",
[ Id, title_bin(Id, Context) ],
[ {module, ?MODULE} ],
Context);
false ->
ok
end,
ok
end.
-spec observe_edge_insert(#edge_insert{}, z:context()) -> any().
observe_edge_insert(#edge_insert{ predicate = hasusergroup } = L, Context) ->
log_membership(L, Context);
observe_edge_insert(#edge_insert{ predicate = hascollabmember } = L, Context) ->
log_membership(L, Context);
observe_edge_insert(#edge_insert{ predicate = hascollabmanager } = L, Context) ->
log_membership(L, Context);
observe_edge_insert(_, _Context) ->
ok.
-spec observe_edge_delete(#edge_delete{}, z:context()) -> any().
observe_edge_delete(#edge_delete{ predicate = hasusergroup } = L, Context) ->
log_membership(L, Context);
observe_edge_delete(#edge_delete{ predicate = hascollabmember } = L, Context) ->
log_membership(L, Context);
observe_edge_delete(#edge_delete{ predicate = hascollabmanager } = L, Context) ->
log_membership(L, Context);
observe_edge_delete(_, _Context) ->
ok.
%% Log membership changes
log_membership(#edge_insert{ predicate = hasusergroup, subject_id = UserId, object_id = UGId, edge_id = EdgeId }, Context) ->
z:info(
"User ~p (~s) added to user group ~p ('~s')",
[ UserId, email_bin(UserId, Context), UGId, title_bin(UGId, Context) ],
[ {module, ?MODULE}, {user_id, edge_user(EdgeId, Context)} ],
Context);
log_membership(#edge_delete{ predicate = hasusergroup, subject_id = UserId, object_id = UGId }, Context) ->
z:info(
"User ~p (~s) removed from user group ~p ('~s')",
[ UserId, email_bin(UserId, Context), UGId, title_bin(UGId, Context) ],
[ {module, ?MODULE}, {user_id, undefined} ],
Context);
log_membership(#edge_insert{ predicate = hascollabmember, subject_id = UGId, object_id = UserId, edge_id = EdgeId }, Context) ->
z:info(
"User ~p (~s) added to collaboration group ~p ('~s')",
[ UserId, email_bin(UserId, Context), UGId, title_bin(UGId, Context) ],
[ {module, ?MODULE}, {user_id, edge_user(EdgeId, Context)} ],
Context);
log_membership(#edge_delete{ predicate = hascollabmember, subject_id = UGId, object_id = UserId }, Context) ->
z:info(
"User ~p (~s) removed from collaboration group ~p ('~s')",
[ UserId, email_bin(UserId, Context), UGId, title_bin(UGId, Context) ],
[ {module, ?MODULE}, {user_id, undefined} ],
Context);
log_membership(#edge_insert{ predicate = hascollabmanager, subject_id = UGId, object_id = UserId, edge_id = EdgeId }, Context) ->
z:info(
"User ~p (~s) added as manager to collaboration group ~p ('~s')",
[ UserId, email_bin(UserId, Context), UGId, title_bin(UGId, Context) ],
[ {module, ?MODULE}, {user_id, edge_user(EdgeId, Context)} ],
Context);
log_membership(#edge_delete{ predicate = hascollabmanager, subject_id = UGId, object_id = UserId }, Context) ->
z:info(
"User ~p (~s) removed as manager from collaboration group ~p ('~s')",
[ UserId, email_bin(UserId, Context), UGId, title_bin(UGId, Context) ],
[ {module, ?MODULE}, {user_id, undefined} ],
Context).
edge_user(EdgeId, Context) ->
case m_edge:get(EdgeId, Context) of
undefined -> undefined;
Edge -> proplists:get_value(creator_id, Edge)
end.
title_bin(Id, Context) ->
z_html:unescape( z_convert:to_binary( z_trans:lookup_fallback( m_rsc:p_no_acl(Id, title, Context), Context) ) ).
email_bin(Id, Context) ->
z_convert:to_binary( m_rsc:p_no_acl(Id, email_raw, Context) ).
%% @doc Ensure that the privacy property is set.
-spec observe_rsc_get(#rsc_get{}, Acc, z:context()) -> Result when
Acc :: m_rsc:props(),
Result :: map().
observe_rsc_get(#rsc_get{}, #{ <<"category_id">> := CatId } = Map, Context) ->
case maps:get(<<"privacy">>, Map, undefined) of
undefined ->
Map#{
<<"privacy">> =>
case m_category:is_a_prim(CatId, person, Context) of
true -> ?ACL_PRIVACY_COLLAB_MEMBER;
false -> ?ACL_PRIVACY_PUBLIC
end
};
_ ->
Map
end.
status(Context) ->
gen_server:call(name(Context), status).
rebuild(Context) ->
rebuild(publish, Context),
rebuild(edit, Context).
rebuild(edit, Context) ->
gen_server:cast(name(Context), rebuild_edit);
rebuild(publish, Context) ->
gen_server:cast(name(Context), rebuild_publish).
-spec table(#context{}) -> ets:tab() | undefined.
table(Context) ->
table(acl_user_groups_checks:state(Context), Context).
-spec await_table(#context{}) -> ets:tab() | undefined.
await_table(Context) ->
await_table(acl_user_groups_checks:state(Context), Context).
-spec table(edit|publish, #context{}) -> ets:tab() | undefined.
table(State, Context) when State =:= edit; State =:= publish ->
try
gproc:get_value_shared({p,l,{z_context:site(Context), ?MODULE, State}})
catch
error:badarg ->
undefined
end.
-spec await_table(edit|publish, #context{}) -> ets:tab() | undefined.
await_table(State, Context) ->
await_table(State, infinity, Context).
-spec await_table(edit|publish, integer()|infinity, #context{}) -> ets:tab() | undefined.
await_table(State, infinity, Context) ->
case table(State, Context) of
undefined ->
timer:sleep(100),
await_table(State, infinity, Context);
TId ->
TId
end;
await_table(State, Timeout, Context) when Timeout > 0 ->
case table(State, Context) of
undefined ->
timer:sleep(10),
await_table(State, Timeout-10, Context);
TId ->
TId
end.
lookup(Key, Context) ->
lookup1(table(Context), Key).
await_lookup(Key, Context) ->
lookup1(await_table(Context), Key).
lookup1(undefined, _Key) ->
undefined;
lookup1(TId, Key) ->
case ets:lookup(TId, Key) of
[] -> undefined;
[{_,V}|_] -> V
end.
match(Pattern, Context) ->
match1(table(Context), Pattern).
await_match(Pattern, Context) ->
match1(await_table(Context), Pattern).
match1(undefined, _Pattern) ->
[];
match1(TId, Pattern) ->
ets:match(TId, Pattern).
-spec observe_admin_menu(#admin_menu{}, Acc, z:context()) -> Result when
Acc :: MenuItems,
Result :: MenuItems,
MenuItems :: [ #menu_item{} ].
observe_admin_menu(#admin_menu{}, Acc, Context) ->
[
#menu_item{id=admin_acl_user_groups,
parent=admin_auth,
label=?__("User groups", Context),
url={admin_menu_hierarchy, [{name, "acl_user_group"}]},
visiblecheck={acl, use, mod_acl_user_groups}},
#menu_item{id=admin_collaboration_groups,
parent=admin_auth,
label=?__("Collaboration groups", Context),
url={admin_overview_rsc, [{qcat, "acl_collaboration_group"}]}},
#menu_item{id=admin_content_groups,
parent=admin_auth,
label=?__("Access control rules", Context),
url={admin_acl_rules_rsc, []},
visiblecheck={acl, use, mod_acl_user_groups}}
|Acc].
name(Context) ->
z_utils:name_for_site(?MODULE, Context).
%%====================================================================
%% API
%%====================================================================
-spec start_link(list()) -> {ok, pid()} | ignore | {error, term()}.
%% @doc Starts the server
start_link(Args) when is_list(Args) ->
{context, Context} = proplists:lookup(context, Args),
gen_server:start_link({local, name(Context)}, ?MODULE, Args, []).
%%====================================================================
%% gen_server callbacks
%%====================================================================
-spec init(term()) -> {ok, term()} | {ok, term(), timeout() | hibernate} | ignore | {stop, term()}.
%% init(Args) -> {ok, State} |
%% {ok, State, Timeout} |
%% ignore |
%% {stop, Reason}
%% @doc Initiates the server.
init(Args) ->
process_flag(trap_exit, true),
{context, Context} = proplists:lookup(context, Args),
Site = z_context:site(Context),
logger:set_process_metadata(#{
site => Site,
module => ?MODULE
}),
timer:send_after(10, rebuild),
{ok, #state{ site=Site, is_rebuild_publish=true, is_rebuild_edit=true}}.
handle_call(status, _From, State) ->
Reply = {ok, [
{is_rebuilding, is_pid(State#state.rebuilder_pid)},
{rebuilding, State#state.rebuilding},
{is_rebuild_publish, State#state.is_rebuild_publish},
{is_rebuild_edit, State#state.is_rebuild_edit}
]},
{reply, Reply, State};
handle_call(Message, _From, State) ->
{stop, {unknown_call, Message}, State}.
handle_cast(rebuild_publish, State) ->
timer:send_after(100, rebuild),
{noreply, State#state{is_rebuild_publish=true}};
handle_cast(rebuild_edit, State) ->
timer:send_after(750, rebuild),
{noreply, State#state{is_rebuild_edit=true}};
handle_cast(rebuild, State) ->
handle_info(rebuild, State);
handle_cast(Message, State) ->
{stop, {unknown_cast, Message}, State}.
handle_info(rebuild, #state{rebuilder_pid=undefined} = State) ->
State1 = maybe_rebuild(State),
{noreply, State1};
handle_info(rebuild, #state{rebuilder_pid=Pid} = State) when is_pid(Pid) ->
{noreply, State};
handle_info({'DOWN', MRef, process, _Pid, normal}, #state{rebuilder_mref = MRef, site = Site} = State) ->
?LOG_DEBUG("[mod_acl_user_groups] rebuilder for ~p finished.",
[State#state.rebuilding]),
State1 = State#state{
rebuilding=undefined,
rebuilder_pid=undefined,
rebuilder_mref=undefined
},
State2 = maybe_rebuild(State1),
Context = z_context:new(Site),
z_mqtt:publish(
<<"model/acl_user_groups/event/acl-rules/", (z_convert:to_binary(State#state.rebuilding))/binary, "-rebuild">>,
true,
z_acl:sudo(Context)
),
{noreply, State2};
handle_info({'DOWN', MRef, process, _Pid, Reason}, #state{rebuilder_mref=MRef} = State) ->
?LOG_ERROR("[mod_acl_user_groups] rebuilder for ~p down with reason ~p",
[State#state.rebuilding, Reason]),
State1 = case State#state.rebuilding of
publish -> State#state{is_rebuild_publish=true};
edit -> State#state{is_rebuild_edit=true}
end,
timer:send_after(500, rebuild),
{noreply, State1#state{
rebuilding=undefined,
rebuilder_pid=undefined,
rebuilder_mref=undefined
}};
handle_info({'ETS-TRANSFER', TId, _FromPid, publish}, State) ->
?LOG_DEBUG("[mod_acl_user_groups] 'ETS-TRANSFER' for 'publish' (~p)", [TId]),
gproc_new_ets(TId, publish, State#state.site),
State1 = store_new_ets(TId, publish, State),
z_mqtt:publish(<<"model/acl_user_groups/event/acl-rules/publish">>, true, z_context:new(State#state.site)),
{noreply, State1};
handle_info({'ETS-TRANSFER', TId, _FromPid, edit}, State) ->
?LOG_DEBUG("[mod_acl_user_groups] 'ETS-TRANSFER' for 'edit' (~p)", [TId]),
gproc_new_ets(TId, edit, State#state.site),
State1 = store_new_ets(TId, edit, State),
z_mqtt:publish(<<"model/acl_user_groups/event/acl-rules/edit">>, true, z_context:new(State#state.site)),
{noreply, State1};
handle_info({'EXIT', _Pid, normal}, State) ->
{noreply, State};
handle_info(Info, State) ->
?LOG_WARNING("[mod_acl_user_groups] unknown info message ~p", [Info]),
{noreply, State}.
-spec terminate(term(), term()) -> ok.
%% @doc This function is called by a gen_server when it is about to
%% terminate. It should be the opposite of Module:init/1 and do any necessary
%% cleaning up. When it returns, the gen_server terminates with Reason.
%% The return value is ignored.
terminate(_Reason, _State) ->
ok.
-spec code_change(term(), term(), term()) -> {ok, term()}.
%% @doc Convert process state when code is changed
code_change(_OldVsn, State, _Extra) ->
{ok, State}.
%%====================================================================
%% Internal functions
%%====================================================================
%% @doc Check if we need to start a rebuild process
maybe_rebuild(#state{is_rebuild_publish=true} = State) ->
{Pid, MRef} = start_rebuilder(publish, State#state.site),
State#state{
is_rebuild_publish=false,
rebuilder_pid=Pid,
rebuilding=publish,
rebuilder_mref=MRef
};
maybe_rebuild(#state{is_rebuild_edit=true} = State) ->
{Pid, MRef} = start_rebuilder(edit, State#state.site),
State#state{
is_rebuild_edit=false,
rebuilder_pid=Pid,
rebuilding=edit,
rebuilder_mref=MRef
};
maybe_rebuild(#state{} = State) ->
State.
start_rebuilder(EditState, Site) ->
Self = self(),
Pid = z_proc:spawn_link_md(fun() ->
Context = z_acl:sudo(z_context:new(Site)),
acl_user_group_rebuilder:rebuild(Self, EditState, Context)
end),
MRef = erlang:monitor(process, Pid),
{Pid, MRef}.
gproc_new_ets(TId, EditState, Site) ->
Key = {Site, ?MODULE, EditState},
try
gproc:unreg_shared({p,l,Key})
catch
error:badarg -> ok
end,
true = gproc:reg_shared({p,l,Key}, TId).
store_new_ets(TId, publish, #state{table_publish=Ts} = State) ->
Ts1 = drop_old_ets(Ts),
State#state{table_publish=[TId|Ts1]};
store_new_ets(TId, edit, #state{table_edit=Ts} = State) ->
Ts1 = drop_old_ets(Ts),
State#state{table_edit=[TId|Ts1]}.
drop_old_ets([A|Rest]) ->
lists:foreach(fun(TId) ->
ets:delete(TId)
end,
Rest),
[A];
drop_old_ets([]) ->
[].
%%====================================================================
%% Manage Schema
%%====================================================================
manage_schema(Version, Context) ->
m_acl_rule:manage_schema(Version, Context),
#datamodel{
categories = [
{acl_user_group, meta, [
{title, {trans, [{en, <<"User Group">>}, {nl, <<"Gebruikersgroep">>}]}}
]},
{acl_collaboration_group, meta, [
{title, {trans, [{en, <<"Collaboration Group">>}, {nl, <<"Samenwerkingsgroep">>}]}}
]}
],
resources = [
{acl_user_group_anonymous,
acl_user_group,
[{title, {trans, [{en, <<"Anonymous">>}, {nl, <<"Anoniem">>}]}}]},
{acl_user_group_members,
acl_user_group,
[{title, {trans, [{en, <<"Members">>}, {nl, <<"Gebruikers">>}]}}]},
{acl_user_group_editors,
acl_user_group,
[{title, {trans, [{en, <<"Editors">>}, {nl, <<"Redactie">>}]}}]},
{acl_user_group_managers,
acl_user_group,
[{title, {trans, [{en, <<"Managers">>}, {nl, <<"Beheerders">>}]}}]}
],
predicates = [
{hasusergroup,
[{title, {trans, [{en, <<"In User Group">>},{nl, <<"In gebruikersgroep">>}]}}],
[{person, acl_user_group}]
},
{hascollabmember,
[{title, {trans, [{en, <<"Member">>},{nl, <<"Lid">>}]}}],
[{acl_collaboration_group, person}]
},
{hascollabmanager,
[{title, {trans, [{en, <<"Manager">>},{nl, <<"Beheerder">>}]}}],
[{acl_collaboration_group, person}]
}
]
}.
manage_data(install, Context) ->
case m_hierarchy:tree(acl_user_group, Context) of
[] ->
R = fun(N) -> m_rsc:rid(N, Context) end,
NewTree = [
{R(acl_user_group_anonymous), [
{R(acl_user_group_members), [
{R(acl_user_group_editors), [
{R(acl_user_group_managers), []}
]}
]}
]}
],
m_hierarchy:save(acl_user_group, NewTree, Context),
Rules = acl_default_rules:get_default_rules(),
m_acl_rule:replace_managed(Rules, ?MODULE, Context),
ok;
_ ->
ok
end;
manage_data(_Version, _Context) ->
ok.
page_actions(Actions, Context) ->
z_notifier:first(#page_actions{ actions = Actions }, Context).