integreat-io/integreat-authenticator-jwt

View on GitHub

Showing 5 of 5 total issues

Function validate has 30 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export default async function validate(
  _authentication: JwtAuthentication | null,
  options: JwtOptions | null,
  action: Action | null,
) {
Severity: Minor
Found in src/validate.ts - About 1 hr to fix

    Function authenticate has 26 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export default async function authenticate(
      options: JwtOptions | null,
      action: Action | null,
    ): Promise<JwtAuthentication> {
      if (!action) {
    Severity: Minor
    Found in src/authenticate.ts - About 1 hr to fix

      Function createAuthenticationWithSignedJwt has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

        payload: Record<string, unknown>,
        key: string,
        algorithm: jwt.Algorithm,
        audience: string,
        expiresIn?: string,
      Severity: Minor
      Found in src/authenticate.ts - About 45 mins to fix

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

        function keyIdFromJwt(token: string) {
          const { header, payload } = jwt.decode(token, { complete: true }) || {}
          if (isObject(payload) && isNonEmptyString(payload.iss)) {
            const { iss, aud } = payload
            const kid = isObject(header) ? header.kid : undefined
        Severity: Minor
        Found in src/validate.ts - 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 validate has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.
        Open

        export default async function validate(
          _authentication: JwtAuthentication | null,
          options: JwtOptions | null,
          action: Action | null,
        ) {
        Severity: Minor
        Found in src/validate.ts - 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

        Severity
        Category
        Status
        Source
        Language