-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent_access_delegate.module
executable file
·116 lines (100 loc) · 3.79 KB
/
content_access_delegate.module
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
/**
* Implements hook_views_api().
*/
function content_access_delegate_views_api() {
return array(
'api' => 3,
'path' => drupal_get_path('module', 'content_access_delegate') . '/views',
);
}
/**
* Implements hook_action_info().
*/
function content_access_delegate_action_info() {
return array(
'content_access_delegate_grants_action' => array(
'type' => 'node',
'label' => t('Delegate node access grants'),
'behavior' => array('changes_property'),
'configurable' => FALSE,
'vbo_configurable' => TRUE,
'triggers' => array('any'),
'pass rows' => TRUE,
'permissions' => array('grant content access', 'grant own content access'),
),
);
}
/**
* Action function for content_access_delegate_delegate_grants_action().
*/
function content_access_delegate_grants_action($node, $context) {
$default_operations = array('view', 'view_own', 'update', 'update_own', 'delete', 'delete_own');
$dest_role = user_role_load($context['dest_role']);
$source_role = user_role_load($context['source_role']);
$settings = array();
foreach ($default_operations as $op) {
$rids = content_access_get_rids_per_node_op($op, $node);
// If destination role already has this grant skip and only show message.
if (in_array($source_role->rid, $rids) && !in_array($dest_role->rid, $rids)) {
// Changing existing rid to destination rid, so only existing grants have been delegated.
$rids = str_replace($source_role->rid, $dest_role->rid, $rids);
drupal_set_message(t("Role @source_role_name has been delegate @op grant on @node_title (nid: @nid) to role @dest_role_name.", array(
'@node_title' => $node->title,
'@nid' => $node->nid,
'@source_role_name' => $source_role->name,
'@dest_role_name' => $dest_role->name,
'@op' => $op,
)), 'status');
} elseif (in_array($source_role->rid, $rids) && in_array($dest_role->rid, $rids)) {
// Remove source role from $rids becouse they arn't remove, it was only replaced so far.
$rids = array_filter(str_replace($source_role->rid, '', $rids));
drupal_set_message(t("Role @dest_role_name can @op @node_title (nid: @nid) already.", array(
'@node_title' => $node->title,
'@nid' => $node->nid,
'@dest_role_name' => $dest_role->name,
'@op' => $op,
)), 'status');
}
$settings[$op] = $rids;
}
// Save settings to content_access table.
content_access_save_per_node_settings($node, $settings);
// Apply new settings.
node_access_acquire_grants($node);
}
/**
* Generates settings form for content_access_delegate_grants_action().
*/
function content_access_delegate_grants_action_form($settings, &$form_state) {
$roles = user_roles(TRUE);
unset($roles[DRUPAL_AUTHENTICATED_RID]);
unset($roles[3]);
$form = array();
$form['dest_role'] = array(
'#type' => 'select',
'#title' => t('Choose destination role.'),
'#description' => t('Choose role which will get grants.'),
'#required' => TRUE,
'#options' => $roles,
'#default_value' => !empty($context['dest_role']) ? $context['dest_role'] : '',
);
return $form;
}
/**
* Validates content_access_delegate_grants_action().
*/
function content_access_delegate_grants_action_validate($form, $form_state) {
if ($form_state['build_info']['args'][0]->exposed_input['gid'] == $form['dest_role']['#value']) {
form_set_error('dest_role', t('Please, choose different role for source role and destination role.'));
}
}
/**
* Submit handler for content_access_delegate_grants_action().
*/
function content_access_delegate_grants_action_submit($form, $form_state) {
return array(
'source_role' => $form_state['build_info']['args'][0]->exposed_input['gid'],
'dest_role' => $form_state['values']['dest_role'],
);
}