1
0
mirror of https://github.com/astaxie/beego.git synced 2025-02-16 23:17:06 +00:00
Beego/beego.go

111 lines
2.1 KiB
Go
Raw Normal View History

2012-12-17 13:53:03 +08:00
package beego
import (
"net/http"
"path"
2013-10-28 23:30:16 +08:00
"strings"
2013-12-03 19:26:51 +08:00
"github.com/astaxie/beego/middleware"
"github.com/astaxie/beego/session"
2012-12-17 13:53:03 +08:00
)
2013-09-13 17:45:26 +08:00
const VERSION = "0.9.9"
2013-03-14 00:14:09 +08:00
2013-07-25 15:50:16 +08:00
func Router(rootpath string, c ControllerInterface, mappingMethods ...string) *App {
BeeApp.Router(rootpath, c, mappingMethods...)
2013-07-08 18:35:10 +08:00
return BeeApp
}
func RESTRouter(rootpath string, c ControllerInterface) *App {
Router(rootpath, c)
Router(path.Join(rootpath, ":objectId"), c)
2012-12-17 22:15:21 +08:00
return BeeApp
}
2013-07-27 10:25:14 +08:00
func AutoRouter(c ControllerInterface) *App {
BeeApp.AutoRouter(c)
return BeeApp
}
2013-05-07 00:17:25 +08:00
func Errorhandler(err string, h http.HandlerFunc) *App {
2013-09-11 17:00:39 +08:00
middleware.Errorhandler(err, h)
2013-05-07 00:17:25 +08:00
return BeeApp
}
2013-04-14 23:20:38 +08:00
func SetViewsPath(path string) *App {
BeeApp.SetViewsPath(path)
return BeeApp
}
func SetStaticPath(url string, path string) *App {
2013-10-28 23:30:16 +08:00
if !strings.HasPrefix(url, "/") {
url = "/" + url
}
2013-04-14 23:20:38 +08:00
StaticDir[url] = path
return BeeApp
}
func DelStaticPath(url string) *App {
delete(StaticDir, url)
return BeeApp
}
//!!DEPRECATED!! use InsertFilter
2013-09-10 00:00:11 +08:00
//action has four values:
//BeforRouter
//AfterStatic
//BeforExec
//AfterExec
func AddFilter(pattern, action string, filter FilterFunc) *App {
BeeApp.Filter(pattern, action, filter)
2013-08-12 00:14:42 +08:00
return BeeApp
}
func InsertFilter(pattern string, pos int, filter FilterFunc) *App {
2013-12-03 19:26:51 +08:00
BeeApp.InsertFilter(pattern, pos, filter)
return BeeApp
}
2012-12-17 22:15:21 +08:00
func Run() {
2013-12-04 23:53:36 +08:00
// if AppConfigPath not In the conf/app.conf reParse config
2013-12-04 17:03:49 +08:00
if AppConfigPath != path.Join(AppPath, "conf", "app.conf") {
err := ParseConfig()
if err != nil {
2013-12-04 23:53:36 +08:00
// configuration is critical to app, panic here if parse failed
panic(err)
2013-12-04 17:03:49 +08:00
}
}
2013-09-10 00:00:11 +08:00
2013-12-07 15:16:32 +08:00
//init mime
initMime()
2013-01-01 23:11:15 +08:00
if SessionOn {
GlobalSessions, _ = session.NewManager(SessionProvider,
SessionName,
SessionGCMaxLifetime,
SessionSavePath,
HttpTLS,
SessionHashFunc,
SessionHashKey,
SessionCookieLifeTime)
2013-01-01 23:11:15 +08:00
go GlobalSessions.GC()
}
2013-09-10 00:00:11 +08:00
2013-09-19 23:40:55 +08:00
err := BuildTemplate(ViewsPath)
if err != nil {
if RunMode == "dev" {
Warn(err)
}
2013-03-21 21:55:54 +08:00
}
2013-09-11 17:00:39 +08:00
middleware.VERSION = VERSION
middleware.AppName = AppName
middleware.RegisterErrorHander()
if EnableAdmin {
go BeeAdminApp.Run()
}
2012-12-17 22:15:21 +08:00
BeeApp.Run()
}