src/server/utilities/cspHeader/directives.js

Summary

Maintainability
F
3 days
Test Coverage
A
100%

File directives.js has 323 lines of code (exceeds 250 allowed). Consider refactoring.
Open

import { bbcDomains, advertisingServiceCountryDomains } from './domainLists';

const advertisingDirectives = {
  frameSrc: [
    'https://*.doubleclick.net',
Severity: Minor
Found in src/server/utilities/cspHeader/directives.js - About 3 hrs to fix

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

    export const generateFrameSrc = ({ isAmp, isLive }) => {
      if (!isLive && isAmp) return directives.frameSrc.ampNonLive.sort();
      if (!isLive && !isAmp) return directives.frameSrc.canonicalNonLive.sort();
      if (isLive && isAmp) return directives.frameSrc.ampLive.sort();
      return directives.frameSrc.canonicalLive.sort();
    Severity: Major
    Found in src/server/utilities/cspHeader/directives.js and 4 other locations - About 4 hrs to fix
    src/server/utilities/cspHeader/directives.js on lines 276..281
    src/server/utilities/cspHeader/directives.js on lines 290..295
    src/server/utilities/cspHeader/directives.js on lines 301..306
    src/server/utilities/cspHeader/directives.js on lines 308..313

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

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

    export const generateStyleSrc = ({ isAmp, isLive }) => {
      if (!isLive && isAmp) return directives.styleSrc.ampNonLive.sort();
      if (!isLive && !isAmp) return directives.styleSrc.canonicalNonLive.sort();
      if (isLive && isAmp) return directives.styleSrc.ampLive.sort();
      return directives.styleSrc.canonicalLive.sort();
    Severity: Major
    Found in src/server/utilities/cspHeader/directives.js and 4 other locations - About 4 hrs to fix
    src/server/utilities/cspHeader/directives.js on lines 276..281
    src/server/utilities/cspHeader/directives.js on lines 283..288
    src/server/utilities/cspHeader/directives.js on lines 290..295
    src/server/utilities/cspHeader/directives.js on lines 301..306

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

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

    export const generateFontSrc = ({ isAmp, isLive }) => {
      if (!isLive && isAmp) return directives.fontSrc.ampNonLive.sort();
      if (!isLive && !isAmp) return directives.fontSrc.canonicalNonLive.sort();
      if (isLive && isAmp) return directives.fontSrc.ampLive.sort();
      return directives.fontSrc.canonicalLive.sort();
    Severity: Major
    Found in src/server/utilities/cspHeader/directives.js and 4 other locations - About 4 hrs to fix
    src/server/utilities/cspHeader/directives.js on lines 283..288
    src/server/utilities/cspHeader/directives.js on lines 290..295
    src/server/utilities/cspHeader/directives.js on lines 301..306
    src/server/utilities/cspHeader/directives.js on lines 308..313

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

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

    export const generateImgSrc = ({ isAmp, isLive }) => {
      if (!isLive && isAmp) return directives.imgSrc.ampNonLive.sort();
      if (!isLive && !isAmp) return directives.imgSrc.canonicalNonLive.sort();
      if (isLive && isAmp) return directives.imgSrc.ampLive.sort();
      return directives.imgSrc.canonicalLive.sort();
    Severity: Major
    Found in src/server/utilities/cspHeader/directives.js and 4 other locations - About 4 hrs to fix
    src/server/utilities/cspHeader/directives.js on lines 276..281
    src/server/utilities/cspHeader/directives.js on lines 283..288
    src/server/utilities/cspHeader/directives.js on lines 301..306
    src/server/utilities/cspHeader/directives.js on lines 308..313

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

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

    export const generateScriptSrc = ({ isAmp, isLive }) => {
      if (!isLive && isAmp) return directives.scriptSrc.ampNonLive.sort();
      if (!isLive && !isAmp) return directives.scriptSrc.canonicalNonLive.sort();
      if (isLive && isAmp) return directives.scriptSrc.ampLive.sort();
      return directives.scriptSrc.canonicalLive.sort();
    Severity: Major
    Found in src/server/utilities/cspHeader/directives.js and 4 other locations - About 4 hrs to fix
    src/server/utilities/cspHeader/directives.js on lines 276..281
    src/server/utilities/cspHeader/directives.js on lines 283..288
    src/server/utilities/cspHeader/directives.js on lines 290..295
    src/server/utilities/cspHeader/directives.js on lines 308..313

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

    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

        canonicalNonLive: [
          ...bbcDomains,
          'https://chartbeat.com',
          'https://*.chartbeat.com',
          'https://www.youtube.com', // Social Embeds
    Severity: Minor
    Found in src/server/utilities/cspHeader/directives.js and 1 other location - About 50 mins to fix
    src/server/utilities/cspHeader/directives.js on lines 61..78

    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

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

        canonicalLive: [
          ...bbcDomains,
          'https://chartbeat.com',
          'https://*.chartbeat.com',
          'https://www.youtube.com', // Social Embeds
    Severity: Minor
    Found in src/server/utilities/cspHeader/directives.js and 1 other location - About 50 mins to fix
    src/server/utilities/cspHeader/directives.js on lines 91..108

    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

    There are no issues that match your filters.

    Category
    Status