prebid/Prebid.js

View on GitHub
modules/sharethroughBidAdapter.js

Summary

Maintainability
F
3 days
Test Coverage

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

  buildRequests: (bidRequests, bidderRequest) => {
    const timeout = bidderRequest.timeout;
    const firstPartyData = bidderRequest.ortb2 || {};

    const nonHttp = sharethroughInternal.getProtocol().indexOf('http') < 0;
Severity: Minor
Found in modules/sharethroughBidAdapter.js - About 1 day 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 142 lines of code (exceeds 25 allowed). Consider refactoring.
Open

  buildRequests: (bidRequests, bidderRequest) => {
    const timeout = bidderRequest.timeout;
    const firstPartyData = bidderRequest.ortb2 || {};

    const nonHttp = sharethroughInternal.getProtocol().indexOf('http') < 0;
Severity: Major
Found in modules/sharethroughBidAdapter.js - About 5 hrs to fix

    Function imps has 62 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

          .map((bidReq) => {
            const impression = { ext: {} };
    
            // mergeDeep(impression, bidReq.ortb2Imp); // leaving this out for now as we may want to leave stuff out on purpose
            const tid = deepAccess(bidReq, 'ortb2Imp.ext.tid');
    Severity: Major
    Found in modules/sharethroughBidAdapter.js - About 2 hrs to fix

      File sharethroughBidAdapter.js has 263 lines of code (exceeds 250 allowed). Consider refactoring.
      Open

      import { registerBidder } from '../src/adapters/bidderFactory.js';
      import { config } from '../src/config.js';
      import { BANNER, VIDEO } from '../src/mediaTypes.js';
      import { deepAccess, generateUUID, inIframe, mergeDeep } from '../src/utils.js';
      
      
      Severity: Minor
      Found in modules/sharethroughBidAdapter.js - About 2 hrs to fix

        Function bidsFromExchange has 35 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

            const bidsFromExchange = body.seatbid[0].bid.map((bid) => {
              // Spec: https://docs.prebid.org/dev-docs/bidder-adaptor.html#interpreting-the-response
              const response = {
                requestId: bid.impid,
                width: +bid.w,
        Severity: Minor
        Found in modules/sharethroughBidAdapter.js - About 1 hr to fix

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

            interpretResponse: ({ body }, req) => {
              if (
                !body ||
                !body.seatbid ||
                body.seatbid.length === 0 ||
          Severity: Minor
          Found in modules/sharethroughBidAdapter.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 getBidRequestFloor has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
          Open

          function getBidRequestFloor(bid) {
            let floor = null;
            if (typeof bid.getFloor === 'function') {
              const floorInfo = bid.getFloor({
                currency: 'USD',
          Severity: Minor
          Found in modules/sharethroughBidAdapter.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 3 locations. Consider refactoring.
          Open

              if (
                !body ||
                !body.seatbid ||
                body.seatbid.length === 0 ||
                !body.seatbid[0].bid ||
          Severity: Major
          Found in modules/sharethroughBidAdapter.js and 2 other locations - About 2 hrs to fix
          modules/ebdrBidAdapter.js on lines 70..72
          modules/ebdrBidAdapter.js on lines 118..120

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

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

              if (bidderRequest?.gppConsent?.gppString) {
                req.regs.gpp = bidderRequest.gppConsent.gppString;
                req.regs.gpp_sid = bidderRequest.gppConsent.applicableSections;
              } else if (bidderRequest?.ortb2?.regs?.gpp) {
                req.regs.ext.gpp = bidderRequest.ortb2.regs.gpp;
          Severity: Major
          Found in modules/sharethroughBidAdapter.js and 6 other locations - About 45 mins to fix
          modules/dspxBidAdapter.js on lines 75..78
          modules/exadsBidAdapter.js on lines 131..134
          modules/nextMillenniumBidAdapter.js on lines 320..323
          modules/pubmaticBidAdapter.js on lines 1000..1003
          modules/radsBidAdapter.js on lines 178..186
          modules/trafficgateBidAdapter.js on lines 55..58

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

          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