Browse Source

Boototstraping

William Wiechorek 6 years ago
parent
commit
adef7b6f36
4 changed files with 96 additions and 0 deletions
  1. BIN
      build
  2. 91 0
      core/router/main.go
  3. 2 0
      exec.sh
  4. 3 0
      main.go

BIN
build


+ 91 - 0
core/router/main.go

@@ -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
+// }

+ 2 - 0
exec.sh

@@ -0,0 +1,2 @@
1
+go build -o build
2
+./build

+ 3 - 0
main.go

@@ -10,6 +10,9 @@ import (
10 10
 
11 11
 func main() {
12 12
 	http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
13
+		Routes.add("Url", func() {
14
+			fmt.Println("Test")
15
+		})
13 16
 		fmt.Fprintf(w, "Hello, %q", html.EscapeString(r.URL.Path))
14 17
 	})
15 18