kasperisager/sails-generate-auth

View on GitHub

Showing 18 of 18 total issues

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

module.exports = function (req, accessToken, refreshToken, profile, next) {
  var query    = {
      identifier : profile.id
    , protocol   : 'oauth2'
    , tokens     : { accessToken: accessToken }
Severity: Major
Found in templates/api/services/protocols/oauth2.js and 1 other location - About 3 hrs to fix
templates/api/services/protocols/oauth.js on lines 20..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 96.

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

module.exports = function (req, token, tokenSecret, profile, next) {
  var query    = {
      identifier : profile.id
    , protocol   : 'oauth'
    , tokens     : { token: token }
Severity: Major
Found in templates/api/services/protocols/oauth.js and 1 other location - About 3 hrs to fix
templates/api/services/protocols/oauth2.js on lines 21..33

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

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 connect has 72 lines of code (exceeds 25 allowed). Consider refactoring.
Open

passport.connect = function (req, query, profile, next) {
  var user = {}
    , provider;

  // Get the authentication provider from the query.
Severity: Major
Found in templates/api/services/passport.js - About 2 hrs to fix

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

    exports.register = function (req, res, next) {
      var email    = req.param('email')
        , username = req.param('username')
        , password = req.param('password');
    
    
    Severity: Minor
    Found in templates/api/services/protocols/local.js - About 1 hr to fix

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

      exports.login = function (req, identifier, password, next) {
        var isEmail = validator.isEmail(identifier)
          , query   = {};
      
        if (isEmail) {
      Severity: Minor
      Found in templates/api/services/protocols/local.js - About 1 hr to fix

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

            if (err) {
              if (err.code === 'E_VALIDATION') {
                if (err.invalidAttributes.email) {
                  req.flash('error', 'Error.Passport.Email.Exists');
                } else {
        Severity: Major
        Found in templates/api/services/protocols/local.js and 1 other location - About 1 hr to fix
        templates/api/services/passport.js on lines 113..124

        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

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

                  if (err) {
                    if (err.code === 'E_VALIDATION') {
                      if (err.invalidAttributes.email) {
                        req.flash('error', 'Error.Passport.Email.Exists');
                      }
        Severity: Major
        Found in templates/api/services/passport.js and 1 other location - About 1 hr to fix
        templates/api/services/protocols/local.js on lines 50..60

        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 loadStrategies has 39 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

        passport.loadStrategies = function () {
          var self       = this
            , strategies = sails.config.passport;
        
          Object.keys(strategies).forEach(function (key) {
        Severity: Minor
        Found in templates/api/services/passport.js - About 1 hr to fix

          Function callback has 32 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            callback: function (req, res) {
              function tryAgain (err) {
          
                // Only certain error messages are returned via req.flash('error', someError)
                // because we shouldn't expose internal authorization errors to the user.
          Severity: Minor
          Found in templates/api/controllers/AuthController.js - About 1 hr to fix

            Function callback has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
            Open

            passport.callback = function (req, res, next) {
              var provider = req.param('provider', 'local')
                , action   = req.param('action');
            
              // Passport.js wasn't really built for local user registration, but it's nice
            Severity: Minor
            Found in templates/api/services/passport.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

            Avoid deeply nested control flow statements.
            Open

                          if (err.invalidAttributes.email) {
                            req.flash('error', 'Error.Passport.Email.Exists');
                          }
                          else {
                            req.flash('error', 'Error.Passport.User.Exists');
            Severity: Major
            Found in templates/api/services/passport.js - About 45 mins to fix

              Function exports has 5 arguments (exceeds 4 allowed). Consider refactoring.
              Open

              module.exports = function (req, accessToken, refreshToken, profile, next) {
              Severity: Minor
              Found in templates/api/services/protocols/oauth2.js - About 35 mins to fix

                Function exports has 5 arguments (exceeds 4 allowed). Consider refactoring.
                Open

                module.exports = function (req, token, tokenSecret, profile, next) {
                Severity: Minor
                Found in templates/api/services/protocols/oauth.js - About 35 mins to fix

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

                    twitter: {
                      name: 'Twitter',
                      protocol: 'oauth',
                      strategy: require('passport-twitter').Strategy,
                      options: {
                  Severity: Minor
                  Found in templates/config/passport.js and 2 other locations - About 30 mins to fix
                  templates/config/passport.js on lines 36..44
                  templates/config/passport.js on lines 58..66

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

                  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 3 locations. Consider refactoring.
                  Open

                    github: {
                      name: 'GitHub',
                      protocol: 'oauth2',
                      strategy: require('passport-github').Strategy,
                      options: {
                  Severity: Minor
                  Found in templates/config/passport.js and 2 other locations - About 30 mins to fix
                  templates/config/passport.js on lines 26..34
                  templates/config/passport.js on lines 58..66

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

                  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 3 locations. Consider refactoring.
                  Open

                    google: {
                      name: 'Google',
                      protocol: 'oauth2',
                      strategy: require('passport-google-oauth').OAuth2Strategy,
                      options: {
                  Severity: Minor
                  Found in templates/config/passport.js and 2 other locations - About 30 mins to fix
                  templates/config/passport.js on lines 26..34
                  templates/config/passport.js on lines 36..44

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

                  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 callback has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                    callback: function (req, res) {
                      function tryAgain (err) {
                  
                        // Only certain error messages are returned via req.flash('error', someError)
                        // because we shouldn't expose internal authorization errors to the user.
                  Severity: Minor
                  Found in templates/api/controllers/AuthController.js - About 25 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

                  Function connect has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
                  Open

                  passport.connect = function (req, query, profile, next) {
                    var user = {}
                      , provider;
                  
                    // Get the authentication provider from the query.
                  Severity: Minor
                  Found in templates/api/services/passport.js - About 25 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

                  Severity
                  Category
                  Status
                  Source
                  Language