Showing 14 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

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

          if (_.include(app.config.get('modules'), 'mqtt')) {
            mqtt.MqttServer(app.mqtt).listen(config.get('port.mqtt'), function () {
              console.log("mqtt server listening on port %d", config.get('port.mqtt'));
            });
          }
        Severity: Major
        Found in server.js and 1 other location - About 2 hrs to fix
        server.js on lines 22..26

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

        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 (_.include(app.config.get('modules'), 'coap')) {
            coap.createServer(app.coap).listen(config.get('port.coap'), function () {
              console.log("coap server listening on port %d", config.get('port.coap'));
            });
          }
        Severity: Major
        Found in server.js and 1 other location - About 2 hrs to fix
        server.js on lines 28..32

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

        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 ((deviceRex.test(req.url))) {
                  var deviceID = deviceRex.exec(req.url)[1];
                  payload[deviceID] = deviceRex.exec(req.url)[2];
                }
        Severity: Major
        Found in modules/coap.js and 1 other location - About 1 hr to fix
        modules/coap.js on lines 44..47

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

        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 ((deviceRex.test(req.url))) {
                  var deviceID = deviceRex.exec(req.url)[1];
                  payload[deviceID] = deviceRex.exec(req.url)[2];
                }
        Severity: Major
        Found in modules/coap.js and 1 other location - About 1 hr to fix
        modules/coap.js on lines 77..80

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

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

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

                      var noUserCB = function () {
                        socket.send(JSON.stringify({error: 'auth failure'}));
                        socket.close();
                      };
                Severity: Minor
                Found in modules/websocket.js and 1 other location - About 35 mins to fix
                modules/websocket.js on lines 22..25

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

                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

                      var errorCB = function () {
                        socket.send(JSON.stringify({error: 'auth failure'}));
                        socket.close();
                      };
                Severity: Minor
                Found in modules/websocket.js and 1 other location - About 35 mins to fix
                modules/websocket.js on lines 17..20

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

                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

                Severity
                Category
                Status
                Source
                Language