-
Notifications
You must be signed in to change notification settings - Fork 26
/
main.go
148 lines (104 loc) · 2.84 KB
/
main.go
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
package main
import (
"log"
"net/http"
"os"
"time"
"github.com/go-playground/lars"
)
// This is a contrived example of how I would use in production
// I would break things into separate files but all here for simplicity
// ApplicationGlobals houses all the application info for use.
type ApplicationGlobals struct {
// DB - some database connection
Log *log.Logger
// Translator - some i18n translator
// JSON - encoder/decoder
// Schema - gorilla schema
// .......
}
func newGlobals() *ApplicationGlobals {
logger := log.New(os.Stdout, "INFO: ", log.Ldate|log.Ltime|log.Lshortfile)
// translator := ...
// db := ... base db connection or info
// json := ...
// schema := ...
return &ApplicationGlobals{
Log: logger,
// Translator: translator,
// DB: db,
// JSON: json,
// schema:schema,
}
}
// MyContext is a custom context
type MyContext struct {
*lars.Ctx // a little embedding
AppContext *ApplicationGlobals
}
func newContext(l *lars.LARS) lars.Context {
return &MyContext{
Ctx: lars.NewContext(l),
AppContext: newGlobals(),
}
}
func castCustomContext(c lars.Context, handler lars.Handler) {
// could do it in all one statement, but in long form for readability
h := handler.(func(*MyContext))
ctx := c.(*MyContext)
h(ctx)
}
func main() {
l := lars.New()
l.RegisterContext(newContext) // all gets cached in pools for you
l.RegisterCustomHandler(func(*MyContext) {}, castCustomContext)
l.Use(Logger)
l.Get("/", Home)
users := l.Group("/users")
users.Get("", Users)
// you can break it up however you with, just demonstrating that you can
// have groups of group
user := users.Group("/:id")
user.Get("", User)
user.Get("/profile", UserProfile)
http.ListenAndServe(":3007", l.Serve())
}
// Home ...
func Home(c *MyContext) {
var username string
// username = c.AppContext.DB.find(user by .....)
c.AppContext.Log.Println("Found User")
c.Response().Write([]byte("Welcome Home " + username))
}
// Users ...
func Users(c *MyContext) {
c.AppContext.Log.Println("In Users Function")
c.Response().Write([]byte("Users"))
}
// User ...
func User(c *MyContext) {
id := c.Param("id")
var username string
// username = c.AppContext.DB.find(user by id.....)
c.AppContext.Log.Println("Found User")
c.Response().Write([]byte("Welcome " + username + " with id " + id))
}
// UserProfile ...
func UserProfile(c *MyContext) {
id := c.Param("id")
var profile string
// profile = c.AppContext.DB.find(user profile by .....)
c.AppContext.Log.Println("Found User Profile")
c.Response().Write([]byte("Here's your profile " + profile + " user " + id))
}
// Logger ...
func Logger(c lars.Context) {
start := time.Now()
c.Next()
stop := time.Now()
path := c.Request().URL.Path
if path == "" {
path = "/"
}
log.Printf("%s %d %s %s", c.Request().Method, c.Response().Status(), path, stop.Sub(start))
}