getlackey/lackey-cms

View on GitHub
modules/core/server/models/media/index.js

Summary

Maintainability
F
3 days
Test Coverage

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

    .then((Taggable, QueryBuilder) => {

        SCli.debug(__MODULE_NAME, 'READY');

        class MediaModel extends Model {
Severity: Major
Found in modules/core/server/models/media/index.js - About 1 day to fix

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

        .then((Taggable, QueryBuilder) => {
    
            SCli.debug(__MODULE_NAME, 'READY');
    
            class MediaModel extends Model {
    Severity: Minor
    Found in modules/core/server/models/media/index.js - About 5 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

    File index.js has 357 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /* jslint esnext:true, node:true */
    /* globals LACKEY_PATH */
    'use strict';
    
    /*
    Severity: Minor
    Found in modules/core/server/models/media/index.js - About 4 hrs to fix

      Function mapSource has 91 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

                  static mapSource(source) {
                      SCli.debug('lackey-cms/modules/media/server/models/media', 'mapSource', source);
                      if (typeof source === 'string') {
                          return Media.lookupMime(source)
                              .then((mime) => {
      Severity: Major
      Found in modules/core/server/models/media/index.js - About 3 hrs to fix

        Function lookupMime has 47 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                    static lookupMime(path, forceMime) {
        
                        if (forceMime) {
                            return Promise.resolve(forceMime);
                        }
        Severity: Minor
        Found in modules/core/server/models/media/index.js - About 1 hr to fix

          Avoid too many return statements within this function.
          Open

                                  return new Promise((resolve, reject) => {
                                      if (__debug) {
                                          return resolve(__debug);
                                      }
                                      (path.match(/^https/) ? https : http).get(path, (res) => {
          Severity: Major
          Found in modules/core/server/models/media/index.js - About 30 mins to fix

            Avoid too many return statements within this function.
            Open

                            return Promise.resolve(mime);
            Severity: Major
            Found in modules/core/server/models/media/index.js - About 30 mins to fix

              Avoid too many return statements within this function.
              Open

                                      return Promise.resolve(OCTET);
              Severity: Major
              Found in modules/core/server/models/media/index.js - About 30 mins to fix

                There are no issues that match your filters.

                Category
                Status