ripple/ripple-rest

View on GitHub

Showing 151 of 151 total issues

File validate.js has 500 lines of code (exceeds 250 allowed). Consider refactoring.
Open

'use strict';
var _ = require('lodash');
var InvalidRequestError = require('./errors.js').InvalidRequestError;
var validator = require('./schema-validator');
var ripple = require('ripple-lib');
Severity: Minor
Found in api/lib/validate.js - About 1 day to fix

    File transactions.js has 411 lines of code (exceeds 250 allowed). Consider refactoring.
    Open

    /* eslint-disable valid-jsdoc */
    'use strict';
    
    var _ = require('lodash');
    var assert = require('assert');
    Severity: Minor
    Found in api/transactions.js - About 5 hrs to fix

      Function getPathFind has 137 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function getPathFind(source_account, destination_account,
          destination_amount_string, source_currency_strings, callback) {
        var self = this;
      
        var destination_amount = renameCounterpartyToIssuer(
      Severity: Major
      Found in api/payments.js - About 5 hrs to fix

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

          function respondWithTrustlines(result) {
            var promise = new Promise(function(resolve) {
              var trustlines = {};
        
              if (result.marker) {
        Severity: Major
        Found in api/trustlines.js and 1 other location - About 5 hrs to fix
        api/balances.js on lines 151..168

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

        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

          function respondWithBalances(result) {
            var promise = new Promise(function(resolve) {
              var balances = {};
        
              if (result.marker) {
        Severity: Major
        Found in api/balances.js and 1 other location - About 5 hrs to fix
        api/trustlines.js on lines 112..129

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

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

        function getOrderBook(account, base, counter, options, callback) {
          var self = this;
        
          var params = _.merge(options, {
            validated: true,
        Severity: Major
        Found in api/orders.js - About 4 hrs to fix

          Function getBalances has 114 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

          function getBalances(account, options, callback) {
            validate.address(account);
            validate.currency(options.currency, true);
            validate.counterparty(options.counterparty, true);
            validate.options(options);
          Severity: Major
          Found in api/balances.js - About 4 hrs to fix

            Function getNotifications has a Cognitive Complexity of 30 (exceeds 5 allowed). Consider refactoring.
            Open

            function getNotifications(account, urlBase, options, callback) {
              validate.address(account);
            
              var self = this;
            
            
            Severity: Minor
            Found in api/notifications.js - About 4 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 getTransaction has 108 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

            function getTransaction(api, account, identifier, requestOptions, callback) {
            
              try {
                assert.strictEqual(typeof requestOptions, 'object');
            
            
            Severity: Major
            Found in api/transactions.js - About 4 hrs to fix

              Function createPaymentTransaction has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
              Open

              function createPaymentTransaction(account, payment) {
                validate.address(account);
                validate.payment(payment);
              
                // Convert blank issuer to sender's address
              Severity: Minor
              Found in api/transaction/payment.js - About 4 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 transactionFilter has a Cognitive Complexity of 29 (exceeds 5 allowed). Consider refactoring.
              Open

              function transactionFilter(transactions, options) {
                var filtered_transactions = transactions.filter(function(transaction) {
                  if (options.exclude_failed) {
                    if (transaction.state === 'failed' || (transaction.meta
                        && transaction.meta.TransactionResult !== 'tesSUCCESS')) {
              Severity: Minor
              Found in api/transactions.js - About 4 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 getPathFind has a Cognitive Complexity of 28 (exceeds 5 allowed). Consider refactoring.
              Open

              function getPathFind(source_account, destination_account,
                  destination_amount_string, source_currency_strings, callback) {
                var self = this;
              
                var destination_amount = renameCounterpartyToIssuer(
              Severity: Minor
              Found in api/payments.js - About 4 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 handleError has 99 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function handleError(error, req, res, next) {
                // If in debug mode, print errors
                if (config.get('debug')) {
                  if (error && error.remote) {
                    logger.error(error.remote);
              Severity: Major
              Found in server/error-handler.js - About 3 hrs to fix

                Function submitTransaction has 98 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                function submitTransaction(api, tx, secret, options, callback) {
                  function blockDuplicates(transaction, _options, _callback) {
                    var transactionOptions = {
                      source_account: transaction.tx_json.Account,
                      client_resource_id: _options.clientResourceId,
                Severity: Major
                Found in api/transactions.js - About 3 hrs to fix

                  Function getTransaction has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function getTransaction(api, account, identifier, requestOptions, callback) {
                  
                    try {
                      assert.strictEqual(typeof requestOptions, 'object');
                  
                  
                  Severity: Minor
                  Found in api/transactions.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 getBalances has a Cognitive Complexity of 27 (exceeds 5 allowed). Consider refactoring.
                  Open

                  function getBalances(account, options, callback) {
                    validate.address(account);
                    validate.currency(options.currency, true);
                    validate.counterparty(options.counterparty, true);
                    validate.options(options);
                  Severity: Minor
                  Found in api/balances.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

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

                        if (prevResult) {
                          marker = prevResult.marker;
                          limit = prevResult.limit;
                          ledger = prevResult.ledger_index;
                        } else {
                  Severity: Major
                  Found in api/balances.js and 2 other locations - About 3 hrs to fix
                  api/orders.js on lines 58..67
                  api/trustlines.js on lines 58..67

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

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

                        if (prevResult) {
                          marker = prevResult.marker;
                          limit = prevResult.limit;
                          ledger = prevResult.ledger_index;
                        } else {
                  Severity: Major
                  Found in api/trustlines.js and 2 other locations - About 3 hrs to fix
                  api/balances.js on lines 81..90
                  api/orders.js on lines 58..67

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

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

                        if (prevResult) {
                          marker = prevResult.marker;
                          limit = prevResult.limit;
                          ledger = prevResult.ledger_index;
                        } else {
                  Severity: Major
                  Found in api/orders.js and 2 other locations - About 3 hrs to fix
                  api/balances.js on lines 81..90
                  api/trustlines.js on lines 58..67

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

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

                  function validatePayment(payment) {
                    if (!isValidAddress(payment.source_account)) {
                      throw error('Invalid parameter: source_account. '
                        + 'Must be a valid Ripple address');
                    }
                  Severity: Minor
                  Found in api/lib/validate.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

                  Severity
                  Category
                  Status
                  Source
                  Language