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