Beego/beego.go

413 lines
11 KiB
Go
Raw Normal View History

2014-04-12 05:18:18 +00:00
// Beego (http://beego.me/)
2014-07-03 15:40:21 +00:00
//
2014-04-12 05:18:18 +00:00
// @description beego is an open-source, high-performance web framework for the Go programming language.
2014-07-03 15:40:21 +00:00
//
2014-04-12 05:18:18 +00:00
// @link http://github.com/astaxie/beego for the canonical source repository
2014-07-03 15:40:21 +00:00
//
2014-04-12 05:18:18 +00:00
// @license http://github.com/astaxie/beego/blob/master/LICENSE
2014-07-03 15:40:21 +00:00
//
2014-04-12 05:18:18 +00:00
// @authors astaxie
2012-12-17 05:53:03 +00:00
package beego
import (
"net/http"
"os"
2012-12-17 05:53:03 +00:00
"path"
2013-12-20 03:21:48 +00:00
"path/filepath"
2014-01-05 07:21:50 +00:00
"strconv"
2013-10-28 15:30:16 +00:00
"strings"
2013-12-03 11:26:51 +00:00
"github.com/astaxie/beego/middleware"
"github.com/astaxie/beego/session"
2012-12-17 05:53:03 +00:00
)
2013-12-20 11:36:54 +00:00
// beego web framework version.
const VERSION = "1.4.0"
2013-03-13 16:14:09 +00:00
type hookfunc func() error //hook function to run
var hooks []hookfunc //hook function slice to store the hookfunc
type groupRouter struct {
pattern string
controller ControllerInterface
mappingMethods string
}
// RouterGroups which will store routers
type GroupRouters []groupRouter
// Get a new GroupRouters
func NewGroupRouters() GroupRouters {
return make(GroupRouters, 0)
}
// Add Router in the GroupRouters
// it is for plugin or module to register router
func (gr *GroupRouters) AddRouter(pattern string, c ControllerInterface, mappingMethod ...string) {
var newRG groupRouter
if len(mappingMethod) > 0 {
newRG = groupRouter{
pattern,
c,
mappingMethod[0],
}
} else {
newRG = groupRouter{
pattern,
c,
"",
}
}
*gr = append(*gr, newRG)
}
func (gr *GroupRouters) AddAuto(c ControllerInterface) {
2014-01-01 09:57:57 +00:00
newRG := groupRouter{
"",
c,
"",
}
*gr = append(*gr, newRG)
2014-01-01 09:57:57 +00:00
}
// AddGroupRouter with the prefix
// it will register the router in BeeApp
// the follow code is write in modules:
// GR:=NewGroupRouters()
// GR.AddRouter("/login",&UserController,"get:Login")
// GR.AddRouter("/logout",&UserController,"get:Logout")
// GR.AddRouter("/register",&UserController,"get:Reg")
// the follow code is write in app:
// import "github.com/beego/modules/auth"
// AddRouterGroup("/admin", auth.GR)
func AddGroupRouter(prefix string, groups GroupRouters) *App {
for _, v := range groups {
2014-01-01 09:57:57 +00:00
if v.pattern == "" {
BeeApp.Handlers.AddAutoPrefix(prefix, v.controller)
2014-01-01 09:57:57 +00:00
} else if v.mappingMethods != "" {
BeeApp.Handlers.Add(prefix+v.pattern, v.controller, v.mappingMethods)
} else {
BeeApp.Handlers.Add(prefix+v.pattern, v.controller)
}
}
return BeeApp
}
2013-12-20 11:36:54 +00:00
// Router adds a patterned controller handler to BeeApp.
// it's an alias method of App.Router.
// usage:
// simple router
// beego.Router("/admin", &admin.UserController{})
// beego.Router("/admin/index", &admin.ArticleController{})
//
// regex router
//
2014-06-08 12:24:01 +00:00
// beego.Router("/api/:id([0-9]+)", &controllers.RController{})
//
// custom rules
// beego.Router("/api/list",&RestController{},"*:ListFood")
// beego.Router("/api/create",&RestController{},"post:CreateFood")
// beego.Router("/api/update",&RestController{},"put:UpdateFood")
// beego.Router("/api/delete",&RestController{},"delete:DeleteFood")
2013-07-25 07:50:16 +00:00
func Router(rootpath string, c ControllerInterface, mappingMethods ...string) *App {
BeeApp.Handlers.Add(rootpath, c, mappingMethods...)
2013-07-08 10:35:10 +00:00
return BeeApp
}
2014-06-08 12:24:01 +00:00
// Router add list from
// usage:
// beego.Include(&BankAccount{}, &OrderController{},&RefundController{},&ReceiptController{})
// type BankAccount struct{
// beego.Controller
// }
//
// register the function
// func (b *BankAccount)Mapping(){
// b.Mapping("ShowAccount" , b.ShowAccount)
// b.Mapping("ModifyAccount", b.ModifyAccount)
//}
//
// //@router /account/:id [get]
// func (b *BankAccount) ShowAccount(){
// //logic
// }
//
//
// //@router /account/:id [post]
// func (b *BankAccount) ModifyAccount(){
// //logic
// }
//
// the comments @router url methodlist
// url support all the function Router's pattern
// methodlist [get post head put delete options *]
func Include(cList ...ControllerInterface) *App {
BeeApp.Handlers.Include(cList...)
return BeeApp
}
2013-12-20 11:36:54 +00:00
// RESTRouter adds a restful controller handler to BeeApp.
// its' controller implements beego.ControllerInterface and
// defines a param "pattern/:objectId" to visit each resource.
2013-07-08 10:35:10 +00:00
func RESTRouter(rootpath string, c ControllerInterface) *App {
Router(rootpath, c)
Router(path.Join(rootpath, ":objectId"), c)
2012-12-17 14:15:21 +00:00
return BeeApp
}
2013-12-20 11:36:54 +00:00
// AutoRouter adds defined controller handler to BeeApp.
// it's same to App.AutoRouter.
// if beego.AddAuto(&MainContorlller{}) and MainController has methods List and Page,
// visit the url /main/list to exec List function or /main/page to exec Page function.
2013-07-27 02:25:14 +00:00
func AutoRouter(c ControllerInterface) *App {
BeeApp.Handlers.AddAuto(c)
2013-07-27 02:25:14 +00:00
return BeeApp
}
2014-01-01 09:57:57 +00:00
// AutoPrefix adds controller handler to BeeApp with prefix.
// it's same to App.AutoRouterWithPrefix.
// if beego.AutoPrefix("/admin",&MainContorlller{}) and MainController has methods List and Page,
// visit the url /admin/main/list to exec List function or /admin/main/page to exec Page function.
2014-01-01 09:57:57 +00:00
func AutoPrefix(prefix string, c ControllerInterface) *App {
BeeApp.Handlers.AddAutoPrefix(prefix, c)
2014-01-01 09:57:57 +00:00
return BeeApp
}
// register router for Get method
// usage:
// beego.Get("/", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Get(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Get(rootpath, f)
return BeeApp
}
// register router for Post method
// usage:
// beego.Post("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Post(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Post(rootpath, f)
return BeeApp
}
// register router for Delete method
// usage:
// beego.Delete("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Delete(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Delete(rootpath, f)
return BeeApp
}
// register router for Put method
// usage:
// beego.Put("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Put(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Put(rootpath, f)
return BeeApp
}
// register router for Head method
// usage:
// beego.Head("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Head(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Head(rootpath, f)
return BeeApp
}
// register router for Options method
// usage:
// beego.Options("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Options(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Options(rootpath, f)
return BeeApp
}
// register router for Patch method
// usage:
// beego.Patch("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Patch(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Patch(rootpath, f)
return BeeApp
}
// register router for all method
// usage:
// beego.Any("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Any(rootpath string, f FilterFunc) *App {
BeeApp.Handlers.Any(rootpath, f)
return BeeApp
}
// register router for own Handler
// usage:
// beego.Handler("/api", func(ctx *context.Context){
// ctx.Output.Body("hello world")
// })
func Handler(rootpath string, h http.Handler, options ...interface{}) *App {
BeeApp.Handlers.Handler(rootpath, h, options...)
return BeeApp
}
2013-12-20 11:36:54 +00:00
// ErrorHandler registers http.HandlerFunc to each http err code string.
// usage:
// beego.ErrorHandler("404",NotFound)
// beego.ErrorHandler("500",InternalServerError)
2013-05-06 16:17:25 +00:00
func Errorhandler(err string, h http.HandlerFunc) *App {
2013-09-11 09:00:39 +00:00
middleware.Errorhandler(err, h)
2013-05-06 16:17:25 +00:00
return BeeApp
}
// SetViewsPath sets view directory path in beego application.
2013-04-14 15:20:38 +00:00
func SetViewsPath(path string) *App {
ViewsPath = path
2013-04-14 15:20:38 +00:00
return BeeApp
}
// SetStaticPath sets static directory path and proper url pattern in beego application.
// if beego.SetStaticPath("static","public"), visit /static/* to load static file in folder "public".
2013-04-14 15:20:38 +00:00
func SetStaticPath(url string, path string) *App {
2013-10-28 15:30:16 +00:00
if !strings.HasPrefix(url, "/") {
url = "/" + url
}
2014-04-07 06:20:30 +00:00
url = strings.TrimRight(url, "/")
2013-04-14 15:20:38 +00:00
StaticDir[url] = path
return BeeApp
}
2013-12-20 11:36:54 +00:00
// DelStaticPath removes the static folder setting in this url pattern in beego application.
func DelStaticPath(url string) *App {
delete(StaticDir, url)
return BeeApp
}
2013-12-20 11:36:54 +00:00
// InsertFilter adds a FilterFunc with pattern condition and action constant.
// The pos means action constant including
// beego.BeforeRouter, beego.AfterStatic, beego.BeforeExec, beego.AfterExec and beego.FinishRouter.
func InsertFilter(pattern string, pos int, filter FilterFunc) *App {
BeeApp.Handlers.InsertFilter(pattern, pos, filter)
2013-12-03 11:26:51 +00:00
return BeeApp
}
// The hookfunc will run in beego.Run()
// such as sessionInit, middlerware start, buildtemplate, admin start
func AddAPPStartHook(hf hookfunc) {
hooks = append(hooks, hf)
}
2013-12-20 11:36:54 +00:00
// Run beego application.
// beego.Run() default run on HttpPort
// beego.Run(":8089")
// beego.Run("127.0.0.1:8089")
func Run(params ...string) {
if len(params) > 0 && params[0] != "" {
strs := strings.Split(params[0], ":")
if len(strs) > 0 && strs[0] != "" {
HttpAddr = strs[0]
}
if len(strs) > 1 && strs[1] != "" {
HttpPort, _ = strconv.Atoi(strs[1])
}
}
initBeforeHttpRun()
if EnableAdmin {
2014-04-05 17:02:10 +00:00
go beeAdminApp.Run()
}
BeeApp.Run()
}
func initBeforeHttpRun() {
2013-12-04 15:53:36 +00:00
// if AppConfigPath not In the conf/app.conf reParse config
2013-12-20 03:21:48 +00:00
if AppConfigPath != filepath.Join(AppPath, "conf", "app.conf") {
2013-12-04 09:03:49 +00:00
err := ParseConfig()
2014-04-04 01:49:55 +00:00
if err != nil && AppConfigPath != filepath.Join(workPath, "conf", "app.conf") {
2013-12-04 15:53:36 +00:00
// configuration is critical to app, panic here if parse failed
panic(err)
2013-12-04 09:03:49 +00:00
}
}
2013-09-09 16:00:11 +00:00
// do hooks function
for _, hk := range hooks {
err := hk()
if err != nil {
panic(err)
}
}
2013-01-01 15:11:15 +00:00
if SessionOn {
var err error
2014-01-05 06:59:39 +00:00
sessionConfig := AppConfig.String("sessionConfig")
if sessionConfig == "" {
2014-01-09 13:37:50 +00:00
sessionConfig = `{"cookieName":"` + SessionName + `",` +
2014-01-05 07:21:50 +00:00
`"gclifetime":` + strconv.FormatInt(SessionGCMaxLifetime, 10) + `,` +
2014-01-09 13:37:50 +00:00
`"providerConfig":"` + SessionSavePath + `",` +
2014-05-20 07:30:17 +00:00
`"secure":` + strconv.FormatBool(EnableHttpTLS) + `,` +
2014-01-09 13:37:50 +00:00
`"sessionIDHashFunc":"` + SessionHashFunc + `",` +
`"sessionIDHashKey":"` + SessionHashKey + `",` +
2014-01-05 07:21:50 +00:00
`"enableSetCookie":` + strconv.FormatBool(SessionAutoSetCookie) + `,` +
2014-08-05 00:55:46 +00:00
`"domain":"` + SessionDomain + `",` +
2014-01-09 13:37:50 +00:00
`"cookieLifeTime":` + strconv.Itoa(SessionCookieLifeTime) + `}`
2014-01-05 06:59:39 +00:00
}
2014-01-10 05:31:08 +00:00
GlobalSessions, err = session.NewManager(SessionProvider,
2014-01-05 06:59:39 +00:00
sessionConfig)
2014-01-09 13:37:50 +00:00
if err != nil {
panic(err)
}
2013-01-01 15:11:15 +00:00
go GlobalSessions.GC()
}
2013-09-09 16:00:11 +00:00
2013-09-19 15:40:55 +00:00
err := BuildTemplate(ViewsPath)
if err != nil {
if RunMode == "dev" {
Warn(err)
}
2013-03-21 13:55:54 +00:00
}
2013-09-11 09:00:39 +00:00
middleware.VERSION = VERSION
middleware.AppName = AppName
middleware.RegisterErrorHandler()
2014-06-10 17:11:32 +00:00
2014-06-16 08:05:15 +00:00
if EnableDocs {
Get("/docs", serverDocs)
2014-06-16 08:05:15 +00:00
Get("/docs/*", serverDocs)
}
//init mime
AddAPPStartHook(initMime)
}
2013-09-11 09:00:39 +00:00
// this function is for test package init
func TestBeegoInit(apppath string) {
AppPath = apppath
2014-06-10 14:47:48 +00:00
RunMode = "test"
AppConfigPath = filepath.Join(AppPath, "conf", "app.conf")
err := ParseConfig()
if err != nil && !os.IsNotExist(err) {
// for init if doesn't have app.conf will not panic
Info(err)
}
os.Chdir(AppPath)
initBeforeHttpRun()
2012-12-17 14:15:21 +00:00
}
func init() {
hooks = make([]hookfunc, 0)
}