domain_content.admin.inc in Domain Access 7.3
Same filename and directory in other branches
Administration pages for Domain Content.
File
domain_content/domain_content.admin.incView source
<?php
/**
* @file
* Administration pages for Domain Content.
*
* @ingroup domain_content
*/
// Ensure that the node admin page functions are loaded.
module_load_include('inc', 'node', 'node.admin');
/**
* The domain content page of menu callbacks.
*
* @return
* A link group for each domain the user can access.
*/
function domain_content_page() {
$build = array();
$content = array();
$content = system_admin_menu_block(menu_get_item('admin/domain/content'));
// Print the list of options.
if (!empty($content)) {
$output = theme('admin_block_content', array(
'content' => $content,
));
}
else {
$output = t('There are no valid domains configured.');
}
$build['content'] = array(
'#markup' => $output,
);
return $build;
}
/**
* List the available domains for this user.
*
* See http://drupal.org/node/367752 for a discussion of the
* need for this function.
*/
function domain_content_list() {
global $user;
domain_user_set($user);
$build = array();
$show_all = user_access('bypass node access') || user_access('review content for all domains');
if (!$show_all) {
if (empty($user->domain_user)) {
return drupal_access_denied();
}
$user_domains = array_filter($user->domain_user);
}
// Table information
$header = array(
array(
'data' => t('Id'),
'field' => 'domain_id',
),
array(
'data' => t('Site content'),
'field' => 'sitename',
),
array(
'data' => t('Content count'),
),
array(
'data' => t('Unpublished'),
),
array(
'data' => t('Site'),
'field' => 'subdomain',
),
);
// Set up the base query.
$query = db_select('domain', 'd')
->fields('d', array(
'is_default',
'domain_id',
'sitename',
'subdomain',
'scheme',
'valid',
));
// Filter by user access to assigned domains.
if (!$show_all) {
$query
->condition('domain_id', $user_domains, 'IN');
}
// Add the tablesort.
$query = $query
->extend('TableSort')
->orderBy('is_default', 'DESC')
->orderByHeader($header);
$query = $query
->extend('PagerDefault')
->limit(variable_get('domain_list_size', DOMAIN_LIST_SIZE));
// Get the domains.
$result = $query
->execute();
foreach ($result as $data) {
$domains[] = (array) $data;
}
// Create the table.
$rows = array();
foreach ($domains as $domain) {
$path = trim(domain_get_path($domain), '/');
$rows[] = array(
$domain['domain_id'] . ($domain['is_default'] ? ' * ' : ''),
l(t('@sitename content', array(
'@sitename' => $domain['sitename'],
)), 'admin/domain/content/' . $domain['domain_id']),
number_format((int) db_query("SELECT COUNT(nid) FROM {domain_access} WHERE gid = :gid AND realm = :realm", array(
':gid' => $domain['domain_id'],
':realm' => 'domain_id',
))
->fetchField()),
number_format((int) db_query("SELECT COUNT(n.nid) FROM {node} n INNER JOIN {domain_access} da ON n.nid = da.nid WHERE da.gid = :gid AND da.realm = :realm AND n.status = 0", array(
':gid' => $domain['domain_id'],
':realm' => 'domain_id',
))
->fetchField()),
l(t('View @domain', array(
'@domain' => $domain['subdomain'],
)), $path),
);
}
$all = array(
'-',
l(t('Content assigned to all affiliates'), 'admin/domain/content/all'),
number_format((int) db_query("SELECT COUNT(nid) FROM {domain_access} WHERE gid = :gid AND realm = :realm", array(
':gid' => 0,
':realm' => 'domain_site',
))
->fetchField()),
number_format((int) db_query("SELECT COUNT(n.nid) FROM {node} n INNER JOIN {domain_access} da ON n.nid = da.nid WHERE da.gid = :gid AND da.realm = :realm AND n.status = 0", array(
':gid' => 0,
':realm' => 'domain_site',
))
->fetchField()),
'',
);
array_unshift($rows, $all);
if (!empty($rows)) {
$output = '<p>' . t('The table below shows all the affiliates sites whose content you may edit. Click on the site name link to see all content assigned to that affiliate. Note that not all users may view unpublished content.') . '</p>';
$build['header'] = array(
'#markup' => $output,
);
$build['content'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $rows,
'#attributes' => array(
'id' => 'domain-list',
),
);
$build['pager']['#theme'] = 'pager';
}
else {
$build['content'] = array(
'#markup' => t('You do not have editing access to any domains. Please contact your site administrator.'),
);
}
return $build;
}
/**
* Content administration for a specific domain.
*
* This callback puts the user on the current domain and then
* fetches the appropriate content for batch editing.
*
* @param $domain_id
* The unique identifier for the currently active domain.
* @param $all_affiliates
* A boolean flag that indicates whether to grant the domain_site node access
* realm for this content view.
*
* @return
* A link group for each domain the user can access.
*/
function domain_content_view($domain_id = NULL, $all_affiliates = FALSE) {
$build = array();
$_domain = domain_get_domain();
// Load the active domain, which is not necessarily the current domain.
if (!is_null($domain_id) && $domain_id != $_domain['domain_id']) {
domain_set_domain($domain_id);
$_domain = domain_get_domain();
}
$output = '';
// Override the $_domain global so we can see the appropriate content
if (!is_null($domain_id)) {
$_domain['site_grant'] = FALSE;
drupal_set_title(t('Content for @domain', array(
'@domain' => $_domain['sitename'],
)));
}
elseif ($all_affiliates) {
$_domain['site_grant'] = TRUE;
drupal_set_title(t('Content for all affiliate sites'));
}
else {
drupal_set_message(t('Invalid request'), 'error');
$build['content'] = array(
'#markup' => t('<p>The specified domain does not exist.</p>'),
);
return $build;
}
$output = drupal_get_form('domain_content_admin');
// Reset the active domain.
domain_reset_domain();
return $output;
}
/**
* Content admin page callback.
*
* @return
* A themed HTML batch content editing form.
*/
function domain_content_admin($form, &$form_state) {
$form['#attached']['css'] = array(
drupal_get_path('module', 'domain_content') . '/domain_content.css',
);
if (isset($form_state['values']['operation']) && $form_state['values']['operation'] == 'delete') {
$form = node_multiple_delete_confirm($form, $form_state, array_filter($form_state['values']['nodes']));
// Set the proper path for form actions.
$form['actions']['cancel']['#href'] = $form['actions']['cancel']['#options']['path'] = request_path();
$form['#submit'][] = 'domain_content_delete_multiple_submit';
return $form;
}
$form['filter'] = node_filter_form();
$form['#submit'][] = 'node_filter_form_submit';
// Privileged users can make global changes to Domain Access permissions.
if (user_access('set domain access')) {
domain_content_add_form_widget($form);
}
$form['admin'] = domain_content_form();
$form['admin']['options']['submit']['#submit'][] = 'domain_content_process_nodes';
// Filter the available operations based on user permissions.
domain_content_filter_operations($form['admin']['options']['operation']['#options']);
return $form;
}
/**
* On delete confirmation, redirect properly.
*/
function domain_content_delete_multiple_submit($form, &$form_state) {
$form_state['redirect'] = $form['actions']['cancel']['#href'];
}
/**
* Rewrites node_admin_nodes() to use db_rewrite_sql().
*
* @return
* A form array according to the FormsAPI.
*/
function domain_content_form() {
$_domain = domain_get_domain();
$admin_access = user_access('administer nodes');
// Build the 'Update options' form.
$form['options'] = array(
'#type' => 'fieldset',
'#title' => t('Update options'),
'#attributes' => array(
'class' => array(
'container-inline',
),
),
);
$options = array();
// Get the actions the user may perform.
if ($admin_access) {
foreach (module_invoke_all('node_operations') as $operation => $array) {
$options[$operation] = $array['label'];
}
}
else {
$list = domain_content_node_operations();
foreach ($list as $key => $value) {
$options[$key] = $value['label'];
}
}
// No options? No form access.
if (empty($options)) {
$form['options']['#access'] = FALSE;
}
$form['options']['operation'] = array(
'#type' => 'select',
'#options' => $options,
'#default_value' => 'approve',
);
$form['options']['submit'] = array(
'#type' => 'submit',
'#value' => t('Update'),
'#validate' => array(
'node_admin_nodes_validate',
),
'#submit' => array(
'node_admin_nodes_submit',
),
);
// Enable language column if translation module is enabled
// or if we have any node with language.
$multilanguage = module_exists('translation') || db_query("SELECT 1 FROM {node} WHERE language <> :language", array(
':language' => LANGUAGE_NONE,
))
->fetchField();
// Build the sortable table header.
$header = array(
'title' => array(
'data' => t('Title'),
'field' => 'n.title',
),
'domains' => array(
'data' => t('Affiliates'),
),
'type' => array(
'data' => t('Type'),
'field' => 'n.type',
),
'author' => t('Author'),
'status' => array(
'data' => t('Status'),
'field' => 'n.status',
),
'changed' => array(
'data' => t('Updated'),
'field' => 'n.changed',
'sort' => 'desc',
),
);
if ($multilanguage) {
$header['language'] = array(
'data' => t('Language'),
'field' => 'n.language',
);
}
$header['operations'] = array(
'data' => t('Operations'),
);
$query = db_select('node', 'n')
->extend('PagerDefault')
->extend('TableSort');
node_build_filter_query($query);
if (!user_access('bypass node access')) {
// If the user can view unpublished nodes on assigned domains, then we can
// continue here.
if (user_access('view unpublished domain content')) {
// Do nothing.
}
elseif (user_access('view own unpublished content')) {
$subselect = db_select('node', 'node')
->fields('node', array(
'nid',
))
->condition('node.uid', $GLOBALS['user']->uid)
->condition('node.status', 0);
$query
->condition(db_or()
->condition('n.status', 1)
->condition('n.nid', $subselect, 'IN'));
}
else {
$query
->condition('n.status', 1);
}
}
// Write the proper query.
$arg = arg(3);
// If 'all', only show content assigned to all affiliates.
if ($arg == 'all') {
domain_content_alter_node_query($query, TRUE, FALSE);
}
else {
// Restrict the query to the active domain.
domain_content_alter_node_query($query, FALSE);
}
$nids = $query
->fields('n', array(
'nid',
))
->limit(50)
->orderByHeader($header)
->execute()
->fetchCol();
$nodes = node_load_multiple($nids);
// Prepare the list of nodes.
$languages = language_list();
$destination = drupal_get_destination();
$options = array();
foreach ($nodes as $node) {
$l_options = !empty($node->language) && $node->language != LANGUAGE_NONE ? array(
'language' => $languages[$node->language],
) : array();
$options[$node->nid] = array(
'title' => array(
'data' => array(
'#type' => 'link',
'#title' => $node->title,
'#href' => 'node/' . $node->nid,
'#options' => $l_options,
'#suffix' => ' ' . theme('mark', array(
'type' => node_mark($node->nid, $node->changed),
)),
),
),
'domains' => domain_content_view_domains($node),
// set the assigned domains
'type' => check_plain(node_type_get_name($node)),
'author' => theme('username', array(
'account' => $node,
)),
'status' => $node->status ? t('published') : t('not published'),
'changed' => format_date($node->changed, 'short'),
);
if ($multilanguage) {
$options[$node->nid]['language'] = empty($node->language) || $node->language == LANGUAGE_NONE ? t('Language neutral') : t($languages[$node->language]->name);
}
// Build a list of all the accessible operations for the current node.
$operations = array();
if (node_access('update', $node)) {
$operations['edit'] = array(
'title' => t('edit'),
'href' => 'node/' . $node->nid . '/edit',
'query' => $destination,
);
}
if (node_access('delete', $node)) {
$operations['delete'] = array(
'title' => t('delete'),
'href' => 'node/' . $node->nid . '/delete',
'query' => $destination,
);
}
$options[$node->nid]['operations'] = array();
if (count($operations) > 1) {
// Render an unordered list of operations links.
$options[$node->nid]['operations'] = array(
'data' => array(
'#theme' => 'links__node_operations',
'#links' => $operations,
'#attributes' => array(
'class' => array(
'links',
'inline',
),
),
),
);
}
elseif (!empty($operations)) {
// Render the first and only operation as a link.
$link = reset($operations);
$options[$node->nid]['operations'] = array(
'data' => array(
'#type' => 'link',
'#title' => $link['title'],
'#href' => $link['href'],
'#options' => array(
'query' => $link['query'],
),
),
);
}
}
// Only use a tableselect when the current user is able to perform any
// operations.
if (!empty($operations)) {
$form['nodes'] = array(
'#type' => 'tableselect',
'#header' => $header,
'#options' => $options,
'#empty' => t('No content available.'),
);
}
else {
$form['nodes'] = array(
'#theme' => 'table',
'#header' => $header,
'#rows' => $options,
'#empty' => t('No content available.'),
);
}
$form['pager'] = array(
'#markup' => theme('pager', array(
'tags' => NULL,
)),
);
return $form;
}
/**
* Format domains for this node.
*/
function domain_content_view_domains($node) {
$node_domains = array();
if (!empty($node->domains)) {
foreach ($node->domains as $domain) {
// Convert the domain ids to data so we can print them.
$node_domains[] = domain_lookup($domain);
}
}
// If we have multiple domains, print them.
$items = array();
if ($node->domain_site) {
$items[-1] = t('All affiliates');
}
if (!empty($node_domains)) {
foreach ($node_domains as $item) {
$items[$item['domain_id']] = check_plain($item['sitename']);
}
}
if (module_exists('domain_source')) {
$source = NULL;
$source = db_query("SELECT domain_id FROM {domain_source} WHERE nid = :nid", array(
':nid' => $node->nid,
))
->fetchField();
if (!empty($source) && isset($items[$source])) {
$items[$source] .= '*';
}
}
return theme('item_list', array(
'items' => $items,
));
}
/**
* Filters the node batch operations based on the user's permissions.
*
* @param &$operations
* The complete list of operations, passed by reference.
*
* @return
* No return value. Modify by reference.
*/
function domain_content_filter_operations(&$operations) {
// Administer nodes can do anything.
if (user_access('administer nodes')) {
return;
}
// Check for the delete perm.
if (!user_access('delete domain content')) {
unset($operations['delete']);
}
}
/**
* Abstraction to allow query alters outside of node access.
*
* @param $query
* A dynamic node query.
* @param $all_affiliates
* Boolean value indicating whether to grant the 'domain_site' grant.
* @param $current_domain
* Boolean value indicating whether to grant the 'domain_id' grant.
*/
function domain_content_alter_node_query(QueryAlterableInterface $query, $all_affiliates = TRUE, $current_domain = TRUE) {
$_domain = domain_get_domain();
$domain_id = (int) $_domain['domain_id'];
$tables = $query
->getTables();
foreach ($tables as $nalias => $tableinfo) {
$table = $tableinfo['table'];
if (!$table instanceof SelectQueryInterface && $table == 'node') {
$access_alias = $query
->join('domain_access', 'da_admin', "da_admin.nid = {$nalias}.nid");
$or = db_or();
if ($all_affiliates) {
$or
->condition(db_and()
->condition("{$access_alias}.gid", 0)
->condition("{$access_alias}.realm", 'domain_site'));
}
if ($current_domain) {
$or
->condition(db_and()
->condition("{$access_alias}.gid", $domain_id)
->condition("{$access_alias}.realm", 'domain_id'));
if (user_access('view unpublished domain content')) {
$or
->condition(db_and()
->condition("{$access_alias}.gid", $domain_id)
->condition("{$access_alias}.realm", 'domain_unpublished'));
}
}
$query
->condition($or);
// Node module will not have run, so add the distinct.
$query
->distinct();
}
}
}
Functions
Name | Description |
---|---|
domain_content_admin | Content admin page callback. |
domain_content_alter_node_query | Abstraction to allow query alters outside of node access. |
domain_content_delete_multiple_submit | On delete confirmation, redirect properly. |
domain_content_filter_operations | Filters the node batch operations based on the user's permissions. |
domain_content_form | Rewrites node_admin_nodes() to use db_rewrite_sql(). |
domain_content_list | List the available domains for this user. |
domain_content_page | The domain content page of menu callbacks. |
domain_content_view | Content administration for a specific domain. |
domain_content_view_domains | Format domains for this node. |