2014-08-18 08:41:43 +00:00
|
|
|
// Copyright 2014 beego Author. All Rights Reserved.
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2014-07-03 15:40:21 +00:00
|
|
|
//
|
2014-08-18 08:41:43 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2013-09-09 16:00:11 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"net/http/fcgi"
|
2015-02-27 14:21:58 +00:00
|
|
|
"os"
|
2015-09-06 15:00:42 +00:00
|
|
|
"path"
|
2013-09-09 16:00:11 +00:00
|
|
|
"time"
|
2015-02-27 14:21:58 +00:00
|
|
|
|
2015-05-13 13:17:47 +00:00
|
|
|
"github.com/astaxie/beego/grace"
|
2015-02-27 14:21:58 +00:00
|
|
|
"github.com/astaxie/beego/utils"
|
2013-09-09 16:00:11 +00:00
|
|
|
)
|
|
|
|
|
2015-09-06 15:00:42 +00:00
|
|
|
var (
|
|
|
|
BeeApp *App
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
// create beego application
|
|
|
|
BeeApp = NewApp()
|
|
|
|
}
|
|
|
|
|
2013-12-20 11:20:13 +00:00
|
|
|
// App defines beego application with a new PatternServeMux.
|
2013-09-09 16:00:11 +00:00
|
|
|
type App struct {
|
2015-07-27 00:44:58 +00:00
|
|
|
Handlers *ControllerRegister
|
2014-05-20 09:28:06 +00:00
|
|
|
Server *http.Server
|
2013-09-09 16:00:11 +00:00
|
|
|
}
|
|
|
|
|
2013-12-20 11:20:13 +00:00
|
|
|
// NewApp returns a new beego application.
|
2013-09-09 16:00:11 +00:00
|
|
|
func NewApp() *App {
|
2014-06-10 12:12:57 +00:00
|
|
|
cr := NewControllerRegister()
|
2014-05-20 09:28:06 +00:00
|
|
|
app := &App{Handlers: cr, Server: &http.Server{}}
|
2013-09-09 16:00:11 +00:00
|
|
|
return app
|
|
|
|
}
|
|
|
|
|
2013-12-20 11:20:13 +00:00
|
|
|
// Run beego application.
|
2013-09-09 16:00:11 +00:00
|
|
|
func (app *App) Run() {
|
|
|
|
addr := HttpAddr
|
|
|
|
|
|
|
|
if HttpPort != 0 {
|
|
|
|
addr = fmt.Sprintf("%s:%d", HttpAddr, HttpPort)
|
|
|
|
}
|
2013-11-26 07:30:59 +00:00
|
|
|
|
2013-09-09 16:00:11 +00:00
|
|
|
var (
|
|
|
|
err error
|
|
|
|
l net.Listener
|
|
|
|
)
|
2014-05-20 08:41:39 +00:00
|
|
|
endRunning := make(chan bool, 1)
|
2013-11-26 07:30:59 +00:00
|
|
|
|
2013-09-09 16:00:11 +00:00
|
|
|
if UseFcgi {
|
2014-10-13 11:47:44 +00:00
|
|
|
if UseStdIo {
|
|
|
|
err = fcgi.Serve(nil, app.Handlers) // standard I/O
|
|
|
|
if err == nil {
|
|
|
|
BeeLogger.Info("Use FCGI via standard I/O")
|
|
|
|
} else {
|
|
|
|
BeeLogger.Info("Cannot use FCGI via standard I/O", err)
|
|
|
|
}
|
2013-09-09 16:00:11 +00:00
|
|
|
} else {
|
2014-10-13 11:47:44 +00:00
|
|
|
if HttpPort == 0 {
|
2015-02-27 14:21:58 +00:00
|
|
|
// remove the Socket file before start
|
|
|
|
if utils.FileExists(addr) {
|
|
|
|
os.Remove(addr)
|
|
|
|
}
|
2014-10-13 11:47:44 +00:00
|
|
|
l, err = net.Listen("unix", addr)
|
|
|
|
} else {
|
|
|
|
l, err = net.Listen("tcp", addr)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
BeeLogger.Critical("Listen: ", err)
|
|
|
|
}
|
|
|
|
err = fcgi.Serve(l, app.Handlers)
|
2013-09-09 16:00:11 +00:00
|
|
|
}
|
|
|
|
} else {
|
2015-05-13 13:17:47 +00:00
|
|
|
if Graceful {
|
2015-05-20 03:07:23 +00:00
|
|
|
app.Server.Addr = addr
|
|
|
|
app.Server.Handler = app.Handlers
|
|
|
|
app.Server.ReadTimeout = time.Duration(HttpServerTimeOut) * time.Second
|
|
|
|
app.Server.WriteTimeout = time.Duration(HttpServerTimeOut) * time.Second
|
2015-05-13 13:17:47 +00:00
|
|
|
if EnableHttpTLS {
|
|
|
|
go func() {
|
|
|
|
time.Sleep(20 * time.Microsecond)
|
|
|
|
if HttpsPort != 0 {
|
|
|
|
addr = fmt.Sprintf("%s:%d", HttpAddr, HttpsPort)
|
2015-05-20 03:07:23 +00:00
|
|
|
app.Server.Addr = addr
|
2015-05-13 13:17:47 +00:00
|
|
|
}
|
|
|
|
server := grace.NewServer(addr, app.Handlers)
|
2015-05-20 03:07:23 +00:00
|
|
|
server.Server = app.Server
|
2015-05-13 13:17:47 +00:00
|
|
|
err := server.ListenAndServeTLS(HttpCertFile, HttpKeyFile)
|
2014-11-03 07:06:25 +00:00
|
|
|
if err != nil {
|
2015-05-20 03:09:30 +00:00
|
|
|
BeeLogger.Critical("ListenAndServeTLS: ", err, fmt.Sprintf("%d", os.Getpid()))
|
2014-11-03 07:06:25 +00:00
|
|
|
time.Sleep(100 * time.Microsecond)
|
|
|
|
endRunning <- true
|
|
|
|
}
|
2015-05-13 13:17:47 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
if EnableHttpListen {
|
|
|
|
go func() {
|
|
|
|
server := grace.NewServer(addr, app.Handlers)
|
2015-05-20 03:07:23 +00:00
|
|
|
server.Server = app.Server
|
2015-05-13 13:17:47 +00:00
|
|
|
if ListenTCP4 && HttpAddr == "" {
|
|
|
|
server.Network = "tcp4"
|
|
|
|
}
|
|
|
|
err := server.ListenAndServe()
|
2014-11-03 07:06:25 +00:00
|
|
|
if err != nil {
|
2015-05-20 03:09:30 +00:00
|
|
|
BeeLogger.Critical("ListenAndServe: ", err, fmt.Sprintf("%d", os.Getpid()))
|
2014-11-03 07:06:25 +00:00
|
|
|
time.Sleep(100 * time.Microsecond)
|
|
|
|
endRunning <- true
|
|
|
|
}
|
2015-05-13 13:17:47 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
app.Server.Addr = addr
|
|
|
|
app.Server.Handler = app.Handlers
|
|
|
|
app.Server.ReadTimeout = time.Duration(HttpServerTimeOut) * time.Second
|
|
|
|
app.Server.WriteTimeout = time.Duration(HttpServerTimeOut) * time.Second
|
|
|
|
|
|
|
|
if EnableHttpTLS {
|
|
|
|
go func() {
|
|
|
|
time.Sleep(20 * time.Microsecond)
|
|
|
|
if HttpsPort != 0 {
|
|
|
|
app.Server.Addr = fmt.Sprintf("%s:%d", HttpAddr, HttpsPort)
|
|
|
|
}
|
|
|
|
BeeLogger.Info("https server Running on %s", app.Server.Addr)
|
|
|
|
err := app.Server.ListenAndServeTLS(HttpCertFile, HttpKeyFile)
|
2014-11-03 07:06:25 +00:00
|
|
|
if err != nil {
|
2015-05-13 13:17:47 +00:00
|
|
|
BeeLogger.Critical("ListenAndServeTLS: ", err)
|
2014-11-03 07:06:25 +00:00
|
|
|
time.Sleep(100 * time.Microsecond)
|
|
|
|
endRunning <- true
|
|
|
|
}
|
2015-05-13 13:17:47 +00:00
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
|
|
|
if EnableHttpListen {
|
|
|
|
go func() {
|
|
|
|
app.Server.Addr = addr
|
|
|
|
BeeLogger.Info("http server Running on %s", app.Server.Addr)
|
|
|
|
if ListenTCP4 && HttpAddr == "" {
|
|
|
|
ln, err := net.Listen("tcp4", app.Server.Addr)
|
|
|
|
if err != nil {
|
|
|
|
BeeLogger.Critical("ListenAndServe: ", err)
|
|
|
|
time.Sleep(100 * time.Microsecond)
|
|
|
|
endRunning <- true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err = app.Server.Serve(ln)
|
|
|
|
if err != nil {
|
|
|
|
BeeLogger.Critical("ListenAndServe: ", err)
|
|
|
|
time.Sleep(100 * time.Microsecond)
|
|
|
|
endRunning <- true
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
err := app.Server.ListenAndServe()
|
|
|
|
if err != nil {
|
|
|
|
BeeLogger.Critical("ListenAndServe: ", err)
|
|
|
|
time.Sleep(100 * time.Microsecond)
|
|
|
|
endRunning <- true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2013-09-09 16:00:11 +00:00
|
|
|
}
|
2013-11-26 07:30:59 +00:00
|
|
|
|
2015-05-13 13:17:47 +00:00
|
|
|
}
|
2014-05-20 07:30:17 +00:00
|
|
|
<-endRunning
|
2013-09-09 16:00:11 +00:00
|
|
|
}
|
2015-09-06 15:00:42 +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
|
|
|
|
//
|
|
|
|
// 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")
|
|
|
|
func Router(rootpath string, c ControllerInterface, mappingMethods ...string) *App {
|
|
|
|
BeeApp.Handlers.Add(rootpath, c, mappingMethods...)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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
|
|
|
|
}
|
|
|
|
|
|
|
|
// RESTRouter adds a restful controller handler to BeeApp.
|
|
|
|
// its' controller implements beego.ControllerInterface and
|
|
|
|
// defines a param "pattern/:objectId" to visit each resource.
|
|
|
|
func RESTRouter(rootpath string, c ControllerInterface) *App {
|
|
|
|
Router(rootpath, c)
|
|
|
|
Router(path.Join(rootpath, ":objectId"), c)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
func AutoRouter(c ControllerInterface) *App {
|
|
|
|
BeeApp.Handlers.AddAuto(c)
|
|
|
|
return BeeApp
|
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
func AutoPrefix(prefix string, c ControllerInterface) *App {
|
|
|
|
BeeApp.Handlers.AddAutoPrefix(prefix, c)
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
// InsertFilter adds a FilterFunc with pattern condition and action constant.
|
|
|
|
// The pos means action constant including
|
|
|
|
// beego.BeforeStatic, beego.BeforeRouter, beego.BeforeExec, beego.AfterExec and beego.FinishRouter.
|
|
|
|
// The bool params is for setting the returnOnOutput value (false allows multiple filters to execute)
|
|
|
|
func InsertFilter(pattern string, pos int, filter FilterFunc, params ...bool) *App {
|
|
|
|
BeeApp.Handlers.InsertFilter(pattern, pos, filter, params...)
|
|
|
|
return BeeApp
|
|
|
|
}
|