LumberjackOtters/serverless-aws-arn-resolver

View on GitHub
src/handlers.js

Summary

Maintainability
B
4 hrs
Test Coverage

Function getEC2Value has a Cognitive Complexity of 12 (exceeds 5 allowed). Consider refactoring.
Open

async function getEC2Value(key, awsParameters) {
  const ec2 = new AWS.EC2({...awsParameters, apiVersion: '2015-01-01'})

  const keys = key.split(':')

Severity: Minor
Found in src/handlers.js - About 1 hr 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 getEC2Value has 37 lines of code (exceeds 30 allowed). Consider refactoring.
Open

async function getEC2Value(key, awsParameters) {
  const ec2 = new AWS.EC2({...awsParameters, apiVersion: '2015-01-01'})

  const keys = key.split(':')

Severity: Minor
Found in src/handlers.js - About 1 hr to fix

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

    async function getECSValue(key, awsParameters) {
      winston.debug(`Resolving ElastiCache cluster with name ${key}`)
      const ecs = new AWS.ElastiCache({ ...awsParameters, apiVersion: '2015-02-02' })
    
      try {
    Severity: Minor
    Found in src/handlers.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 getVPCValue has a Cognitive Complexity of 6 (exceeds 5 allowed). Consider refactoring.
    Open

    async function getVPCValue(key, awsParameters) {
      winston.debug(`Resolving vpc with name ${key}`)
      const ec2 = new AWS.EC2({ ...awsParameters, apiVersion: '2015-01-01' })
    
      try {
    Severity: Minor
    Found in src/handlers.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

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

    async function getSubnetValue(key, awsParameters) {
      winston.debug(`Resolving subnet with name ${key}`)
      const ec2 = new AWS.EC2({ ...awsParameters, apiVersion: '2015-01-01' })
    
      try {
    Severity: Minor
    Found in src/handlers.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

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

    async function getESSValue(key, awsParameters) {
      winston.debug(`Resolving ElasticSearch cluster with name ${key}`)
      const ess = new AWS.ES({ ...awsParameters, apiVersion: '2015-01-01' })
    
      try {
    Severity: Minor
    Found in src/handlers.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

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

    async function getRDSValue(key, awsParameters) {
      winston.debug(`Resolving RDS database with name ${key}`)
      const rds = new AWS.RDS({ ...awsParameters, apiVersion: '2014-10-31' })
    
      try {
    Severity: Minor
    Found in src/handlers.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 2 locations. Consider refactoring.
    Invalid

    async function getSubnetValue(key, awsParameters) {
      winston.debug(`Resolving subnet with name ${key}`)
      const ec2 = new AWS.EC2({ ...awsParameters, apiVersion: '2015-01-01' })
    
      try {
    Severity: Major
    Found in src/handlers.js and 1 other location - About 1 day to fix
    src/handlers.js on lines 138..169

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

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

    async function getVPCValue(key, awsParameters) {
      winston.debug(`Resolving vpc with name ${key}`)
      const ec2 = new AWS.EC2({ ...awsParameters, apiVersion: '2015-01-01' })
    
      try {
    Severity: Major
    Found in src/handlers.js and 1 other location - About 1 day to fix
    src/handlers.js on lines 177..208

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

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

    async function getDynamoDbValue(key, awsParameters) {
      winston.debug(`Resolving DynamoDB stream with name ${key}`)
      const dynamodb = new AWS.DynamoDB({ ...awsParameters, apiVersion: '2012-08-10' })
    
      try {
    Severity: Major
    Found in src/handlers.js and 2 other locations - About 1 day to fix
    src/handlers.js on lines 49..72
    src/handlers.js on lines 216..238

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

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

    async function getKinesisValue(key, awsParameters) {
      winston.debug(`Resolving Kinesis stream with name ${key}`)
      const kinesis = new AWS.Kinesis({ ...awsParameters, apiVersion: '2013-12-02' })
      try {
        let result = await kinesis.describeStream({ StreamName: key }).promise()
    Severity: Major
    Found in src/handlers.js and 2 other locations - About 1 day to fix
    src/handlers.js on lines 49..72
    src/handlers.js on lines 246..269

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

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

    async function getESSValue(key, awsParameters) {
      winston.debug(`Resolving ElasticSearch cluster with name ${key}`)
      const ess = new AWS.ES({ ...awsParameters, apiVersion: '2015-01-01' })
    
      try {
    Severity: Major
    Found in src/handlers.js and 2 other locations - About 1 day to fix
    src/handlers.js on lines 216..238
    src/handlers.js on lines 246..269

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

    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