-
Notifications
You must be signed in to change notification settings - Fork 1
/
goat.go
229 lines (189 loc) · 5.4 KB
/
goat.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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
/****************************************************************************
* Copyright (c) 2013, Scott Ferguson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the software nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY SCOTT FERGUSON ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL SCOTT FERGUSON BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
****************************************************************************/
package goat
import (
"encoding/gob"
"github.com/gorilla/mux"
"github.com/gorilla/sessions"
"labix.org/v2/mgo"
"labix.org/v2/mgo/bson"
"net"
"net/http"
"net/url"
"strconv"
)
const (
GET = 1 << 0
POST = 1 << 1
PUT = 1 << 2
DELETE = 1 << 3
methodGet = "GET"
methodPost = "POST"
methodPut = "PUT"
methodDelete = "DELETE"
)
type Config struct {
Spdy bool
}
type Goat struct {
Router *mux.Router
Config Config
routes map[string]*route
middleware []Middleware
dbsession *mgo.Session
dbname string
sessionstore sessions.Store
listener *net.TCPListener
servemux *http.ServeMux
}
type Handler func(http.ResponseWriter, *http.Request, *Context) error
type route struct {
*Goat
path string
name string
handler Handler
interceptor Interceptor
}
func (r route) ServeHTTP(w http.ResponseWriter, req *http.Request) {
var c *Context
var err error
if c, err = NewContext(); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
defer c.Close()
// Execute Middleware
for _, m := range r.middleware {
m(req, c)
}
// Execute the handler
if r.handler != nil {
err = r.handler(w, req, c)
} else if r.interceptor != nil {
rh := r.interceptor(w, req, c)
err = rh(w, req, c)
}
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
}
}
func methodList(methods int) (r []string) {
if methods&GET == GET {
r = append(r, methodGet)
}
if methods&POST == POST {
r = append(r, methodPost)
}
if methods&PUT == PUT {
r = append(r, methodPut)
}
if methods&DELETE == DELETE {
r = append(r, methodDelete)
}
return
}
func New(c *Config) *Goat {
// Initialize session store
gob.Register(bson.ObjectId(""))
s := sessions.NewCookieStore([]byte("sevenbyelevensecretbomberboy"))
r := mux.NewRouter()
mx := http.NewServeMux()
mx.Handle("/", r)
result := &Goat{
Router: r,
sessionstore: s,
routes: make(map[string]*route),
servemux: mx,
}
if c != nil {
result.Config = *c
}
return result
}
func (g *Goat) RegisterRoute(path, name string, method int, handler interface{}) {
// Initialize the HTTP router
r := new(route)
r.Goat = g
r.path = path
r.name = name
if g.routes[r.name] != nil {
return
}
g.routes[r.name] = r
if h, ok := handler.(func(http.ResponseWriter, *http.Request, *Context) error); ok {
r.handler = h
} else if h, ok := handler.(Handler); ok {
r.handler = h
} else if i, ok := handler.(Interceptor); ok {
r.interceptor = i
} else if h, ok := handler.(http.Handler); ok {
g.Router.Handle(path, h)
return
} else {
panic("Unknown handler passed to RegisterRoute")
}
methods := methodList(method)
g.Router.Handle(path, r).Methods(methods...).Name(r.name)
}
func (g *Goat) CopyDB() *mgo.Database {
return g.dbsession.Copy().DB(g.dbname)
}
func (g *Goat) CloneDB() *mgo.Database {
return g.dbsession.Clone().DB(g.dbname)
}
func (g *Goat) RegisterStaticFileHandler(remote, local string) {
// Static file handler
g.servemux.Handle(remote, http.FileServer(http.Dir(local)))
}
func (g *Goat) RegisterMiddleware(m Middleware) {
g.middleware = append(g.middleware, m)
}
func (g *Goat) Reverse(root string, params ...string) (*url.URL, error) {
return g.Router.Get(root).URL(params...)
}
func (g *Goat) ListenAndServe(port string) error {
p := 8080
if port != "" {
p, _ = strconv.Atoi(port)
}
server := &http.Server{
Handler: g.servemux,
}
g.listener, _ = net.ListenTCP("tcp", &net.TCPAddr{
Port: p,
})
return server.Serve(g.listener)
}
func (g *Goat) ListenAndServeTLS(cert, key, addr string) error {
server := &http.Server{
Addr: addr,
Handler: g.servemux,
}
return server.ListenAndServeTLS(cert, key)
}
func (g *Goat) Close() {
g.listener.Close()
}