prebid/Prebid.js

View on GitHub
modules/distroscaleBidAdapter.js

Summary

Maintainability
D
2 days
Test Coverage

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

  buildRequests: (validBidRequests, bidderRequest) => {
    // TODO: does the fallback to window.location make sense?
    var pageUrl = bidderRequest?.refererInfo?.page || window.location.href;

    // check if dstag is already loaded in ancestry tree
Severity: Minor
Found in modules/distroscaleBidAdapter.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 buildRequests has 84 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  buildRequests: (validBidRequests, bidderRequest) => {
    // TODO: does the fallback to window.location make sense?
    var pageUrl = bidderRequest?.refererInfo?.page || window.location.href;

    // check if dstag is already loaded in ancestry tree
Severity: Major
Found in modules/distroscaleBidAdapter.js - About 3 hrs to fix

    Function _createImpressionObject has 69 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    function _createImpressionObject(bid) {
      var impObj = UNDEF;
      var i;
      var sizes = {};
      var sizesCount = 0;
    Severity: Major
    Found in modules/distroscaleBidAdapter.js - About 2 hrs to fix

      Function _createImpressionObject has a Cognitive Complexity of 18 (exceeds 5 allowed). Consider refactoring.
      Open

      function _createImpressionObject(bid) {
        var impObj = UNDEF;
        var i;
        var sizes = {};
        var sizesCount = 0;
      Severity: Minor
      Found in modules/distroscaleBidAdapter.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 interpretResponse has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

        interpretResponse: (response, request) => {
          const bidResponses = [];
          try {
            if (response.body && response.body.seatbid && isArray(response.body.seatbid)) {
              // Supporting multiple bid responses for same adSize
      Severity: Minor
      Found in modules/distroscaleBidAdapter.js - About 1 hr to fix

        Consider simplifying this complex logical expression.
        Open

              if (response.body && response.body.seatbid && isArray(response.body.seatbid)) {
                // Supporting multiple bid responses for same adSize
                response.body.seatbid.forEach(seatbidder => {
                  seatbidder.bid &&
                    isArray(seatbidder.bid) &&
        Severity: Major
        Found in modules/distroscaleBidAdapter.js - About 1 hr to fix

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

          function _getBidFloor(bid, mType, sz) {
            if (isFn(bid.getFloor)) {
              let floor = bid.getFloor({
                currency: DEFAULT_CURRENCY,
                mediaType: mType || '*',
          Severity: Minor
          Found in modules/distroscaleBidAdapter.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

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

              if (bidderRequest && bidderRequest.gdprConsent) {
                deepSetValue(payload, 'user.consent', bidderRequest.gdprConsent.consentString);
                deepSetValue(payload, 'regs.gdpr', (bidderRequest.gdprConsent.gdprApplies ? 1 : 0));
              }
          Severity: Major
          Found in modules/distroscaleBidAdapter.js and 4 other locations - About 1 hr to fix
          modules/adtrueBidAdapter.js on lines 520..523
          modules/pubmaticBidAdapter.js on lines 1220..1223
          modules/pubwiseBidAdapter.js on lines 262..265
          modules/zeta_global_sspBidAdapter.js on lines 171..174

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

          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

              if (typeof config.getConfig('device') === 'object') {
                payload.device = Object.assign(payload.device, config.getConfig('device'));
              }
          Severity: Major
          Found in modules/distroscaleBidAdapter.js and 2 other locations - About 1 hr to fix
          modules/pubmaticBidAdapter.js on lines 1199..1201
          modules/pubwiseBidAdapter.js on lines 249..251

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

          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 (typeof config.getConfig('content') === 'object') {
                payload.site.content = config.getConfig('content');
              }
          Severity: Minor
          Found in modules/distroscaleBidAdapter.js and 2 other locations - About 40 mins to fix
          modules/pubmaticBidAdapter.js on lines 1194..1196
          modules/pubwiseBidAdapter.js on lines 244..246

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

          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

          There are no issues that match your filters.

          Category
          Status