thestrukture/IDE

View on GitHub
api/handlers/rest_POSTApiAct.go

Summary

Maintainability
D
2 days
Test Coverage
F
12%

Function POSTApiAct has a Cognitive Complexity of 75 (exceeds 20 allowed). Consider refactoring.
Open

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

    if r.FormValue("type") == "0" {
        apps := methods.GetApps()
        app := types.App{Type: "webapp", Name: r.FormValue("name")}
Severity: Minor
Found in api/handlers/rest_POSTApiAct.go - About 1 day 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 POSTApiAct has 158 lines of code (exceeds 50 allowed). Consider refactoring.
Open

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

    if r.FormValue("type") == "0" {
        apps := methods.GetApps()
        app := types.App{Type: "webapp", Name: r.FormValue("name")}
Severity: Major
Found in api/handlers/rest_POSTApiAct.go - About 5 hrs to fix

    Avoid deeply nested control flow statements.
    Open

                    if err != nil {
                        response = templates.Alert(types.Alertbs{Type: "danger", Text: "Error creating package " + r.FormValue("name") + ":" + err.Error(), Redirect: "javascript:console.log('error!')"})
                    }
    Severity: Major
    Found in api/handlers/rest_POSTApiAct.go - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

          } else if r.FormValue("type") == "3" {
              apps := methods.GetApps()
              app := methods.GetApp(apps, r.FormValue("pkg"))
              temp := []string{}
              for _, v := range app.Css {
      Severity: Major
      Found in api/handlers/rest_POSTApiAct.go - About 45 mins to fix

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

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

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

        //
        Severity: Minor
        Found in api/handlers/rest_POSTApiAct.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_POSTApiAct.go by golint

        There are no issues that match your filters.

        Category
        Status