You are here

function cleantalk_validate_comment in Anti Spam by CleanTalk 7

Same name and namespace in other branches
  1. 8.4 cleantalk.module \cleantalk_validate_comment()
  2. 8 cleantalk.module \cleantalk_validate_comment()
  3. 8.3 cleantalk.module \cleantalk_validate_comment()
  4. 7.5 cleantalk.module \cleantalk_validate_comment()
  5. 7.2 cleantalk.module \cleantalk_validate_comment()
  6. 7.4 cleantalk.module \cleantalk_validate_comment()
  7. 9.1.x cleantalk.module \cleantalk_validate_comment()

Cleantalk comment validation function.

1 string reference to 'cleantalk_validate_comment'
_cleantalk_form_alter in ./cleantalk.module
Cleantalk inner function - alters needed form.

File

./cleantalk.module, line 1269
Main CleanTalk integration module functions.

Code

function cleantalk_validate_comment(&$form, &$form_state) {
  global $user;

  // Don't check reged user with >= 'cleantalk_comments' approved msgs.
  if ($user->uid > 0) {
    $result = db_query('SELECT count(*) AS count FROM {comment} WHERE uid=:uid AND status=1', array(
      ':uid' => $user->uid,
    ));
    $count = intval($result
      ->fetchObject()->count);
    $ct_comments = variable_get('cleantalk_comments', 3);
    if ($count >= $ct_comments) {
      return;
    }
  }
  $comment_lang = array_key_exists('language', $form_state['values']) ? $form_state['values']['language'] : LANGUAGE_NONE;
  $comment_body = $form_state['values']['comment_body'][$comment_lang][0];
  $spam_check = array();
  $spam_check['type'] = 'comment';
  $spam_check['sender_email'] = !empty($form_state['values']['mail']) ? $form_state['values']['mail'] : '';
  $spam_check['sender_nickname'] = !empty($form_state['values']['name']) ? $form_state['values']['name'] : '';
  $spam_check['message_title'] = !empty($form_state['values']['subject']) ? $form_state['values']['subject'] : '';
  $spam_check['message_body'] = isset($comment_body['value']) ? $comment_body['value'] : '';
  $spam_result = _cleantalk_check_spam($spam_check);
  if (isset($spam_result) && is_array($spam_result) && $spam_result['errno'] == 0 && $spam_result['allow'] != 1 && $spam_result['stop_queue'] == 1) {

    // Value of ct_result_comment is sanitized already (before storing).
    form_set_error('comment_body', $spam_result['ct_result_comment']);
  }
}