feedsbrain/pssh-tools

View on GitHub
src/lib/pssh/tools.ts

Summary

Maintainability
D
1 day
Test Coverage
A
95%

Function decodePssh has a Cognitive Complexity of 44 (exceeds 5 allowed). Consider refactoring.
Open

export const decodePssh = (data: string) => {
  const result: T.DecodeResult = {}
  const decodedData = Buffer.from(data, 'base64')

  // pssh header
Severity: Minor
Found in src/lib/pssh/tools.ts - About 6 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 decodePssh has 110 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export const decodePssh = (data: string) => {
  const result: T.DecodeResult = {}
  const decodedData = Buffer.from(data, 'base64')

  // pssh header
Severity: Major
Found in src/lib/pssh/tools.ts - About 4 hrs to fix

    Function printPssh has 51 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

      result.printPssh = () => {
        // pssh version
        const psshArray = [`PSSH Box v${psshVersion}`]
    
        // system id
    Severity: Major
    Found in src/lib/pssh/tools.ts - About 2 hrs to fix

      Function getPsshHeader has 36 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      export const getPsshHeader = (request: T.HeaderConfig): string => {
        const pssh = []
        const keyIds = request.keyIds || []
      
        // Set default to 0 for Widevine backward compatibility
      Severity: Minor
      Found in src/lib/pssh/tools.ts - About 1 hr to fix

        Function getPsshHeader has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        export const getPsshHeader = (request: T.HeaderConfig): string => {
          const pssh = []
          const keyIds = request.keyIds || []
        
          // Set default to 0 for Widevine backward compatibility
        Severity: Minor
        Found in src/lib/pssh/tools.ts - About 45 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

        There are no issues that match your filters.

        Category
        Status