2012-12-17 05:53:03 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
2013-04-05 15:50:53 +00:00
|
|
|
"github.com/astaxie/beego/session"
|
2012-12-17 05:53:03 +00:00
|
|
|
"net/http"
|
|
|
|
"path"
|
|
|
|
)
|
|
|
|
|
2013-08-14 02:53:11 +00:00
|
|
|
const VERSION = "0.9.0"
|
2013-03-13 16:14:09 +00:00
|
|
|
|
2013-07-25 07:50:16 +00:00
|
|
|
func Router(rootpath string, c ControllerInterface, mappingMethods ...string) *App {
|
|
|
|
BeeApp.Router(rootpath, c, mappingMethods...)
|
2013-07-08 10:35:10 +00:00
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
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-07-27 02:25:14 +00:00
|
|
|
func AutoRouter(c ControllerInterface) *App {
|
|
|
|
BeeApp.AutoRouter(c)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
2013-05-06 16:17:25 +00:00
|
|
|
func Errorhandler(err string, h http.HandlerFunc) *App {
|
|
|
|
ErrorMaps[err] = h
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
2013-04-14 15:20:38 +00:00
|
|
|
func SetViewsPath(path string) *App {
|
|
|
|
BeeApp.SetViewsPath(path)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
func SetStaticPath(url string, path string) *App {
|
|
|
|
StaticDir[url] = path
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
2013-06-25 10:49:08 +00:00
|
|
|
func DelStaticPath(url string) *App {
|
|
|
|
delete(StaticDir, url)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
2013-09-09 16:00:11 +00:00
|
|
|
//action has four values:
|
|
|
|
//BeforRouter
|
|
|
|
//AfterStatic
|
|
|
|
//BeforExec
|
|
|
|
//AfterExec
|
|
|
|
func AddFilter(pattern, action string, filter FilterFunc) *App {
|
|
|
|
BeeApp.Filter(pattern, action, filter)
|
2013-08-11 16:14:42 +00:00
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
2012-12-17 14:15:21 +00:00
|
|
|
func Run() {
|
2013-09-09 16:00:11 +00:00
|
|
|
//if AppConfigPath not In the conf/app.conf reParse config
|
2013-05-07 15:16:56 +00:00
|
|
|
if AppConfigPath != path.Join(AppPath, "conf", "app.conf") {
|
|
|
|
err := ParseConfig()
|
|
|
|
if err != nil {
|
|
|
|
if RunMode == "dev" {
|
|
|
|
Warn(err)
|
|
|
|
}
|
2013-05-05 15:03:59 +00:00
|
|
|
}
|
|
|
|
}
|
2013-09-09 16:00:11 +00:00
|
|
|
|
2013-01-01 15:11:15 +00:00
|
|
|
if SessionOn {
|
2013-04-05 15:50:53 +00:00
|
|
|
GlobalSessions, _ = session.NewManager(SessionProvider, SessionName, SessionGCMaxLifetime, SessionSavePath)
|
2013-01-01 15:11:15 +00:00
|
|
|
go GlobalSessions.GC()
|
|
|
|
}
|
2013-09-09 16:00:11 +00:00
|
|
|
|
|
|
|
if AutoRender {
|
|
|
|
err := BuildTemplate(ViewsPath)
|
|
|
|
if err != nil {
|
|
|
|
if RunMode == "dev" {
|
|
|
|
Warn(err)
|
|
|
|
}
|
2013-04-11 03:07:32 +00:00
|
|
|
}
|
2013-03-21 13:55:54 +00:00
|
|
|
}
|
2013-05-06 16:17:25 +00:00
|
|
|
registerErrorHander()
|
2012-12-17 14:15:21 +00:00
|
|
|
BeeApp.Run()
|
|
|
|
}
|