lebretr/sequelize-oracle

View on GitHub

Showing 575 of 575 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    } else if (this.send('isUpdateQuery')) {
      if(this.callee !== null) { // may happen for bulk updates
        for (var key in rows[0]) {
          if (rows[0].hasOwnProperty(key)) {
            var record = rows[0][key]
Severity: Major
Found in lib/dialects/postgres/query.js and 1 other location - About 1 day to fix
lib/dialects/postgres/query.js on lines 135..166

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 285.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

Similar blocks of code found in 2 locations. Consider refactoring.
Open

    } else if (this.send('isInsertQuery')) {
      if(this.callee !== null) { // may happen for bulk inserts
        for (var key in rows[0]) {
          if (rows[0].hasOwnProperty(key)) {
            var record = rows[0][key]
Severity: Major
Found in lib/dialects/postgres/query.js and 1 other location - About 1 day to fix
lib/dialects/postgres/query.js on lines 150..166

Duplicated Code

Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

Tuning

This issue has a mass of 285.

We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

Refactorings

Further Reading

File query-generator.js has 682 lines of code (exceeds 250 allowed). Consider refactoring.
Open

var Utils       = require("../../utils")
  , util        = require("util")
  , DataTypes   = require("../../data-types")
  , SqlString   = require("../../sql-string")
  , tables      = {}
Severity: Major
Found in lib/dialects/postgres/query-generator.js - About 1 day to fix

    Function exports has 302 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    module.exports = (function() {
      /**
        Main class of the project.
    
        @param {String} database The name of the database.
    Severity: Major
    Found in lib/sequelize.js - About 1 day to fix

      Function exports has a Cognitive Complexity of 75 (exceeds 5 allowed). Consider refactoring.
      Open

      module.exports = (function() {
        var HasMany = function(source, target, options) {
          var self = this
      
          this.associationType = 'HasMany'
      Severity: Minor
      Found in lib/associations/has-many.js - About 1 day to fix

      Cognitive Complexity

      Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

      A method's cognitive complexity is based on a few simple rules:

      • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
      • Code is considered more complex for each "break in the linear flow of the code"
      • Code is considered more complex when "flow breaking structures are nested"

      Further reading

      Function exports has 297 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      module.exports = (function() {
        var HasMany = function(source, target, options) {
          var self = this
      
          this.associationType = 'HasMany'
      Severity: Major
      Found in lib/associations/has-many.js - About 1 day to fix

        Function exports has a Cognitive Complexity of 69 (exceeds 5 allowed). Consider refactoring.
        Open

        module.exports = (function() {
          var ConnectorManager = function(sequelize, config) {
            try {
              if (config.dialectModulePath) {
                mysql = require(config.dialectModulePath)
        Severity: Minor
        Found in lib/dialects/mysql/connector-manager.js - About 1 day to fix

        Cognitive Complexity

        Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

        A method's cognitive complexity is based on a few simple rules:

        • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
        • Code is considered more complex for each "break in the linear flow of the code"
        • Code is considered more complex when "flow breaking structures are nested"

        Further reading

        Function selectQuery has 255 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            selectQuery: function(tableName, options, factory) {
              // Enter and change at your own peril -- Mick Hansen
        
              options = options || {}
        
        
        Severity: Major
        Found in lib/dialects/abstract/query-generator.js - About 1 day to fix

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

              addSchema: function(opts) {
                var tableName
                var schema        = (!!opts && !!opts.options && !!opts.options.schema ? opts.options.schema : undefined)
                var schemaDelimiter  = (!!opts && !!opts.options && !!opts.options.schemaDelimiter ? opts.options.schemaDelimiter : undefined)
          
          
          Severity: Major
          Found in lib/dialects/mysql/query-generator.js and 1 other location - About 1 day to fix
          lib/dialects/oracle/query-generator.js on lines 9..26

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 239.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

              addSchema: function(opts) {
                var tableName
                var schema        = (!!opts && !!opts.options && !!opts.options.schema ? opts.options.schema : undefined)
                var schemaDelimiter  = (!!opts && !!opts.options && !!opts.options.schemaDelimiter ? opts.options.schemaDelimiter : undefined)
          
          
          Severity: Major
          Found in lib/dialects/oracle/query-generator.js and 1 other location - About 1 day to fix
          lib/dialects/mysql/query-generator.js on lines 8..25

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 239.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Function exports has 250 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          module.exports = (function() {
            var Migrator = function(sequelize, options) {
              this.sequelize = sequelize
              this.options   = Utils._.extend({
                path:        __dirname + '/../migrations',
          Severity: Major
          Found in lib/migrator.js - About 1 day to fix

            Function selectQuery has 247 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

                selectQuery: function(tableName, options, factory) {
                  // Enter and change at your own peril -- Mick Hansen
            
                  options = options || {}
            
            
            Severity: Major
            Found in lib/dialects/oracle/query-generator.js - About 1 day to fix

              Function exports has a Cognitive Complexity of 62 (exceeds 5 allowed). Consider refactoring.
              Open

              module.exports = (function() {
                /**
                  Main class of the project.
              
                  @param {String} database The name of the database.
              Severity: Minor
              Found in lib/sequelize.js - About 1 day to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              Function exports has a Cognitive Complexity of 62 (exceeds 5 allowed). Consider refactoring.
              Open

              module.exports = (function() {
                var Query = function(client, sequelize, callee, options) {
                  this.client = client
                  this.sequelize = sequelize
                  this.callee = callee
              Severity: Minor
              Found in lib/dialects/postgres/query.js - About 1 day to fix

              Cognitive Complexity

              Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

              A method's cognitive complexity is based on a few simple rules:

              • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
              • Code is considered more complex for each "break in the linear flow of the code"
              • Code is considered more complex when "flow breaking structures are nested"

              Further reading

              File query-generator.js has 560 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              var Utils     = require("../../utils")
                , DataTypes = require("../../data-types")
                , util      = require("util")
              
              module.exports = (function() {
              Severity: Major
              Found in lib/dialects/oracle/query-generator.js - About 1 day to fix

                Function exports has 235 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                module.exports = (function() {
                  var AbstractQuery = function(database, sequelize, callee, options) {}
                
                  /**
                    Inherit from CustomEventEmitter
                Severity: Major
                Found in lib/dialects/abstract/query.js - About 1 day to fix

                  File dao.js has 542 lines of code (exceeds 250 allowed). Consider refactoring.
                  Open

                  var Utils        = require("./utils")
                    , Mixin        = require("./associations/mixin")
                    , DaoValidator = require("./dao-validator")
                    , DataTypes    = require("./data-types")
                    , hstore       = require('./dialects/postgres/hstore')
                  Severity: Major
                  Found in lib/dao.js - About 1 day to fix

                    Similar blocks of code found in 2 locations. Consider refactoring.
                    Open

                      BelongsTo.prototype.injectCreator = function(obj) {
                        var self = this
                    
                        obj[this.accessors.create] = function(values, fieldsOrOptions) {
                          var instance = this
                    Severity: Major
                    Found in lib/associations/belongs-to.js and 1 other location - About 1 day to fix
                    lib/associations/has-one.js on lines 146..169

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 205.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Similar blocks of code found in 2 locations. Consider refactoring.
                    Open

                      HasOne.prototype.injectCreator = function(obj) {
                        var self = this
                    
                        obj[this.accessors.create] = function(values, fieldsOrOptions) {
                          var instance = this
                    Severity: Major
                    Found in lib/associations/has-one.js and 1 other location - About 1 day to fix
                    lib/associations/belongs-to.js on lines 109..132

                    Duplicated Code

                    Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

                    Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

                    When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

                    Tuning

                    This issue has a mass of 205.

                    We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

                    The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

                    If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

                    See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

                    Refactorings

                    Further Reading

                    Function exports has a Cognitive Complexity of 53 (exceeds 5 allowed). Consider refactoring.
                    Open

                    module.exports = (function() {
                      var AbstractQuery = function(database, sequelize, callee, options) {}
                    
                      /**
                        Inherit from CustomEventEmitter
                    Severity: Minor
                    Found in lib/dialects/abstract/query.js - About 1 day to fix

                    Cognitive Complexity

                    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                    A method's cognitive complexity is based on a few simple rules:

                    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                    • Code is considered more complex for each "break in the linear flow of the code"
                    • Code is considered more complex when "flow breaking structures are nested"

                    Further reading

                    Severity
                    Category
                    Status
                    Source
                    Language