imrefazekas/connect-rest

View on GitHub
lib/services/Performer.js

Summary

Maintainability
D
1 day
Test Coverage

Function process has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
Open

exports.process = async function (req, res, action, bodyObj) {
    let self = this

    self.logger.restlog( null, 'Process request', { body: bodyObj }, 'trace' )

Severity: Minor
Found in lib/services/Performer.js - About 4 hrs 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 purify has a Cognitive Complexity of 22 (exceeds 5 allowed). Consider refactoring.
Open

function purify ( obj, config, level, path ) {
    config = config || defaultPurifyConfig
    if (!obj) return obj
    if ( _.isDate(obj) || _.isBoolean(obj) || _.isNumber(obj) || _.isString(obj) || _.isRegExp(obj) )
        return obj
Severity: Minor
Found in lib/services/Performer.js - About 3 hrs 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 process has 73 lines of code (exceeds 25 allowed). Consider refactoring.
Open

exports.process = async function (req, res, action, bodyObj) {
    let self = this

    self.logger.restlog( null, 'Process request', { body: bodyObj }, 'trace' )

Severity: Major
Found in lib/services/Performer.js - About 2 hrs to fix

    Function perform has 29 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    exports.perform = function ( req, res, next ) {
        let self = this
    
        let router = self.getRouterMatching( req, res )
    
    
    Severity: Minor
    Found in lib/services/Performer.js - About 1 hr to fix

      Function purify has 26 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function purify ( obj, config, level, path ) {
          config = config || defaultPurifyConfig
          if (!obj) return obj
          if ( _.isDate(obj) || _.isBoolean(obj) || _.isNumber(obj) || _.isString(obj) || _.isRegExp(obj) )
              return obj
      Severity: Minor
      Found in lib/services/Performer.js - About 1 hr to fix

        Function returnResult has a Cognitive Complexity of 9 (exceeds 5 allowed). Consider refactoring.
        Open

        function returnResult ( err, result, res, globalHeaders ) {
            let headers = assigner.assign( {}, globalHeaders || {} )
            if ( err ) {
                headers = assigner.assign( headers, { 'Content-Type': 'text/plain' } )
                setHeaders( res, err.statusCode || 500, headers )
        Severity: Minor
        Found in lib/services/Performer.js - About 55 mins 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 perform has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        exports.perform = function ( req, res, next ) {
            let self = this
        
            let router = self.getRouterMatching( req, res )
        
        
        Severity: Minor
        Found in lib/services/Performer.js - About 45 mins 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

        Avoid too many return statements within this function.
        Open

                return res
        Severity: Major
        Found in lib/services/Performer.js - About 30 mins to fix

          Avoid too many return statements within this function.
          Open

              return '...'
          Severity: Major
          Found in lib/services/Performer.js - About 30 mins to fix

            There are no issues that match your filters.

            Category
            Status