thestrukture/IDE

View on GitHub
api/handlers/rest_POSTApiPut.go

Summary

Maintainability
B
4 hrs
Test Coverage
F
23%

Function POSTApiPut has 100 lines of code (exceeds 50 allowed). Consider refactoring.
Open

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

    me := types.SoftUser{Email: "Strukture user", Username: "Strukture user"}

    if r.FormValue("type") == "0" {
Severity: Major
Found in api/handlers/rest_POSTApiPut.go - About 3 hrs to fix

    Function POSTApiPut has a Cognitive Complexity of 23 (exceeds 20 allowed). Consider refactoring.
    Open

    func POSTApiPut(w http.ResponseWriter, r *http.Request, session *sessions.Session) (response string, callmet bool) {
    
        me := types.SoftUser{Email: "Strukture user", Username: "Strukture user"}
    
        if r.FormValue("type") == "0" {
    Severity: Minor
    Found in api/handlers/rest_POSTApiPut.go - 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

    Avoid deeply nested control flow statements.
    Open

        } else if r.FormValue("type") == "30" {
            ioutil.WriteFile(filepath.Join(os.ExpandEnv("$GOPATH"), "src" ,r.FormValue("pkg"), r.FormValue("target")), []byte(r.FormValue("data")), 0777)
    
            response = templates.Alert(types.Alertbs{Type: "warning", Text: r.FormValue("target") + " saved!"})
        } else if r.FormValue("type") == "4" {
    Severity: Major
    Found in api/handlers/rest_POSTApiPut.go - About 45 mins to fix

      Your code does not pass gofmt in 2 places. Go fmt your code!
      Open

      // File generated by Gopher Sauce
      Severity: Minor
      Found in api/handlers/rest_POSTApiPut.go by gofmt

      comment on exported function POSTApiPut should be of the form "POSTApiPut ..."
      Open

      //
      Severity: Minor
      Found in api/handlers/rest_POSTApiPut.go by golint

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

      // File generated by Gopher Sauce
      Severity: Minor
      Found in api/handlers/rest_POSTApiPut.go by golint

      There are no issues that match your filters.

      Category
      Status