Brak opisu

router.go 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. package router
  2. import (
  3. "fmt"
  4. "net/http"
  5. "regexp"
  6. "strconv"
  7. "strings"
  8. )
  9. type closure func(http.ResponseWriter, *http.Request, []string)
  10. type Middleware func(http.ResponseWriter, *http.Request, []string) bool
  11. //Route struct de uma rota
  12. type Route struct {
  13. Pattern string
  14. Handler closure
  15. Middlewares []Middleware
  16. }
  17. //Routes array of route
  18. type Routes []Route
  19. var routes Routes
  20. //Match retorna a rota encontrada
  21. func (routes Routes) Match(w http.ResponseWriter, r *http.Request) {
  22. url := r.URL.Path
  23. for _, element := range routes {
  24. when := element.Pattern
  25. pattern := toRegex(when)
  26. items := regexSubmatch(pattern, url)
  27. if items[0] == url {
  28. fmt.Println(element.Middlewares)
  29. element.Handler(w, r, items)
  30. }
  31. }
  32. }
  33. //PatternURL coloca barra no final de url se não tiver
  34. func patternURL(url string) string {
  35. lastChar := url[len(url)-1:]
  36. if lastChar != "/" {
  37. url = url + "/"
  38. }
  39. return url
  40. }
  41. //ToRegex converte uma expressao imputada em expressão do go
  42. func toRegex(regex string) *regexp.Regexp {
  43. return regexp.MustCompile(`(?m)` + regex)
  44. }
  45. //RegexSubmatch cria os matches aplicando a padrão de regex inputado
  46. func regexSubmatch(pattern *regexp.Regexp, str string) []string {
  47. data := []string{""}
  48. items := pattern.FindAllStringSubmatch(str, -1)
  49. if len(items) > 0 {
  50. data = items[0]
  51. }
  52. return data
  53. }
  54. //ReplaceStringsURL alterar a url imputada colocando as variaveis da url inserida
  55. func replaceStringsURL(items []string, urlPattern string) string {
  56. for index, element := range items {
  57. urlPattern = strings.Replace(urlPattern, "$"+strconv.Itoa(index), element, -1)
  58. }
  59. return urlPattern
  60. }