Nenhuma descrição

Test.go 1.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. package test
  2. import (
  3. "fmt"
  4. "net/http"
  5. "../../../core/errorHandler"
  6. "../../../core/request"
  7. "../../../core/response"
  8. auth "../../lib/auth"
  9. )
  10. type Profile struct {
  11. Name string
  12. Hobbies []string
  13. }
  14. //Inicial : Func
  15. func Inicial(w http.ResponseWriter, r *http.Request) {
  16. fmt.Println(r.Context().Value("parameters").([]string))
  17. var Errors errorHandler.Errors
  18. user, err := auth.GetUser(r)
  19. fmt.Printf("%+v\n", user)
  20. fmt.Printf("%+v\n", err)
  21. //var errors errors.Errors
  22. // fmt.Println(vars[0])
  23. // fmt.Fprintf(w, "Hello Route, %q", html.EscapeString(r.URL.Path))
  24. // profile := Profile{"Alex", []string{"snowboarding", "programming"}}
  25. if err := r.ParseForm(); err != nil {
  26. fmt.Printf("ParseForm() err: %v", err)
  27. return
  28. }
  29. Errors.InvalidParameter("username", "Usuário não disponível")
  30. Errors.InternalError("Ocorreu um erro interno")
  31. Errors.ActionForbidden("Ocorreu um erro interno2")
  32. if Errors.Has() {
  33. response.JSON(Errors)
  34. return
  35. }
  36. fmt.Println(request.Method())
  37. // res.SetCode(404)
  38. // res.JSON(profile)
  39. }