jaredhanson/passport-oauth1

View on GitHub

Showing 12 of 12 total issues

Function authenticate has 112 lines of code (exceeds 25 allowed). Consider refactoring.
Open

OAuthStrategy.prototype.authenticate = function(req, options) {
  options = options || {};
  
  var self = this;
  var meta = {
Severity: Major
Found in lib/strategy.js - About 4 hrs to fix

    Function authenticate has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    OAuthStrategy.prototype.authenticate = function(req, options) {
      options = options || {};
      
      var self = this;
      var meta = {
    Severity: Minor
    Found in lib/strategy.js - About 2 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 loaded has 50 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

        function loaded(err, oauthTokenSecret, state) {
          if (err) { return self.error(err); }
          if (!oauthTokenSecret) {
            return self.fail(state, 403);
          }
    Severity: Minor
    Found in lib/strategy.js - About 2 hrs to fix

      Function OAuthStrategy has a Cognitive Complexity of 14 (exceeds 5 allowed). Consider refactoring.
      Open

      function OAuthStrategy(options, verify) {
        if (typeof options == 'function') {
          verify = options;
          options = undefined;
        }
      Severity: Minor
      Found in lib/strategy.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 OAuthStrategy has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function OAuthStrategy(options, verify) {
        if (typeof options == 'function') {
          verify = options;
          options = undefined;
        }
      Severity: Minor
      Found in lib/strategy.js - About 1 hr to fix

        Function destroyed has 30 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

                function destroyed(err) {
                  if (err) { return self.error(err); }
              
                  self._loadUserProfile(token, tokenSecret, params, function(err, profile) {
                    if (err) { return self.error(err); }
        Severity: Minor
        Found in lib/strategy.js - About 1 hr to fix

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

            if (Object.keys(req.session[this._key]).length === 0) {
              delete req.session[this._key];
            }
          Severity: Minor
          Found in lib/requesttoken/session.js and 1 other location - About 50 mins to fix
          lib/requesttoken/state.js on lines 34..36

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

          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 (Object.keys(req.session[this._key]).length === 0) {
              delete req.session[this._key];
            }
          Severity: Minor
          Found in lib/requesttoken/state.js and 1 other location - About 50 mins to fix
          lib/requesttoken/session.js on lines 31..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 52.

          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 set has 6 arguments (exceeds 4 allowed). Consider refactoring.
          Open

          SessionStore.prototype.set = function(req, token, tokenSecret, state, meta, cb) {
          Severity: Minor
          Found in lib/requesttoken/state.js - About 45 mins to fix

            Function originalURL has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            exports.originalURL = function(req, options) {
              options = options || {};
              var app = req.app;
              if (app && app.get && app.get('trust proxy')) {
                options.proxy = true;
            Severity: Minor
            Found in lib/utils.js - About 35 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 _loadUserProfile has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
            Open

            OAuthStrategy.prototype._loadUserProfile = function(token, tokenSecret, params, done) {
              var self = this;
              
              function loadIt() {
                return self.userProfile(token, tokenSecret, params, done);
            Severity: Minor
            Found in lib/strategy.js - About 35 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 toString has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
            Open

            InternalOAuthError.prototype.toString = function() {
              var m = this.name;
              if (this.message) { m += ': ' + this.message; }
              if (this.oauthError) {
                if (this.oauthError instanceof Error) {
            Severity: Minor
            Found in lib/errors/internaloautherror.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