2012-12-17 05:53:03 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2013-04-05 15:50:53 +00:00
|
|
|
"github.com/astaxie/beego/session"
|
2013-01-06 02:15:08 +00:00
|
|
|
"html/template"
|
2013-01-10 12:22:00 +00:00
|
|
|
"net"
|
2012-12-17 05:53:03 +00:00
|
|
|
"net/http"
|
2013-01-10 12:22:00 +00:00
|
|
|
"net/http/fcgi"
|
2012-12-17 05:53:03 +00:00
|
|
|
"os"
|
|
|
|
"path"
|
2013-04-11 03:17:18 +00:00
|
|
|
"runtime"
|
2013-01-01 15:11:15 +00:00
|
|
|
"strconv"
|
2012-12-17 05:53:03 +00:00
|
|
|
)
|
|
|
|
|
2013-04-09 16:27:53 +00:00
|
|
|
const VERSION = "0.5.0"
|
2013-03-13 16:14:09 +00:00
|
|
|
|
2012-12-17 05:53:03 +00:00
|
|
|
var (
|
2013-01-06 02:15:08 +00:00
|
|
|
BeeApp *App
|
|
|
|
AppName string
|
|
|
|
AppPath string
|
|
|
|
StaticDir map[string]string
|
|
|
|
TemplateCache map[string]*template.Template
|
|
|
|
HttpAddr string
|
|
|
|
HttpPort int
|
|
|
|
RecoverPanic bool
|
|
|
|
AutoRender bool
|
|
|
|
PprofOn bool
|
|
|
|
ViewsPath string
|
|
|
|
RunMode string //"dev" or "prod"
|
|
|
|
AppConfig *Config
|
2013-01-01 15:11:15 +00:00
|
|
|
//related to session
|
|
|
|
SessionOn bool // wheather auto start session,default is false
|
2013-04-05 15:50:53 +00:00
|
|
|
SessionProvider string // default session provider memory mysql redis
|
2013-01-01 15:11:15 +00:00
|
|
|
SessionName string // sessionName cookie's name
|
|
|
|
SessionGCMaxLifetime int64 // session's gc maxlifetime
|
2013-04-05 15:50:53 +00:00
|
|
|
SessionSavePath string // session savepath if use mysql/redis/file this set to the connectinfo
|
2013-01-10 12:22:00 +00:00
|
|
|
UseFcgi bool
|
2013-04-09 13:49:17 +00:00
|
|
|
MaxMemory int64
|
2013-01-01 15:11:15 +00:00
|
|
|
|
|
|
|
GlobalSessions *session.Manager //GlobalSessions
|
2012-12-17 05:53:03 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2013-04-12 05:58:08 +00:00
|
|
|
os.Chdir(path.Dir(os.Args[0]))
|
2012-12-17 05:53:03 +00:00
|
|
|
BeeApp = NewApp()
|
|
|
|
AppPath, _ = os.Getwd()
|
|
|
|
StaticDir = make(map[string]string)
|
2013-01-06 02:15:08 +00:00
|
|
|
TemplateCache = make(map[string]*template.Template)
|
2012-12-17 05:53:03 +00:00
|
|
|
var err error
|
|
|
|
AppConfig, err = LoadConfig(path.Join(AppPath, "conf", "app.conf"))
|
|
|
|
if err != nil {
|
|
|
|
//Trace("open Config err:", err)
|
|
|
|
HttpAddr = ""
|
|
|
|
HttpPort = 8080
|
|
|
|
AppName = "beego"
|
2013-04-11 03:07:32 +00:00
|
|
|
RunMode = "dev" //default runmod
|
2012-12-17 05:53:03 +00:00
|
|
|
AutoRender = true
|
|
|
|
RecoverPanic = true
|
2012-12-27 14:27:26 +00:00
|
|
|
PprofOn = false
|
2012-12-17 05:53:03 +00:00
|
|
|
ViewsPath = "views"
|
2013-01-01 15:11:15 +00:00
|
|
|
SessionOn = false
|
|
|
|
SessionProvider = "memory"
|
|
|
|
SessionName = "beegosessionID"
|
|
|
|
SessionGCMaxLifetime = 3600
|
2013-04-05 15:50:53 +00:00
|
|
|
SessionSavePath = ""
|
2013-01-10 12:22:00 +00:00
|
|
|
UseFcgi = false
|
2013-04-09 13:49:17 +00:00
|
|
|
MaxMemory = 1 << 26 //64MB
|
2012-12-17 05:53:03 +00:00
|
|
|
} else {
|
|
|
|
HttpAddr = AppConfig.String("httpaddr")
|
|
|
|
if v, err := AppConfig.Int("httpport"); err != nil {
|
|
|
|
HttpPort = 8080
|
|
|
|
} else {
|
|
|
|
HttpPort = v
|
|
|
|
}
|
2013-04-09 13:49:17 +00:00
|
|
|
if v, err := AppConfig.Int64("maxmemory"); err != nil {
|
|
|
|
MaxMemory = 1 << 26
|
|
|
|
} else {
|
|
|
|
MaxMemory = v
|
|
|
|
}
|
2012-12-17 05:53:03 +00:00
|
|
|
AppName = AppConfig.String("appname")
|
|
|
|
if runmode := AppConfig.String("runmode"); runmode != "" {
|
|
|
|
RunMode = runmode
|
|
|
|
} else {
|
2013-04-11 03:07:32 +00:00
|
|
|
RunMode = "dev"
|
2012-12-17 05:53:03 +00:00
|
|
|
}
|
|
|
|
if ar, err := AppConfig.Bool("autorender"); err != nil {
|
|
|
|
AutoRender = true
|
|
|
|
} else {
|
|
|
|
AutoRender = ar
|
|
|
|
}
|
|
|
|
if ar, err := AppConfig.Bool("autorecover"); err != nil {
|
|
|
|
RecoverPanic = true
|
|
|
|
} else {
|
|
|
|
RecoverPanic = ar
|
|
|
|
}
|
2012-12-27 14:27:26 +00:00
|
|
|
if ar, err := AppConfig.Bool("pprofon"); err != nil {
|
|
|
|
PprofOn = false
|
|
|
|
} else {
|
|
|
|
PprofOn = ar
|
|
|
|
}
|
2012-12-17 05:53:03 +00:00
|
|
|
if views := AppConfig.String("viewspath"); views == "" {
|
|
|
|
ViewsPath = "views"
|
|
|
|
} else {
|
|
|
|
ViewsPath = views
|
|
|
|
}
|
2013-01-01 15:11:15 +00:00
|
|
|
if ar, err := AppConfig.Bool("sessionon"); err != nil {
|
|
|
|
SessionOn = false
|
|
|
|
} else {
|
|
|
|
SessionOn = ar
|
|
|
|
}
|
|
|
|
if ar := AppConfig.String("sessionprovider"); ar == "" {
|
|
|
|
SessionProvider = "memory"
|
|
|
|
} else {
|
|
|
|
SessionProvider = ar
|
|
|
|
}
|
|
|
|
if ar := AppConfig.String("sessionname"); ar == "" {
|
|
|
|
SessionName = "beegosessionID"
|
|
|
|
} else {
|
|
|
|
SessionName = ar
|
|
|
|
}
|
2013-04-05 15:50:53 +00:00
|
|
|
if ar := AppConfig.String("sessionsavepath"); ar == "" {
|
|
|
|
SessionSavePath = ""
|
|
|
|
} else {
|
|
|
|
SessionSavePath = ar
|
|
|
|
}
|
2013-04-18 01:42:42 +00:00
|
|
|
if ar, err := AppConfig.Int("sessiongcmaxlifetime"); err == nil && ar != 0 {
|
2013-01-01 15:11:15 +00:00
|
|
|
int64val, _ := strconv.ParseInt(strconv.Itoa(ar), 10, 64)
|
|
|
|
SessionGCMaxLifetime = int64val
|
|
|
|
} else {
|
|
|
|
SessionGCMaxLifetime = 3600
|
|
|
|
}
|
2013-01-10 12:22:00 +00:00
|
|
|
if ar, err := AppConfig.Bool("usefcgi"); err != nil {
|
|
|
|
UseFcgi = false
|
|
|
|
} else {
|
|
|
|
UseFcgi = ar
|
|
|
|
}
|
2012-12-17 05:53:03 +00:00
|
|
|
}
|
|
|
|
StaticDir["/static"] = "static"
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
type App struct {
|
|
|
|
Handlers *ControllerRegistor
|
|
|
|
}
|
|
|
|
|
|
|
|
// New returns a new PatternServeMux.
|
|
|
|
func NewApp() *App {
|
|
|
|
cr := NewControllerRegistor()
|
|
|
|
app := &App{Handlers: cr}
|
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) Run() {
|
|
|
|
addr := fmt.Sprintf("%s:%d", HttpAddr, HttpPort)
|
2013-01-10 12:22:00 +00:00
|
|
|
var err error
|
|
|
|
if UseFcgi {
|
|
|
|
l, e := net.Listen("tcp", addr)
|
|
|
|
if e != nil {
|
|
|
|
BeeLogger.Fatal("Listen: ", e)
|
|
|
|
}
|
|
|
|
err = fcgi.Serve(l, app.Handlers)
|
|
|
|
} else {
|
|
|
|
err = http.ListenAndServe(addr, app.Handlers)
|
|
|
|
}
|
2012-12-17 05:53:03 +00:00
|
|
|
if err != nil {
|
|
|
|
BeeLogger.Fatal("ListenAndServe: ", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-03 15:37:59 +00:00
|
|
|
func (app *App) Router(path string, c ControllerInterface) *App {
|
2012-12-17 05:53:03 +00:00
|
|
|
app.Handlers.Add(path, c)
|
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) Filter(filter http.HandlerFunc) *App {
|
|
|
|
app.Handlers.Filter(filter)
|
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) FilterParam(param string, filter http.HandlerFunc) *App {
|
|
|
|
app.Handlers.FilterParam(param, filter)
|
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) FilterPrefixPath(path string, filter http.HandlerFunc) *App {
|
2013-03-01 05:32:23 +00:00
|
|
|
app.Handlers.FilterPrefixPath(path, filter)
|
2012-12-17 05:53:03 +00:00
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) SetViewsPath(path string) *App {
|
|
|
|
ViewsPath = path
|
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) SetStaticPath(url string, path string) *App {
|
|
|
|
StaticDir[url] = path
|
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) ErrorLog(ctx *Context) {
|
|
|
|
BeeLogger.Printf("[ERR] host: '%s', request: '%s %s', proto: '%s', ua: '%s', remote: '%s'\n", ctx.Request.Host, ctx.Request.Method, ctx.Request.URL.Path, ctx.Request.Proto, ctx.Request.UserAgent(), ctx.Request.RemoteAddr)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (app *App) AccessLog(ctx *Context) {
|
2013-04-16 13:35:55 +00:00
|
|
|
BeeLogger.Printf("[ACC] host: '%s', request: '%s %s', proto: '%s', ua: '%s', remote: '%s'\n", ctx.Request.Host, ctx.Request.Method, ctx.Request.URL.Path, ctx.Request.Proto, ctx.Request.UserAgent(), ctx.Request.RemoteAddr)
|
2012-12-17 05:53:03 +00:00
|
|
|
}
|
2012-12-17 14:15:21 +00:00
|
|
|
|
|
|
|
func RegisterController(path string, c ControllerInterface) *App {
|
2013-04-03 15:37:59 +00:00
|
|
|
BeeApp.Router(path, c)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
func Router(path string, c ControllerInterface) *App {
|
|
|
|
BeeApp.Router(path, c)
|
2012-12-17 14:15:21 +00:00
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
2013-04-07 16:28:32 +00:00
|
|
|
func RouterHandler(path string, c http.Handler) *App {
|
|
|
|
BeeApp.Handlers.AddHandler(path, c)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
2012-12-17 14:15:21 +00:00
|
|
|
func Filter(filter http.HandlerFunc) *App {
|
|
|
|
BeeApp.Filter(filter)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
func FilterParam(param string, filter http.HandlerFunc) *App {
|
|
|
|
BeeApp.FilterParam(param, filter)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
func FilterPrefixPath(path string, filter http.HandlerFunc) *App {
|
2013-03-01 05:32:23 +00:00
|
|
|
BeeApp.FilterPrefixPath(path, filter)
|
2012-12-17 14:15:21 +00:00
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
func Run() {
|
2012-12-27 14:27:26 +00:00
|
|
|
if PprofOn {
|
2013-04-03 15:37:59 +00:00
|
|
|
BeeApp.Router(`/debug/pprof`, &ProfController{})
|
|
|
|
BeeApp.Router(`/debug/pprof/:pp([\w]+)`, &ProfController{})
|
2012-12-27 14:27:26 +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-03-21 13:55:54 +00:00
|
|
|
err := BuildTemplate(ViewsPath)
|
|
|
|
if err != nil {
|
2013-04-11 03:07:32 +00:00
|
|
|
if RunMode == "dev" {
|
|
|
|
Warn(err)
|
|
|
|
}
|
2013-03-21 13:55:54 +00:00
|
|
|
}
|
2013-04-11 03:17:18 +00:00
|
|
|
runtime.GOMAXPROCS(runtime.NumCPU())
|
2012-12-17 14:15:21 +00:00
|
|
|
BeeApp.Run()
|
|
|
|
}
|