ForestAdmin/lumber

View on GitHub

Showing 53 of 79 total issues

Function TableConstraintsGetter has 286 lines of code (exceeds 25 allowed). Consider refactoring.
Open

function TableConstraintsGetter(databaseConnection, schema) {
  const queryInterface = databaseConnection.getQueryInterface();

  this.perform = async (table) => {
    let query = null;
Severity: Major
Found in services/analyzer/sequelize-table-constraints-getter.js - About 1 day to fix

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

      this.perform = async (table) => {
        let query = null;
        const replacements = { table };
    
        switch (queryInterface.sequelize.options.dialect) {
    Severity: Major
    Found in services/analyzer/sequelize-table-constraints-getter.js - About 1 day to fix

      File sequelize-tables-analyzer.js has 409 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      const P = require('bluebird');
      const _ = require('lodash');
      const { plural, singular } = require('pluralize');
      const ColumnTypeGetter = require('./sequelize-column-type-getter');
      const DefaultValueExpression = require('./sequelize-default-value');
      Severity: Minor
      Found in services/analyzer/sequelize-tables-analyzer.js - About 5 hrs to fix

        File dumper.js has 395 lines of code (exceeds 250 allowed). Consider refactoring.
        Open

        const _ = require('lodash');
        const { plural, singular } = require('pluralize');
        const stringUtils = require('../utils/strings');
        const toValidPackageName = require('../utils/to-valid-package-name');
        const IncompatibleLianaForUpdateError = require('../utils/errors/dumper/incompatible-liana-for-update-error');
        Severity: Minor
        Found in services/dumper.js - About 5 hrs to fix

          Function ColumnTypeGetter has 124 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function ColumnTypeGetter(databaseConnection, schema, allowWarning = true) {
            const queryInterface = databaseConnection.getQueryInterface();
          
            function isDialect(dialect) {
              return queryInterface.sequelize.options.dialect === dialect;
          Severity: Major
          Found in services/analyzer/sequelize-column-type-getter.js - About 4 hrs to fix

            Function mapCollection has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
            Open

            function mapCollection() {
              function allItemsAreObjectIDs(array) {
                if (!array.length) return false;
                var itemToCheckCount = array.length > 3 ? 3 : array.length;
                var arrayOfObjectIDs = true;
            Severity: Minor
            Found in services/analyzer/mongo-collections-analyzer.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

            Dumper has 29 functions (exceeds 20 allowed). Consider refactoring.
            Open

            class Dumper {
              constructor({
                fs,
                chalk,
                constants,
            Severity: Minor
            Found in services/dumper.js - About 3 hrs to fix

              File sequelize-table-constraints-getter.js has 290 lines of code (exceeds 250 allowed). Consider refactoring.
              Open

              const MysqlTableConstraintsGetter = require('./mysql-table-constraints-getter');
              
              function TableConstraintsGetter(databaseConnection, schema) {
                const queryInterface = databaseConnection.getQueryInterface();
              
              
              Severity: Minor
              Found in services/analyzer/sequelize-table-constraints-getter.js - About 2 hrs to fix

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

                  this.perform = async (columnInfo, columnName, tableName) => {
                    const { type } = columnInfo;
                
                    switch (type) {
                      case 'JSON':
                Severity: Major
                Found in services/analyzer/sequelize-column-type-getter.js - About 2 hrs to fix

                  Function analyzeSequelizeTables has 60 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                  async function analyzeSequelizeTables(connection, config, allowWarning) {
                    // User provided a schema, check if it exists
                    if (config.dbSchema) {
                      const schemas = await connection.query(
                        'SELECT SCHEMA_NAME FROM INFORMATION_SCHEMA.SCHEMATA WHERE SCHEMA_NAME = ?;',
                  Severity: Major
                  Found in services/analyzer/sequelize-tables-analyzer.js - About 2 hrs to fix

                    Function createAllReferences has 55 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    function createAllReferences(databaseSchema, schemaGenerated) {
                      const references = {};
                      Object.keys(databaseSchema).forEach((tableName) => { references[tableName] = []; });
                    
                      Object.keys(databaseSchema).forEach((tableName) => {
                    Severity: Major
                    Found in services/analyzer/sequelize-tables-analyzer.js - About 2 hrs to fix

                      Function mapReduceErrors has a Cognitive Complexity of 15 (exceeds 5 allowed). Consider refactoring.
                      Open

                      const mapReduceErrors = (resolve, reject, collectionName) => (err, results) => {
                        /* eslint-enable */
                        if (err) {
                          if (err.message && err.message.startsWith('CMD_NOT_ALLOWED')) {
                            logger.warn(`⚠️  [${collectionName}] CMD_NOT_ALLOWED: mapReduce. Please, write manually the Mongoose fields on this collection.  ⚠️`);
                      Severity: Minor
                      Found in services/analyzer/mongo-collections-analyzer.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 dump has 46 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                        async dump(schema, config) {
                          const cwd = process.cwd();
                          const projectPath = config.appName ? `${cwd}/${config.appName}` : cwd;
                          const { isUpdate, useMultiDatabase, modelsExportPath } = config;
                      
                      
                      Severity: Minor
                      Found in services/dumper.js - About 1 hr to fix

                        Function MysqlTableConstraintsGetter has 45 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        function MysqlTableConstraintsGetter(databaseConnection) {
                          const queryInterface = databaseConnection.getQueryInterface();
                        
                          // NOTICE: provide an array of array. Each inner array representing a (possibly composite) unique
                          //         index
                        Severity: Minor
                        Found in services/analyzer/mysql-table-constraints-getter.js - About 1 hr to fix

                          Function writeModel has 43 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                            writeModel(projectPath, config, table, fields, references, options = {}) {
                              const { underscored } = options;
                              let modelPath = `models/${Dumper.tableToFilename(table)}.js`;
                              if (config.useMultiDatabase) {
                                modelPath = `models/${config.modelsExportPath}/${Dumper.tableToFilename(table)}.js`;
                          Severity: Minor
                          Found in services/dumper.js - About 1 hr to fix

                            Function createAccount has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                              async createAccount() {
                                this.logger.info('Create an account:');
                                const authConfig = await this.inquirer.prompt([{
                                  type: 'input',
                                  name: 'firstName',
                            Severity: Minor
                            Found in services/authenticator.js - About 1 hr to fix

                              Function createProject has 42 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                                async createProject(config, sessionToken, project) {
                                  let newProject;
                              
                                  try {
                                    newProject = await this.agent
                              Severity: Minor
                              Found in services/api.js - About 1 hr to fix

                                Function createReference has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                                Open

                                function createReference(
                                  tableName,
                                  existingsReferences,
                                  association,
                                  foreignKey,
                                Severity: Minor
                                Found in services/analyzer/sequelize-tables-analyzer.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 addObjectSchema has a Cognitive Complexity of 13 (exceeds 5 allowed). Consider refactoring.
                                Open

                                function addObjectSchema(type, parentSchema, currentKey) {
                                  const isTypeAnArray = Array.isArray(type);
                                
                                  if (parentSchema[currentKey] !== undefined) {
                                    if (areSchemaTypesMixed(parentSchema[currentKey], type)) {
                                Severity: Minor
                                Found in services/analyzer/mongo-embedded-analyzer.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 handlePort has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
                                Open

                                  handlePort() {
                                    if (this.isOptionRequested('appPort')) {
                                      this.envConfig.appPort = this.program.applicationPort;
                                      if (!this.envConfig.appPort) {
                                        this.prompts.push({
                                Severity: Minor
                                Found in services/prompter/application-prompts.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

                                Severity
                                Category
                                Status
                                Source
                                Language