You are here

function spam_content_delete in Spam 5.3

Same name and namespace in other branches
  1. 6 spam.module \spam_content_delete()

This function is called when content on your website is deleted.

Parameters

$content: An array holding the complete content.

$type: A string naming the type of content being deleted.

3 calls to spam_content_delete()
comment_comment in modules/spam_comment.inc
Drupal _comment() hook.
node_nodeapi in modules/spam_node.inc
Drupal _nodeapi() hook.
spam_user in modules/spam_user.inc

File

./spam.module, line 341

Code

function spam_content_delete($content, $type, $extra = array()) {
  $id = spam_invoke_module($type, 'content_id', $content, $extra);
  spam_log(SPAM_VERBOSE, 'spam_content_delete', t('deleting'), $type, $id);
  $error = FALSE;
  if ($id) {
    $sid = db_result(db_query("SELECT sid FROM {spam_tracker} WHERE content_type = '%s' AND content_id = %d", $type, $id));
    if ($sid) {
      $extra['sid'] = $sid;
      if (!isset($extra['host'])) {

        // Content type modules can set this value, should REMOTE_ADDR not be
        // the correct IP for their content type.
        $extra['host'] = $_SERVER['REMOTE_ADDR'];
      }
      $fields = spam_invoke_module($type, 'filter_fields', $content, $extra);
      if (!empty($fields) && is_array($fields['main'])) {
        $gid = 0;
        $filters = db_query('SELECT name, module, gain FROM {spam_filters} WHERE gid = %d AND status = %d ORDER BY weight', $gid, SPAM_FILTER_ENABLED);
        while ($filter = db_fetch_object($filters)) {

          // Let filters act on insert action.
          spam_invoke_module($filter->module, 'delete', $type, $content, $fields, $extra);
        }
      }
      else {
        watchdog('spam', t('Function spam_content_delete failed, no fields are defined for %type content type.', array(
          '%type' => $type,
        )), WATCHDOG_ERROR);
        $error = -3;
      }
      db_query("DELETE FROM {spam_tracker} WHERE sid = %d", $sid);
      watchdog('spam', t('Deleted %type content with id %id.', array(
        '%type' => $type,
        '%id' => $id,
      )), WATCHDOG_NOTICE);
    }
    else {
      watchdog('spam', t('Atempt to delete %type with id %id failed, does not exist in spam_tracker table.', array(
        '%type' => $type,
        '%id' => $id,
      )), WATCHDOG_WARNING);
      $error = -2;
    }
  }
  else {
    watchdog('spam', t('Function spam_content_delete failed, unable to delete %type from spam_tracker table, no id found in the content array.', array(
      '%type' => $type,
    )), WATCHDOG_ERROR);
    $error = -1;
  }
  return $error;
}