fogine/couchbase-odm

View on GitHub

Showing 72 of 72 total issues

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

function KeyError(message) {

    Error.call(this);
    Error.captureStackTrace(this, this.constructor);

Severity: Major
Found in lib/error/keyError.js and 7 other locations - About 1 hr to fix
lib/error/documentError.js on lines 11..18
lib/error/hookError.js on lines 11..18
lib/error/instanceError.js on lines 14..21
lib/error/modelError.js on lines 11..18
lib/error/modelManagerError.js on lines 11..18
lib/error/modelNotFoundError.js on lines 11..18
lib/error/validationError.js on lines 11..18

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 68.

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 8 locations. Consider refactoring.
Open

function ModelNotFoundError(message) {

    Error.call(this);
    Error.captureStackTrace(this, this.constructor);

Severity: Major
Found in lib/error/modelNotFoundError.js and 7 other locations - About 1 hr to fix
lib/error/documentError.js on lines 11..18
lib/error/hookError.js on lines 11..18
lib/error/instanceError.js on lines 14..21
lib/error/keyError.js on lines 11..18
lib/error/modelError.js on lines 11..18
lib/error/modelManagerError.js on lines 11..18
lib/error/validationError.js on lines 11..18

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 68.

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 8 locations. Consider refactoring.
Open

function ModelManagerError(message) {

    Error.call(this);
    Error.captureStackTrace(this, this.constructor);

Severity: Major
Found in lib/error/modelManagerError.js and 7 other locations - About 1 hr to fix
lib/error/documentError.js on lines 11..18
lib/error/hookError.js on lines 11..18
lib/error/instanceError.js on lines 14..21
lib/error/keyError.js on lines 11..18
lib/error/modelError.js on lines 11..18
lib/error/modelNotFoundError.js on lines 11..18
lib/error/validationError.js on lines 11..18

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 68.

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 8 locations. Consider refactoring.
Open

function ValidationError(message) {

    Error.call(this);
    Error.captureStackTrace(this, this.constructor);

Severity: Major
Found in lib/error/validationError.js and 7 other locations - About 1 hr to fix
lib/error/documentError.js on lines 11..18
lib/error/hookError.js on lines 11..18
lib/error/instanceError.js on lines 14..21
lib/error/keyError.js on lines 11..18
lib/error/modelError.js on lines 11..18
lib/error/modelManagerError.js on lines 11..18
lib/error/modelNotFoundError.js on lines 11..18

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 68.

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 8 locations. Consider refactoring.
Open

function HookError(message) {

    Error.call(this);
    Error.captureStackTrace(this, this.constructor);

Severity: Major
Found in lib/error/hookError.js and 7 other locations - About 1 hr to fix
lib/error/documentError.js on lines 11..18
lib/error/instanceError.js on lines 14..21
lib/error/keyError.js on lines 11..18
lib/error/modelError.js on lines 11..18
lib/error/modelManagerError.js on lines 11..18
lib/error/modelNotFoundError.js on lines 11..18
lib/error/validationError.js on lines 11..18

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 68.

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 cloneDefaults has 37 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function cloneDefaults(data) {
    var cloned;

    if (!_.isPlainObject(data) && !Array.isArray(data)) {
        if (data instanceof Instance) {
Severity: Minor
Found in lib/util/data.js - About 1 hr to fix

    Function extractAssociations has 37 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function extractAssociations(schema, data, path) {
        data || (data = []);
        path || (path = []);
    
        if (!_.isPlainObject(schema)) {
    Severity: Minor
    Found in lib/util/schema.js - About 1 hr to fix

      Function getSerializedData has 37 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      Instance.prototype.getSerializedData = Promise.method(function() {
          const relations = this.Model.relations;
          const instance = this;
          const modelManager = this.Model._modelManager;
      
      
      Severity: Minor
      Found in lib/instance.js - About 1 hr to fix

        Function populate has 37 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        Instance.prototype.populate = Promise.method(function(include, options) {
            const instance = this;
            const defaults = {
                skipPopulated: true,
                getOrFail: false
        Severity: Minor
        Found in lib/instance.js - About 1 hr to fix

          Function destroy has 36 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          Instance.prototype.destroy = Promise.method(function(options) {
          
              const self = this;
              options = options || {};
          
          
          Severity: Minor
          Found in lib/instance.js - About 1 hr to fix

            Function _touchTimestamps has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
            Open

            Instance.prototype._touchTimestamps = function(timestamps, options) {
                options = options || {};
            
                if (   !this.Model._dataHasObjectStructure()
                        || (!this.Model.options.timestamps && !this.Model.options.paranoid)
            Severity: Minor
            Found in lib/instance.js - About 1 hr 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 insert has 35 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            Instance.prototype.insert = Promise.method(function(options) {
            
                const self = this;
                let   report
                    , timestampsBck;
            Severity: Minor
            Found in lib/instance.js - About 1 hr to fix

              Function CouchbaseODM has 32 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function CouchbaseODM(options) {
              
                  var defaults = {
                      key: UUID4Key,
                      refDocKey: RefDocKey,
              Severity: Minor
              Found in index.js - About 1 hr to fix

                Function _touchTimestamps has 32 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                Instance.prototype._touchTimestamps = function(timestamps, options) {
                    options = options || {};
                
                    if (   !this.Model._dataHasObjectStructure()
                            || (!this.Model.options.timestamps && !this.Model.options.paranoid)
                Severity: Minor
                Found in lib/instance.js - About 1 hr to fix

                  Function runHooks has 31 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  Hook.runHooks = function(hookType) {
                  
                      if (   (typeof hookType === 'string' && !HookType.hasOwnProperty(hookType))
                          && HookValues.indexOf(hookType) === -1
                         ) {
                  Severity: Minor
                  Found in lib/hook.js - About 1 hr to fix

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

                        return this.getGeneratedKey().bind({}).then(function(key) {
                                this.key = key;
                                return doc.getSerializedData();
                            }).then(function(data) {
                                var opt = _.assign({}, {cas: doc.getCAS()}, options);
                    Severity: Major
                    Found in lib/document.js and 1 other location - About 1 hr to fix
                    lib/document.js on lines 177..182

                    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 57.

                    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

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

                        return this.getGeneratedKey().bind({}).then(function(key) {
                                this.key = key;
                                return doc.getSerializedData();
                            }).then(function(data) {
                                return doc.getStorageAdapter().insert(this.key, data, options);
                    Severity: Major
                    Found in lib/document.js and 1 other location - About 1 hr to fix
                    lib/document.js on lines 202..208

                    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 57.

                    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 build has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    Model.prototype.build = function(data, options) {
                        const defaults = {
                            isNewRecord: true,
                            sanitize: false
                        };
                    Severity: Minor
                    Found in lib/model.js - About 1 hr to fix

                      Function attachGetByRefDocMethods has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      function attachGetByRefDocMethods() {
                          const self = this;
                          const getByRefDocPrefix = 'getBy';
                          const refDocs = this.options.indexes.refDocs;
                      
                      
                      Severity: Minor
                      Found in lib/model.js - About 1 hr to fix

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

                        Object.defineProperty(IncrementalKey.prototype, 'inspect', {
                            writable: true,
                            value: function() {
                                return '[object IncrementalKey: "' + this.toString() + '" ]';
                            }
                        Severity: Major
                        Found in lib/key/incrementalKey.js and 2 other locations - About 55 mins to fix
                        lib/key/refDocKey.js on lines 156..161
                        lib/key/uuid4Key.js on lines 65..70

                        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 53.

                        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

                        Severity
                        Category
                        Status
                        Source
                        Language