Showing 8 of 14 total issues

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

module.exports = function (app) {
  'use strict';
  return function (client) {
    var userInfo = {};
    var self = this;
Severity: Major
Found in modules/mqtt.js - About 3 hrs to fix

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

    module.exports = function (app) {
      'use strict';
      return function (req, res) {
        var deviceRex = /^\/(.*)\/(.*)\?/;
    
    
    Severity: Major
    Found in modules/coap.js - About 3 hrs to fix

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

      module.exports = function (sequelize, DataTypes) {
        function hashPasswordHook(user, options, done) {
          if (!user.changed('password')) {
            done();
          }
      Severity: Major
      Found in models/user.js - About 3 hrs to fix

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

        module.exports = function (app) {
          'use strict';
          return function (req, res) {
            var deviceRex = /^\/(.*)\/(.*)\?/;
        
        
        Severity: Minor
        Found in modules/coap.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 exports has 41 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        module.exports = function (app) {
          'use strict';
          app.get(/^\/(.*)\/(.*)$/, function (req, res) {
            if (!req.headers.authorization) {
              res.statusCode = 401;
        Severity: Minor
        Found in modules/http.js - About 1 hr to fix

          Function up has 37 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            up: function(queryInterface, Sequelize) {
              return queryInterface.createTable('Users', {
                id: {
                  allowNull: false,
                  autoIncrement: true,
          Severity: Minor
          Found in migrations/20150731220954-create-user.js - About 1 hr to fix

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

            module.exports = function (app) {
              'use strict';
              return function (server) {
                server.on('connection', function (socket) {
                  if (!socket.upgradeReq.headers.authorization || socket.upgradeReq.headers.authorization === undefined) {
            Severity: Minor
            Found in modules/websocket.js - About 1 hr to fix

              Function up has 28 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

                up: function(queryInterface, Sequelize) {
                  return queryInterface.createTable('Messages', {
                    id: {
                      allowNull: false,
                      autoIncrement: true,
              Severity: Minor
              Found in migrations/20150818114216-create-message.js - About 1 hr to fix
                Severity
                Category
                Status
                Source
                Language