RESTful api framework of golang.
It's heavily inspired from neko which created by RocWong.
$ go get github.com/dolab/gogo
- Create application using scaffold tools
$ go get github.com/dolab/gogo/gogo
# show gogo helps
$ gogo -h
# create a new application
$ gogo new myapp
# fix application import path
$ cd myapp
$ source env.sh
# run development server
$ make godev
# run test
$ make
- Create application from skeleton
DEPRECATED!!! Please using scaffold way.
$ cp -r $GOPATH/src/github.com/dolab/gogo/skeleton myapp
# fix application import path
$ cd myapp
$ source fix.sh
$ source env.sh
# run development server
$ make godev
- Normal
package main
import (
"github.com/dolab/gogo"
)
func main() {
app := gogo.New("development", "/path/to/your/config")
// GET /
app.GET("/", func(ctx *gogo.Context) {
ctx.Text("Hello, gogo!")
})
app.Run()
}
- Using middlewares
package main
import (
"github.com/dolab/gogo"
)
func main() {
app := gogo.New("development", "/path/to/your/config")
app.Use(func(ctx *gogo.Context) {
if panicErr := recover(); panicErr != nil {
ctx.Abort()
ctx.Logger.Errorf("[PANICED] %v", panicErr)
return
}
ctx.Next()
})
// GET /
app.GET("/", func(ctx *gogo.Context) {
panic("Oops ~ ~ ~")
})
app.Run()
}
- Using group
package main
import (
"encoding/base64"
"net/http"
"strings"
"github.com/dolab/gogo"
)
func main() {
app := gogo.New("development", "/path/to/your/config")
app.Use(func(ctx *gogo.Context) {
if panicErr := recover(); panicErr != nil {
ctx.Abort()
ctx.Logger.Errorf("[PANICED] %v", panicErr)
}
ctx.Next()
})
// GET /
app.GET("/", func(ctx *gogo.Context) {
panic("Oops ~ ~ ~")
})
// prefix resources with /v1 and apply basic auth middleware for all sub-resources
v1 := app.Group("/v1", func(ctx *gogo.Context) {
auth := ctx.Header("Authorization")
if !strings.HasPrefix(auth, "Basic ") {
ctx.Abort()
ctx.WriteHeader(http.StatusForbidden)
ctx.Return()
return
}
b, err := base64.StdEncoding.DecodeString(strings.TrimPrefix(auth, "Basic "))
if err != nil {
ctx.Logger.Errorf("Base64 decode error: %v", err)
ctx.Abort()
ctx.WriteHeader(http.StatusForbidden)
ctx.Return()
return
}
tmp := strings.SplitN(string(b), ":", 2)
if len(tmp) != 2 || tmp[0] != "gogo" || tmp[1] != "ogog" {
ctx.Abort()
ctx.WriteHeader(http.StatusForbidden)
ctx.Return()
return
}
// settings which can used by following middlewares and handler
ctx.Set("username", tmp[0])
ctx.Next()
})
// GET /v1
v1.GET("/", func(ctx *gogo.Context) {
username := ctx.MustGet("username").(string)
ctx.Text("Hello, " + username + "!")
})
app.Run()
}
- server config context
- scoffold && generator
- mountable third-part app
The MIT License (MIT)
Copyright (c) 2016
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.