about summary refs log tree commit diff
path: root/eg/base.go
blob: 4f4aa353c426f86de927ab0eec2701a3cfdb61bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
package main

import (
	"github.com/franckcuny/mooh"
	"net/http"
)

func TestId(req *mooh.Request) (mooh.Response, error) {
	r := mooh.Response{
		Status:  200,
		Content: "id",
	}
	return r, nil
}

func TestIdFoo(req *mooh.Request) (mooh.Response, error) {
	r := mooh.Response{
		Status:  200,
		Content: "foo",
	}
	return r, nil
}

func Test(req *mooh.Request) (mooh.Response, error) {
	resp := mooh.Response{}
	resp.Status = 200
	resp.Content = "duh"
	return resp, nil
}

func TestPut(req *mooh.Request) (mooh.Response, error) {
	resp := mooh.Response{}
	resp.Status = 200
	resp.Content = "ok"
	return resp, nil
}

func main() {
	router := mooh.BuildRouter()

	router.AddRoute(
		&mooh.Route{
			Method: "GET",
			Path:   "/foo/bar/baz",
			Code:   Test,
		},
	)
	router.AddRoute(
		&mooh.Route{
			Method: "PUT",
			Path:   "/foo/bar/baz",
			Code:   TestPut,
		},
	)
	router.AddRoute(
		&mooh.Route{
			Method: "GET",
			Path:   "/test/:id",
			Code:   TestId,
		},
	)
	router.AddRoute(
		&mooh.Route{
			Method: "GET",
			Path:   "/test/:id/foo",
			Code:   TestIdFoo,
		},
	)

	http.ListenAndServe(":8080", &router)
}