array( 'title' => t('Designate fields as unique'), 'description' => t('Configure whether any fields of a content type should be unique.'), ), 'unique_field_perm_bypass' => array( 'title' => t('Bypass requirement that fields are unique'), 'description' => t('Allows users to ignore errors about duplicate content and submit it anyway.'), ), ); } /** * Implement hook_form_alter(). */ function unique_field_form_alter(&$form, &$form_state, $form_id) { if ($form_id == 'node_type_form' && user_access('unique_field_perm_admin') && isset($form['#node_type']) && !empty($form['#node_type']->type)) { unique_field_node_settings_form($form); } elseif (strpos($form_id, 'node_form') !== FALSE && user_access('unique_field_perm_bypass')) { $form['unique_field_override'] = array( '#type' => 'hidden', '#default_value' => '0', ); } } /** * Implement hook_node_validate(). */ function unique_field_node_validate($node, $form) { // skip validation if override value is set if (is_array($form) && is_array($form['unique_field_override']) && $form['unique_field_override']['#value'] && user_access('unique_field_perm_bypass')) { return; } // get list of unique fields for node type $fields = variable_get('unique_field_fields_' . $node->type, array()); // check if there are unique fields for this node type if (count($fields)) { // get unique field settings for this node type $scope = variable_get('unique_field_scope_' . $node->type, UNIQUE_FIELD_SCOPE_TYPE); $comp = variable_get('unique_field_comp_' . $node->type, UNIQUE_FIELD_COMP_EACH); $var_show_matches = variable_get('unique_field_show_matches_' . $node->type, array()); $show_matches = is_array($var_show_matches) && in_array(UNIQUE_FIELD_SHOW_MATCHES, $var_show_matches); // initialization $errmsg = NULL; $errfld = array(); $matches = array(); $allmatch = NULL; // check fields for node scope if ($scope === UNIQUE_FIELD_SCOPE_NODE) { $values = array(); foreach ($fields as $field) { $new_values = array(); // if content_permissions is enabled and the current user is // not permitted to access a field, then the field data is cleared if (!is_array($node->$field)) { continue; } $f = $node->$field; $f = $f[FIELD_LANGUAGE_NONE]; $field_info = field_info_field($field); $field_keys = array_keys($field_info['columns']); foreach ($f as $index => $value) { if (is_numeric($index)) { $field_combined = array(); foreach ($field_keys as $key) { if (!empty($f[$index][$key])) { $field_combined[$key] = $f[$index][$key]; } } if (!empty($field_combined)) { $new_values[] = serialize($field_combined); } } } $new_values = array_merge($values, $new_values); $values = array_unique($new_values); if (serialize($values) !== serialize($new_values)) { $errfld[] = $field; } } if (count($errfld) > 0) { $errmsg = 'The @labels fields must have unique values. The @label field has a value that is already used.'; } } // check fields for other scopes else { foreach ($fields as $field) { $values = ''; if ($field === UNIQUE_FIELD_FIELDS_AUTHOR) { $values = $node->uid; } elseif ($field === UNIQUE_FIELD_FIELDS_LANGUAGE) { $values = $node->language; } else { // if content_permissions is enabled and the current user is // not permitted to access a field, then the field data is cleared if (!is_array($node->$field)) { continue; } $f = $node->$field; $f = $f[FIELD_LANGUAGE_NONE]; $values = array(); foreach ($f as $index => $value) { if (is_numeric($index) && is_array($value)) { $values[] = $value; } } } if (empty($values)) { continue; } $match = unique_field_match_value($field, $values, $scope, $node->type, $node->language); // remove matches of this node if ($node->nid && is_array($match) && in_array($node->nid, $match)) { $key = array_search($node->nid, $match); unset($match[$key]); } if ($comp === UNIQUE_FIELD_COMP_EACH && is_array($match) && count($match)) { $errfld[] = $field; $errmsg = 'The @label field requires a unique value, and the specified value is already used.'; } $matches[$field] = $match; $allmatch = is_array($allmatch) ? array_intersect($allmatch, $match) : $match; } // check for fields in combination if ($comp === UNIQUE_FIELD_COMP_ALL && is_array($allmatch) && count($allmatch)) { foreach ($fields as $field) { $errfld[] = $field; $matches[$field] = $allmatch; } $errmsg = 'This form requires that the fields @labels are a unique combination. The specified values are already used.'; } } // common error messages if ($errmsg && !empty($errmsg) && is_array($errfld) && count($errfld) > 0) { $labels = array(); foreach ($fields as $field) { if ($field === UNIQUE_FIELD_FIELDS_AUTHOR) { $labels[$field] = t('Author'); } elseif ($field === UNIQUE_FIELD_FIELDS_LANGUAGE) { $labels[$field] = t('Language'); } else { $fld = field_info_instance('node', $field, $node->type); $labels[$field] = $fld['label']; } } foreach ($errfld as $field) { $msg = t($errmsg, array('@label' => $labels[$field], '@labels' => join(', ', $labels))); if ($show_matches && isset($matches[$field]) && is_array($matches[$field])) { $list_items = array(); foreach ($matches[$field] as $nid) { $match_node = node_load($nid); if (node_access('view', $match_node)) { $list_items[] = l($match_node->title[FIELD_LANGUAGE_NONE][0]['value'], 'node/' . $nid); } } $list_html = theme('item_list', array('items' => $list_items)); $msg .= ' ' . t('Matches are found in the following content: !list-html', array('!list-html' => $list_html)); } if (user_access('unique_field_perm_bypass')) { $msg .= '
' . t('Click !here to bypass this check and resubmit.', array('!here' => "here")) . '
'; } form_set_error($field, $msg); // if checking the fields in combination, then one error message // is enough for all of the fields if ($comp === UNIQUE_FIELD_COMP_ALL) { break; } } } } } /** * Find nodes with a matching field value within a given scope. */ function unique_field_match_value($field, $values, $scope, $ntype = NULL, $nlanguage = NULL) { // initialize query variables $qtbl = NULL; $qwhere = db_and(); // generate query where clause for author field if ($field === UNIQUE_FIELD_FIELDS_AUTHOR) { $qwhere->condition('node.uid', $values); } // generate query where clause for language field elseif ($field === UNIQUE_FIELD_FIELDS_LANGUAGE) { $qwhere->condition('node.language', $values); } // generate query where clause for a CCK field else { $f = field_info_field($field); $qtbl = 'field_data_' . $field; $qfwhere = db_or(); $queriable = FALSE; // check all entries in the field foreach ($values as $index => $value) { $qwhere_val = db_and(); // check all fields/columns in the entry foreach ($value as $key => $val) { // skip values that are not stored in the database if (!isset($f['columns'][$key]) || !is_array($f['columns'][$key])) { continue; } // skip if the value is empty or is not a scalar if (empty($val) || !is_scalar($val)) { continue; } // generate comparison statement depending on field type $dbfield = $qtbl . '.' . $field . '_' . $key; $qwhere_val->condition($dbfield, $val); $queriable = TRUE; } $qfwhere->condition($qwhere_val); } // if no values can be queried, then return no matches if (!$queriable) { return array(); } $qwhere->condition($qfwhere); } // add query where clause if scope is limited to content type if ($scope === UNIQUE_FIELD_SCOPE_TYPE && is_string($ntype) && !empty($ntype)) { $qwhere->condition('node.type', $ntype); } // add query where clause if scope is limited to same language elseif ($scope === UNIQUE_FIELD_SCOPE_LANGUAGE && is_string($nlanguage)) { $qwhere->condition('node.language', $nlanguage); } // do query $query = db_select('node'); $query->addField('node', 'nid'); if (!empty($qtbl)) { $onclause = 'node.vid = ' . $qtbl . '.revision_id'; $query->join($qtbl, $qtbl, $onclause); } $result = $query->condition($qwhere)->execute()->fetchAll(); $nids = array(); foreach ($result as $obj) { if ($obj && $obj->nid) { $nids[] = $obj->nid; } } return array_unique($nids); } /** * Add the unique field settings form to content type forms (node_type_form). */ function unique_field_node_settings_form(&$form) { // load fields for content type $ntype = $form['#node_type']->type; $nodetype = node_type_get_type($ntype); $fieldopts = array(); $fieldopts[UNIQUE_FIELD_FIELDS_AUTHOR] = t('Author'); if (module_exists('locale') && variable_get('language_content_type_' . $ntype, 0)) { $fieldopts[UNIQUE_FIELD_FIELDS_LANGUAGE] = t('Language'); } $fields = field_info_instances('node', $ntype); foreach ($fields as $fieldname => $info) { $fieldopts[$fieldname] = $info['label'] . ' (' . $fieldname . ')'; } // build the form $form['unique_field'] = array( '#type' => 'fieldset', '#title' => t('Unique field restrictions'), '#weight' => 1, '#collapsible' => TRUE, '#collapsed' => TRUE, '#group' => 'additional_settings', ); $form['unique_field']['unique_field_fields'] = array( '#type' => 'checkboxes', '#title' => t('Choose the fields that should be unique'), '#options' => $fieldopts, '#default_value' => variable_get('unique_field_fields_' . $ntype, array()), '#description' => t('After designating that certain fields should be unique, users will not be able to submit the content form to create a new node or update an existing one if it contains values in the designated fields that duplicate others.'), ); $form['unique_field']['unique_field_scope'] = array( '#type' => 'radios', '#title' => t('Choose the scope for the unique values'), '#options' => array( UNIQUE_FIELD_SCOPE_TYPE => t('Content type'), UNIQUE_FIELD_SCOPE_LANGUAGE => t('Language'), UNIQUE_FIELD_SCOPE_ALL => t('All nodes'), UNIQUE_FIELD_SCOPE_NODE => t('Single node only'), ), '#default_value' => variable_get('unique_field_scope_' . $ntype, UNIQUE_FIELD_SCOPE_TYPE), '#description' => t('Choose whether the values in the specified fields must be unique among nodes of this content type, among nodes of the same language, among all nodes, or only among the fields of the present node.'), ); $form['unique_field']['unique_field_comp'] = array( '#type' => 'radios', '#title' => t('Choose whether values must be unique individually or in combination'), '#options' => array( UNIQUE_FIELD_COMP_EACH => t('Each of the specified fields must have a unique value'), UNIQUE_FIELD_COMP_ALL => t('The combination of values from the specified fields must be unique'), ), '#default_value' => variable_get('unique_field_comp_' . $ntype, UNIQUE_FIELD_COMP_EACH), '#description' => t('For example, if you have fields for the parts of a street address (street number and name, city, and zip code) on a node, and want to allow only one node per complete address, but not only one node per city or per zip code, then you would want to choose that the fields must be unique in combination.'), ); $form['unique_field']['unique_field_show_matches'] = array( '#type' => 'checkboxes', '#title' => t('Check this box to show which nodes match when duplicate values are found'), '#options' => array(UNIQUE_FIELD_SHOW_MATCHES => t('Enabled')), '#default_value' => variable_get('unique_field_show_matches_' . $ntype, array()), ); // add validation function $form['#validate'][] = 'unique_field_node_settings_form_validate'; } /** * Form validation callback for unique_field_node_settings_form. */ function unique_field_node_settings_form_validate($form, &$form_state) { if ($form_state['values']['unique_field_scope'] === UNIQUE_FIELD_SCOPE_NODE) { if ($form_state['values']['unique_field_comp'] === UNIQUE_FIELD_COMP_ALL) { form_set_error('unique_field_comp', t('The scope of a single node requires that each field must be unique.')); } if (($form_state['values']['unique_field_fields'][UNIQUE_FIELD_FIELDS_AUTHOR] === UNIQUE_FIELD_FIELDS_AUTHOR) || (isset($form_state['values']['unique_field_fields'][UNIQUE_FIELD_FIELDS_LANGUAGE]) && $form_state['values']['unique_field_fields'][UNIQUE_FIELD_FIELDS_LANGUAGE] === UNIQUE_FIELD_FIELDS_LANGUAGE)) { form_set_error('unique_field_fields', t('The author and language fields are not supported within the scope of a single node.')); } } }