Bez popisu

main.go 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. package router
  2. import (
  3. "fmt"
  4. "net/http"
  5. )
  6. type route struct {
  7. Pattern string
  8. Handler http.Handler
  9. }
  10. //Routes array of route
  11. type Routes []route
  12. //Add adicionar rota em routes
  13. func (Routes) Add(pattern string, test string) {
  14. fmt.Print(pattern)
  15. // append(routes, route{
  16. // pattern,
  17. // handler,
  18. // })
  19. }
  20. // func findURLMatch(data urls, url string) string {
  21. // for _, element := range data {
  22. // when := element.When
  23. // pattern := toRegex(when)
  24. // items := regexSubmatch(pattern, url)
  25. // if items[0] == url {
  26. // urlProxy := replaceStringsURL(items, element.To)
  27. // return urlProxy
  28. // }
  29. // }
  30. // return ""
  31. // }
  32. // func readFile(filePath string) urls {
  33. // file, err1 := ioutil.ReadFile(filePath)
  34. // if err1 != nil {
  35. // fmt.Printf("Error while reading file %s\n", filePath)
  36. // fmt.Printf("File error: %v\n", err1)
  37. // os.Exit(1)
  38. // }
  39. // var urls []urlObject
  40. // err2 := json.Unmarshal(file, &urls)
  41. // if err2 != nil {
  42. // fmt.Println("error:", err2)
  43. // os.Exit(1)
  44. // }
  45. // return urls
  46. // }
  47. // //PatternURL coloca barra no final de url se não tiver
  48. // func patternURL(url string) string {
  49. // lastChar := url[len(url)-1:]
  50. // if lastChar != "/" {
  51. // url = url + "/"
  52. // }
  53. // return url
  54. // }
  55. // //ToRegex converte uma expressao imputada em expressão do go
  56. // func toRegex(regex string) *regexp.Regexp {
  57. // return regexp.MustCompile(`(?m)` + regex)
  58. // }
  59. // //RegexSubmatch cria os matches aplicando a padrão de regex inputado
  60. // func regexSubmatch(pattern *regexp.Regexp, str string) []string {
  61. // data := []string{""}
  62. // items := pattern.FindAllStringSubmatch(str, -1)
  63. // if len(items) > 0 {
  64. // data = items[0]
  65. // }
  66. // return data
  67. // }
  68. // //ReplaceStringsURL alterar a url imputada colocando as variaveis da url inserida
  69. // func replaceStringsURL(items []string, urlPattern string) string {
  70. // for index, element := range items {
  71. // urlPattern = strings.Replace(urlPattern, "$"+strconv.Itoa(index), element, -1)
  72. // }
  73. // return urlPattern
  74. // }