Skip to content
coder_review_sql.inc 3.01 KiB
Newer Older
Stella Power's avatar
Stella Power committed
<?php

/**
 * @file
 * This include file implements coder functionality for SQL strings
 */

/**
Stella Power's avatar
Stella Power committed
 * Implements hook_reviews().
Stella Power's avatar
Stella Power committed
 */
Stella Power's avatar
Stella Power committed
function coder_review_sql_reviews() {
Stella Power's avatar
Stella Power committed
  $table = '\{[A-Za-z_]+\}'; // table-regex
  $bad = '[A-Za-z_]+';
  $rules = array(
    // NOTE: this doesn't catch all non-upper case keywords, but is a good start
    array(
      '#type' => 'regex',
      '#value' => '^(select\s+.*\s+from\s+' . $table . '|insert\s+into\s+' . $table . '|update\s+' . $table . '\s+set|delete\s+from\s+' . $table . ')',
      '#source' => 'quote',
      '#warning' => 'SQL keywords should be upper case',
      '#case-sensitive' => TRUE,
      '#severity' => 'minor'
    ),
    array(
      '#type' => 'regex',
      '#value' => '^(select\s+.*\s+from\s+' . $bad . '|insert\s+into\s+' . $bad . '|update\s+' . $bad . '\s+set|delete\s+from\s' . $bad . ')',
      '#source' => 'quote',
      '#warning' => 'table names should be enclosed in {curly_brackets}',
      '#severity' => 'critical',
    ),
    array(
      '#type' => 'regex',
      '#value' => '^(select\s+.*\s+from\s+' . $table . '|insert\s+into\s+' . $table . '|update\s+' . $table . '\s+set|delete\s+from\s' . $table . ')\s+.*[Ll][Ii][Mm][Ii][Tt]\s[0-9]+',
      '#source' => 'quote',
Stella Power's avatar
Stella Power committed
      '#warning_callback' => '_coder_review_sql_db_query_range_warning',
Stella Power's avatar
Stella Power committed
    ),
    array(
      '#type' => 'regex',
      '#value' => '^(select\s+.*\s+from\s+' . $table . '|update\s+' . $table . '\s+set|delete\s+from\s' . $table . ')\s+.*!=',
      '#source' => 'quote',
      '#warning' => 'Use ANSI standard <> instead of !=',
    ),
    array(
      '#type' => 'regex',
      '#value' => '^(select\s+.*\s+from\s+' . $table . '\s+.+?=\s*`|insert\s+into\s+' . $table . '\s+.*?VALUES\s*(\(\s*`|\(.*?,\s*`)|update\s+' . $table . '\s+set\s+.*?=\s*`|delete\s+from\s' . $table . '\s+.*?=\s*`)',
      '#source' => 'quote',
      '#warning' => "Don't use back ticks to quote values as it is not compliant with ANSI SQL"
    ),
Doug Green's avatar
Doug Green committed
    array(
      '#type' => 'regex',
      '#source' => 'allphp',
      '#value' => 'db_query\s*\(\s*[\'"]select\s+count\s*\(\s*\*\s*\)\s+from\s+',
      '#warning_callback' => '_coder_review_sql_select_count_warning',
Doug Green's avatar
Doug Green committed
    ),
Stella Power's avatar
Stella Power committed
  );
  $review = array(
    '#title' => t('Drupal SQL Standards'),
    '#rules' => $rules,
    '#description' => t('new review, so use with caution'),
  );
  return array('sql' => $review);
}

/**
 * Define the warning callbacks
 */

Stella Power's avatar
Stella Power committed
function _coder_review_sql_db_query_range_warning() {
Stella Power's avatar
Stella Power committed
  return array(
    '#warning' => t('Use !db_query_range() instead of the SQL LIMIT clause',
      array(
Stella Power's avatar
Stella Power committed
        '!db_query_range' => theme('drupalapi', array('function' => 'db_query_range')),
Stella Power's avatar
Stella Power committed
      )
    ),
    '#link' => 'http://drupal.org/node/1395',
  );
}

Doug Green's avatar
Doug Green committed
function _coder_review_sql_select_count_warning() {
  return array(
    '#warning' => t('You may not want to use SELECT COUNT(*), if all you want to do is check for the existance of any rows, rather than the actual number of rows.'),
Doug Green's avatar
Doug Green committed
    '#link' => 'http://drupal.org/node/224333#select_count',
  );
}