passport-next/passport-oauth1

View on GitHub

Showing 8 of 8 total issues

Function authenticate has 108 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 20 (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 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

        Function OAuthStrategy has a Cognitive Complexity of 10 (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 _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 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 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