thestrukture/IDE

View on GitHub
api/handlers/middleware_fApiSearch_project.go

Summary

Maintainability
B
5 hrs
Test Coverage

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

func fApiSearch_project(w http.ResponseWriter, r *http.Request, session *sessions.Session) (response string, callmet bool) {

    path := filepath.Join(os.ExpandEnv("$GOPATH"), "src", r.FormValue("pkg"), r.FormValue("path"))
    search := r.FormValue("text")

Severity: Minor
Found in api/handlers/middleware_fApiSearch_project.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 fApiSearch_project has 76 lines of code (exceeds 50 allowed). Consider refactoring.
Open

func fApiSearch_project(w http.ResponseWriter, r *http.Request, session *sessions.Session) (response string, callmet bool) {

    path := filepath.Join(os.ExpandEnv("$GOPATH"), "src", r.FormValue("pkg"), r.FormValue("path"))
    search := r.FormValue("text")

Severity: Major
Found in api/handlers/middleware_fApiSearch_project.go - About 2 hrs to fix

    Function fApiSearch_project has 8 return statements (exceeds 4 allowed).
    Open

    func fApiSearch_project(w http.ResponseWriter, r *http.Request, session *sessions.Session) (response string, callmet bool) {
    
        path := filepath.Join(os.ExpandEnv("$GOPATH"), "src", r.FormValue("pkg"), r.FormValue("path"))
        search := r.FormValue("text")
    
    
    Severity: Major
    Found in api/handlers/middleware_fApiSearch_project.go - About 50 mins to fix

      don't use underscores in Go names; func fApiSearch_project should be fAPISearchProject
      Open

      func fApiSearch_project(w http.ResponseWriter, r *http.Request, session *sessions.Session) (response string, callmet bool) {

      package comment should be of the form "Package handlers ..."
      Open

      // File generated by Gopher Sauce

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

      // File generated by Gopher Sauce

      There are no issues that match your filters.

      Category
      Status