BohemiaInteractive/bi-service

View on GitHub

Showing 53 of 53 total issues

Function _stderr has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function _stderr(err) {

    if (typeof err === 'object' && err !== null) {
        if (err.toLogger instanceof Function) {
            err = err.toLogger();
Severity: Minor
Found in lib/utils.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

Function errorHandler has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
Open

function errorHandler(err, req, res, next) {
    //important! this function has to have exactly four arguments defined
    //as its also used dirrectly by expressjs error handler in express/app.js
    const app = this;

Severity: Minor
Found in lib/middleware/errorHandler.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

Function validate has 6 arguments (exceeds 4 allowed). Consider refactoring.
Open

        validate: function(schema, data, parentSchema, dataPath, parentData, prop) {
Severity: Minor
Found in lib/utils.js - About 45 mins to fix

    Function applyCatchList has 5 arguments (exceeds 4 allowed). Consider refactoring.
    Open

    function applyCatchList(promise, req, res, catchList, index) {
    Severity: Minor
    Found in lib/common/route.js - About 35 mins to fix

      Function buildRemoteService has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
      Open

      RemoteServiceManager.prototype.buildRemoteService = function(key, options) {
          let keySegments = key.split(':');
          let serviceName = keySegments[0];
          let scope       = keySegments[1];
          let sdkPath     = keySegments.slice(2);
      Severity: Minor
      Found in lib/remoteServiceManager.js - About 35 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 errorHandler.errorHandler.call(app, ServiceError.buildFrom(err), req, res);
      Severity: Major
      Found in lib/middleware/errorHandler.js - About 30 mins to fix

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

            if (options.setPaginationHeaders !== false) {
                res.setPaginationHeaders = function(options) {
                    return setPaginationHeaders.call(this, options, route);
                };
            }
        Severity: Minor
        Found in lib/response.js and 1 other location - About 30 mins to fix
        lib/response.js on lines 67..71

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

        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

            if (options.filter !== false) {
                res.filter = function(data) {
                    return filter.call(this, data, route);
                };
            }
        Severity: Minor
        Found in lib/response.js and 1 other location - About 30 mins to fix
        lib/response.js on lines 73..77

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

        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 $initAppWatcher has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        Service.prototype.$initAppWatcher = function() {
            const service     = this
            let   numOfOKApps = 0;
        
            this.appManager.on('build-app', onBuildApp);
        Severity: Minor
        Found in lib/service.js - About 25 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 App has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function App(appManager, config, options) {
            EventEmmiter.call(this);
            const app = this;
        
            /**
        Severity: Minor
        Found in lib/common/app.js - About 25 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 Router has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function Router(options) {
            options = options || {};
        
            if (!options.routeNameFormat || typeof options.routeNameFormat !== 'string') {
                options.routeNameFormat = '{method}{Name}_{version}';
        Severity: Minor
        Found in lib/express/router.js - About 25 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 respondsWith has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        Route.prototype.respondsWith = function(descriptor) {
            var responses = this.description.responses;
            var code = 200;
        
            if (descriptor instanceof Function
        Severity: Minor
        Found in lib/common/route.js - About 25 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 testConfigCmd has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
        Open

        function testConfigCmd(argv) {
            let userSchema;
        
            try {
                if (argv.schema) {
        Severity: Minor
        Found in lib/cli/testConfigCmd.js - About 25 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

        Severity
        Category
        Status
        Source
        Language