$node->title))); foreach (_content_access_get_operations() as $op) { $defaults[$op] = content_access_per_node_setting($op, $node); } $form = content_access_role_based_form($defaults); // Add a after_build handler that disables checkboxes, which are enforced by permissions. $form['per_role']['#after_build'] = array('content_access_force_permissions'); if (module_exists('acl')) { // This is disabled when there is no node passed. $form['acl'] = array( '#type' => 'fieldset', '#title' => t('User access control lists'), '#description' => t('These settings allow you to grant access to specific users.'), '#collapsible' => TRUE, '#tree' => TRUE, ); foreach (array('view', 'update', 'delete') as $op) { $acl_id = content_access_get_acl_id($node, $op); acl_node_add_acl($node->nid, $acl_id, $op == 'view', $op == 'update', $op == 'delete', content_access_get_settings('priority', $node->type)); $form['acl'][$op] = acl_edit_form($acl_id, t('Grant !op access', array('!op' => $op))); $form['acl'][$op]['#collapsed'] = !isset($_POST['acl_'. $acl_id]) && !unserialize($form['acl'][$op]['user_list']['#default_value']); } } $form_state['node'] = $node; $form['submit'] = array( '#type' => 'submit', '#value' => t('Submit'), '#weight' => 10, ); $form['reset'] = array( '#type' => 'submit', '#value' => t('Reset to defaults'), '#weight' => 10, '#submit' => array('content_access_page_reset'), '#access' => count(content_access_get_per_node_settings($node)) > 0, ); if (!$node->status) { drupal_set_message(t("Warning: Your content is not published, so this settings are not taken into account as long as the content remains unpublished."), 'error'); } return $form; } function content_access_page_submit($form, &$form_state) { $settings = array(); $node = $form_state['node']; foreach (_content_access_get_operations() as $op) { // Set the settings so that further calls will return this settings. $settings[$op] = array_keys(array_filter($form_state['values'][$op])); } // Save per-node settings. content_access_save_per_node_settings($node, $settings); if (module_exists('acl')) { foreach (array('view', 'update', 'delete') as $op) { acl_save_form($form_state['values']['acl'][$op]); } } // Apply new settings. node_access_acquire_grants($node); cache_clear_all(); drupal_set_message(t('Your changes have been saved.')); } function content_access_page_reset($form, &$form_state) { content_access_delete_per_node_settings($form_state['node']); node_access_acquire_grants($form_state['node']); cache_clear_all(); drupal_set_message(t('The permissions have been reseted to the content type defaults.')); } /** * Per content type administration page form. */ function content_access_admin_settings(&$form_state, $type) { $form_state['type'] = $type; // Add role based per content type settings $defaults = array(); foreach (_content_access_get_operations() as $op) { $defaults[$op] = content_access_get_settings($op, $type); } $form = content_access_role_based_form($defaults); // Per node: $form['node'] = array( '#type' => 'fieldset', '#title' => t('Per content node access control settings'), '#collapsible' => TRUE, '#description' => t('Optionally you can enable per content node access control settings. If enabled, a new tab for the content access settings appears when viewing content. You have to configure permission to access these settings at the !permissions page.', array('!permissions' => l(t('permissions'), 'admin/user/permissions'))), ); $form['node']['per_node'] = array( '#type' => 'checkbox', '#title' => t('Enable per content node access control settings'), '#default_value' => content_access_get_settings('per_node', $type), ); $form['advanced'] = array( '#type' => 'fieldset', '#title' => t('Advanced'), '#collapsible' => TRUE, '#collapsed' => TRUE, ); $form['advanced']['priority'] = array( '#type' => 'weight', '#title' => t('Give content node grants priority'), '#default_value' => content_access_get_settings('priority', $type), '#description' => t('If you are only using this access control module, you can safely ignore this. If you are using multiple access control modules you can adjust the priority of this module.'), ); $form['submit'] = array( '#type' => 'submit', '#value' => t('Submit'), '#weight' => 10, ); return $form; } function content_access_admin_settings_submit($form, &$form_state) { // Where possible let the drupal permissions system handle access control. $permissions = content_access_get_permissions_by_role(); foreach (array('update', 'update_own', 'delete', 'delete_own') as $op) { foreach ($form_state['values'][$op] as $rid => $value) { $permissions[$rid][ content_access_get_permission_by_op($op, $form_state['type']) ] = $value; } // Don't save the setting, so its default value (get permission) is applied always. unset($form_state['values'][$op]); } content_access_save_permissions($permissions); // Update content access settings $settings = content_access_get_settings(); foreach (content_access_available_settings() as $setting) { unset($settings[$setting][$form_state['type']]); if (isset($form_state['values'][$setting])) { $settings[$setting][$form_state['type']] = is_array($form_state['values'][$setting]) ? array_keys(array_filter($form_state['values'][$setting])) : $form_state['values'][$setting]; } } content_access_set_settings($settings); $type = $form_state['type']; // Mass update the nodes, but only if necessary. if (content_access_get_settings('per_node', $type) || content_access_get_settings('view', $type) != $form['per_role']['view']['#default_value'] || content_access_get_settings('view_own', $type) != $form['per_role']['view_own']['#default_value'] || content_access_get_settings('priority', $type) != $form['advanced']['priority']['#default_value'] || content_access_get_settings('per_node', $type) != $form['node']['per_node']['#default_value'] ) { // If per node has been disabled and we use the ACL integration, we have to remove possible ACLs now. if (!content_access_get_settings('per_node', $type) && $form['node']['per_node']['#default_value'] && module_exists('acl')) { _content_access_remove_acls($type); } if (content_access_mass_update(array($type))) { drupal_set_message(t('Permissions have been successfully rebuilt for the content type @types.', array('@types' => node_get_types('name', $type)))); } } drupal_set_message(t('Your changes have been saved.')); } /** * Mass updates node access records for nodes of the given types. * @param $types * An array of content type names. * @return * Whether the operation has been processed successfully (TRUE) or postponed (FALSE). */ function content_access_mass_update($types) { $count = db_result(db_query("SELECT COUNT(DISTINCT nid) FROM {node} WHERE type IN (". db_placeholders($types, 'text') .")", $types)); node_access_needs_rebuild(TRUE); // If there not too much nodes affected, try to do it. if ($count <= CONTENT_ACCESS_MASS_UPDATE_THRESHOLD) { $result = db_query("SELECT nid FROM {node} WHERE type IN (". db_placeholders($types, 'text') .")", $types); while ($node = db_fetch_object($result)) { node_access_acquire_grants(node_load($node->nid)); } cache_clear_all(); node_access_needs_rebuild(FALSE); return TRUE; } return FALSE; } /** * Gets the permissions for the role of the given id. */ function content_access_get_permissions_by_role() { $result = db_query('SELECT r.rid, p.perm FROM {role} r LEFT JOIN {permission} p ON r.rid = p.rid'); $permissions = array(); while ($role = db_fetch_object($result)) { $permissions[$role->rid] = array_filter(drupal_map_assoc(explode(', ', $role->perm))); } return $permissions; } /** * Saves the given permissions by role to the database. */ function content_access_save_permissions($permissions) { foreach ($permissions as $rid => $perms) { $perms = array_filter($perms); db_query('DELETE FROM {permission} WHERE rid = %d', $rid); if (count($perms)) { db_query("INSERT INTO {permission} (rid, perm) VALUES (%d, '%s')", $rid, implode(', ', array_keys($perms))); } } // Make sure new permissions are applied immediately. content_access_get_permission_access(FALSE, TRUE); } /** * Builds the role based permission form for the given defaults. * * @param $defaults * Array of defaults for all operations. */ function content_access_role_based_form($defaults = array()) { // Make sure defaults are set properly foreach (_content_access_get_operations() as $op) { $defaults += array($op => array()); } $roles = array_map('filter_xss_admin', user_roles()); // Per type: $form['per_role'] = array( '#type' => 'fieldset', '#title' => t('Role based access control settings'), '#collapsible' => TRUE, '#description' => t('Note that users need at least the %access_content permission to be able to deal in any way with content.', array('%access_content' => t('access content'))). ' '. t('Furthermore note that content which is not @published is treated in a different way by drupal: It can be viewed only by its author or users with the %administer_nodes permission.', array('@published' => t('published'), '%administer_nodes' => t('administer nodes'))), ); drupal_add_css(drupal_get_path('module', 'content_access') . '/content_access.css'); $form['per_role']['view'] = array('#type' => 'checkboxes', '#prefix' => '