lib/modules/import.js

Summary

Maintainability
C
7 hrs
Test Coverage

Function upload has 58 lines of code (exceeds 25 allowed). Consider refactoring.
Open

exports.upload = function(settings, uploadMap) {

    if (Object.keys(uploadMap).length === 0) {
        log('[i] No pages to upload');

Severity: Major
Found in lib/modules/import.js - About 2 hrs to fix

    Function exec has 52 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    exports.exec = function(settings, dirName) {
    
        'use strict';
    
        exports.uploadMap = {};
    Severity: Major
    Found in lib/modules/import.js - About 2 hrs to fix

      Function programmaticImport has 30 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      exports.programmaticImport = function(fileMap, dirName, callback) {
      
          // Delete the import.js from the map, since it will be loaded dynamically
          delete fileMap['import.js'];
      
      
      Severity: Minor
      Found in lib/modules/import.js - About 1 hr to fix

        Avoid deeply nested control flow statements.
        Open

                                        if (err.message.indexOf('has been created already') > -1) {
                                            log('[D] Skipping existing page.');
                                        } else {
                                            log('[E] mobo could not upload a page.');
                                            console.dir(err);
        Severity: Major
        Found in lib/modules/import.js - About 45 mins to fix

          Avoid deeply nested control flow statements.
          Open

                                          if (info['new'] === '') {
                                              change = ' [+]';
                                          } else if (info.newrevid) {
                                              change = ' [C]';
                                          }
          Severity: Major
          Found in lib/modules/import.js - About 45 mins to fix

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

            exports.programmaticImport = function(fileMap, dirName, callback) {
            
                // Delete the import.js from the map, since it will be loaded dynamically
                delete fileMap['import.js'];
            
            
            Severity: Minor
            Found in lib/modules/import.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

            There are no issues that match your filters.

            Category
            Status