wisedog/ladybug

View on GitHub
controllers/projects.go

Summary

Maintainability
C
1 day
Test Coverage

Function Dashboard has 84 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func Dashboard(c *interfacer.AppContext, w http.ResponseWriter, r *http.Request) error {

    var prj models.Project
    err := c.Db.Where("name = ?", c.ProjectName).First(&prj)

Severity: Major
Found in controllers/projects.go - About 2 hrs to fix

    Function getPeriodReqTestCaseCoverage has a Cognitive Complexity of 32 (exceeds 20 allowed). Consider refactoring.
    Open

    func getPeriodReqTestCaseCoverage(c *interfacer.AppContext, projectID, currentCov int) (string, error) {
        // req-testcase coverage is calculated by dealing with TcReqRelationHistory, Requirement table
        // This is pretty complex, if you have good idea to solve it : VERY WELCOME : )
    
        // first get all requirements in this project
    Severity: Minor
    Found in controllers/projects.go - About 2 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 ProjectSave has 57 lines of code (exceeds 50 allowed). Consider refactoring.
    Open

    func ProjectSave(c *interfacer.AppContext, w http.ResponseWriter, r *http.Request) error {
    
        if err := r.ParseForm(); err != nil {
            log.Error("Projects", "type", "http", "msg ", err)
        }
    Severity: Minor
    Found in controllers/projects.go - About 1 hr to fix

      Function getPeriodReqTestCaseCoverage has 56 lines of code (exceeds 50 allowed). Consider refactoring.
      Open

      func getPeriodReqTestCaseCoverage(c *interfacer.AppContext, projectID, currentCov int) (string, error) {
          // req-testcase coverage is calculated by dealing with TcReqRelationHistory, Requirement table
          // This is pretty complex, if you have good idea to solve it : VERY WELCOME : )
      
          // first get all requirements in this project
      Severity: Minor
      Found in controllers/projects.go - About 1 hr to fix

        Function ProjectSave has 5 return statements (exceeds 4 allowed).
        Open

        func ProjectSave(c *interfacer.AppContext, w http.ResponseWriter, r *http.Request) error {
        
            if err := r.ParseForm(); err != nil {
                log.Error("Projects", "type", "http", "msg ", err)
            }
        Severity: Major
        Found in controllers/projects.go - About 35 mins to fix

          Function ProjectSave has a Cognitive Complexity of 22 (exceeds 20 allowed). Consider refactoring.
          Open

          func ProjectSave(c *interfacer.AppContext, w http.ResponseWriter, r *http.Request) error {
          
              if err := r.ParseForm(); err != nil {
                  log.Error("Projects", "type", "http", "msg ", err)
              }
          Severity: Minor
          Found in controllers/projects.go - 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

          Your code does not pass gofmt in 1 place. Go fmt your code!
          Open

          package controllers
          Severity: Minor
          Found in controllers/projects.go by gofmt

          exported const ProjectFlashKey should have comment (or a comment on this block) or be unexported
          Open

              ProjectFlashKey = "LADYBUG_PROJECT"
          Severity: Minor
          Found in controllers/projects.go by golint

          There are no issues that match your filters.

          Category
          Status