Beego/admin.go

425 lines
13 KiB
Go
Raw Normal View History

2014-08-18 08:41:43 +00:00
// Copyright 2014 beego Author. All Rights Reserved.
//
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-08-18 08:41:43 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
//
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.
package beego
import (
2014-08-14 09:35:23 +00:00
"bytes"
2014-08-15 06:24:55 +00:00
"encoding/json"
"fmt"
"net/http"
"os"
2014-08-14 09:35:23 +00:00
"text/template"
2013-11-15 10:08:53 +00:00
"time"
2013-12-03 13:37:39 +00:00
"github.com/astaxie/beego/grace"
2013-12-03 13:37:39 +00:00
"github.com/astaxie/beego/toolbox"
2013-12-15 13:44:58 +00:00
"github.com/astaxie/beego/utils"
)
2014-04-05 17:02:10 +00:00
// BeeAdminApp is the default adminApp used by admin module.
var beeAdminApp *adminApp
2013-12-19 15:46:06 +00:00
// FilterMonitorFunc is default monitor filter when admin module is enable.
// if this func returns, admin module records qbs for this request by condition of this function logic.
// usage:
// func MyFilterMonitor(method, requestPath string, t time.Duration) bool {
// if method == "POST" {
// return false
// }
// if t.Nanoseconds() < 100 {
// return false
// }
// if strings.HasPrefix(requestPath, "/astaxie") {
// return false
// }
// return true
// }
// beego.FilterMonitorFunc = MyFilterMonitor.
2013-11-15 10:08:53 +00:00
var FilterMonitorFunc func(string, string, time.Duration) bool
func init() {
2014-04-05 17:02:10 +00:00
beeAdminApp = &adminApp{
routers: make(map[string]http.HandlerFunc),
}
2014-04-05 17:02:10 +00:00
beeAdminApp.Route("/", adminIndex)
beeAdminApp.Route("/qps", qpsIndex)
beeAdminApp.Route("/prof", profIndex)
beeAdminApp.Route("/healthcheck", healthcheck)
beeAdminApp.Route("/task", taskStatus)
beeAdminApp.Route("/listconf", listConf)
2013-11-15 10:08:53 +00:00
FilterMonitorFunc = func(string, string, time.Duration) bool { return true }
}
2013-12-19 15:46:06 +00:00
// AdminIndex is the default http.Handler for admin module.
// it matches url pattern "/".
2014-04-05 17:02:10 +00:00
func adminIndex(rw http.ResponseWriter, r *http.Request) {
2015-09-19 12:05:57 +00:00
execTpl(rw, map[interface{}]interface{}{}, indexTpl, defaultScriptsTpl)
}
2013-12-19 15:46:06 +00:00
// QpsIndex is the http.Handler for writing qbs statistics map result info in http.ResponseWriter.
// it's registered with url pattern "/qbs" in admin module.
2014-04-05 17:02:10 +00:00
func qpsIndex(rw http.ResponseWriter, r *http.Request) {
2014-08-14 09:35:23 +00:00
data := make(map[interface{}]interface{})
data["Content"] = toolbox.StatisticsMap.GetMap()
2015-09-19 12:05:57 +00:00
execTpl(rw, data, qpsTpl, defaultScriptsTpl)
2013-11-15 10:08:53 +00:00
}
2013-12-19 15:46:06 +00:00
// ListConf is the http.Handler of displaying all beego configuration values as key/value pair.
// it's registered with url pattern "/listconf" in admin module.
2014-04-05 17:02:10 +00:00
func listConf(rw http.ResponseWriter, r *http.Request) {
2013-12-15 13:22:50 +00:00
r.ParseForm()
command := r.Form.Get("command")
if command == "" {
rw.Write([]byte("command not support"))
return
}
2014-08-14 09:35:23 +00:00
data := make(map[interface{}]interface{})
switch command {
case "conf":
2016-01-07 17:40:19 +00:00
m := make(map[string]interface{})
m["AppConfigPath"] = AppConfigPath
m["AppConfigProvider"] = AppConfigProvider
m["BConfig.AppName"] = BConfig.AppName
m["BConfig.RunMode"] = BConfig.RunMode
m["BConfig.RouterCaseSensitive"] = BConfig.RouterCaseSensitive
m["BConfig.ServerName"] = BConfig.ServerName
m["BConfig.RecoverPanic"] = BConfig.RecoverPanic
m["BConfig.CopyRequestBody"] = BConfig.CopyRequestBody
m["BConfig.EnableGzip"] = BConfig.EnableGzip
m["BConfig.MaxMemory"] = BConfig.MaxMemory
m["BConfig.EnableErrorsShow"] = BConfig.EnableErrorsShow
m["BConfig.Listen.Graceful"] = BConfig.Listen.Graceful
m["BConfig.Listen.ServerTimeOut"] = BConfig.Listen.ServerTimeOut
m["BConfig.Listen.ListenTCP4"] = BConfig.Listen.ListenTCP4
2016-01-12 13:55:02 +00:00
m["BConfig.Listen.EnableHTTP"] = BConfig.Listen.EnableHTTP
2016-01-07 17:40:19 +00:00
m["BConfig.Listen.HTTPAddr"] = BConfig.Listen.HTTPAddr
m["BConfig.Listen.HTTPPort"] = BConfig.Listen.HTTPPort
2016-01-12 13:55:02 +00:00
m["BConfig.Listen.EnableHTTPS"] = BConfig.Listen.EnableHTTPS
2016-01-07 17:40:19 +00:00
m["BConfig.Listen.HTTPSAddr"] = BConfig.Listen.HTTPSAddr
m["BConfig.Listen.HTTPSPort"] = BConfig.Listen.HTTPSPort
m["BConfig.Listen.HTTPSCertFile"] = BConfig.Listen.HTTPSCertFile
m["BConfig.Listen.HTTPSKeyFile"] = BConfig.Listen.HTTPSKeyFile
2016-01-12 13:55:02 +00:00
m["BConfig.Listen.EnableAdmin"] = BConfig.Listen.EnableAdmin
2016-01-07 17:40:19 +00:00
m["BConfig.Listen.AdminAddr"] = BConfig.Listen.AdminAddr
m["BConfig.Listen.AdminPort"] = BConfig.Listen.AdminPort
m["BConfig.Listen.EnableFcgi"] = BConfig.Listen.EnableFcgi
m["BConfig.Listen.EnableStdIo"] = BConfig.Listen.EnableStdIo
m["BConfig.WebConfig.AutoRender"] = BConfig.WebConfig.AutoRender
m["BConfig.WebConfig.EnableDocs"] = BConfig.WebConfig.EnableDocs
m["BConfig.WebConfig.FlashName"] = BConfig.WebConfig.FlashName
2016-01-15 06:07:37 +00:00
m["BConfig.WebConfig.FlashSeparator"] = BConfig.WebConfig.FlashSeparator
2016-01-07 17:40:19 +00:00
m["BConfig.WebConfig.DirectoryIndex"] = BConfig.WebConfig.DirectoryIndex
m["BConfig.WebConfig.StaticDir"] = BConfig.WebConfig.StaticDir
m["BConfig.WebConfig.StaticExtensionsToGzip"] = BConfig.WebConfig.StaticExtensionsToGzip
m["BConfig.WebConfig.TemplateLeft"] = BConfig.WebConfig.TemplateLeft
m["BConfig.WebConfig.TemplateRight"] = BConfig.WebConfig.TemplateRight
m["BConfig.WebConfig.ViewsPath"] = BConfig.WebConfig.ViewsPath
m["BConfig.WebConfig.EnableXSRF"] = BConfig.WebConfig.EnableXSRF
2016-01-15 06:07:37 +00:00
m["BConfig.WebConfig.XSRFKEY"] = BConfig.WebConfig.XSRFKey
2016-01-07 17:40:19 +00:00
m["BConfig.WebConfig.XSRFExpire"] = BConfig.WebConfig.XSRFExpire
m["BConfig.WebConfig.Session.SessionOn"] = BConfig.WebConfig.Session.SessionOn
m["BConfig.WebConfig.Session.SessionProvider"] = BConfig.WebConfig.Session.SessionProvider
m["BConfig.WebConfig.Session.SessionName"] = BConfig.WebConfig.Session.SessionName
m["BConfig.WebConfig.Session.SessionGCMaxLifetime"] = BConfig.WebConfig.Session.SessionGCMaxLifetime
m["BConfig.WebConfig.Session.SessionProviderConfig"] = BConfig.WebConfig.Session.SessionProviderConfig
m["BConfig.WebConfig.Session.SessionCookieLifeTime"] = BConfig.WebConfig.Session.SessionCookieLifeTime
m["BConfig.WebConfig.Session.SessionAutoSetCookie"] = BConfig.WebConfig.Session.SessionAutoSetCookie
m["BConfig.WebConfig.Session.SessionDomain"] = BConfig.WebConfig.Session.SessionDomain
m["BConfig.Log.AccessLogs"] = BConfig.Log.AccessLogs
m["BConfig.Log.FileLineNum"] = BConfig.Log.FileLineNum
m["BConfig.Log.Outputs"] = BConfig.Log.Outputs
tmpl := template.Must(template.New("dashboard").Parse(dashboardTpl))
tmpl = template.Must(tmpl.Parse(configTpl))
tmpl = template.Must(tmpl.Parse(defaultScriptsTpl))
2016-01-07 17:40:19 +00:00
data["Content"] = m
tmpl.Execute(rw, data)
case "router":
var (
content = map[string]interface{}{
"Fields": []string{
"Router Pattern",
"Methods",
"Controller",
},
2014-08-14 09:35:23 +00:00
}
methods = []string{}
methodsData = make(map[string]interface{})
)
for method, t := range BeeApp.Handlers.routers {
2014-08-24 17:37:11 +00:00
resultList := new([][]string)
2014-08-14 09:35:23 +00:00
printTree(resultList, t)
2014-08-24 17:37:11 +00:00
methods = append(methods, method)
methodsData[method] = resultList
}
2014-08-24 17:37:11 +00:00
content["Data"] = methodsData
content["Methods"] = methods
data["Content"] = content
data["Title"] = "Routers"
execTpl(rw, data, routerAndFilterTpl, defaultScriptsTpl)
case "filter":
var (
content = map[string]interface{}{
"Fields": []string{
"Router Pattern",
"Filter Function",
},
2014-08-14 09:35:23 +00:00
}
filterTypes = []string{}
filterTypeData = make(map[string]interface{})
)
if BeeApp.Handlers.enableFilter {
var filterType string
for k, fr := range map[int]string{
BeforeStatic: "Before Static",
BeforeRouter: "Before Router",
BeforeExec: "Before Exec",
AfterExec: "After Exec",
FinishRouter: "Finish Router"} {
if bf, ok := BeeApp.Handlers.filters[k]; ok {
filterType = fr
filterTypes = append(filterTypes, filterType)
resultList := new([][]string)
for _, f := range bf {
var result = []string{
fmt.Sprintf("%s", f.pattern),
fmt.Sprintf("%s", utils.GetFuncName(f.filterFunc)),
2014-08-14 09:35:23 +00:00
}
*resultList = append(*resultList, result)
2013-12-15 13:22:50 +00:00
}
filterTypeData[filterType] = resultList
2013-12-15 13:22:50 +00:00
}
}
}
2014-08-24 17:37:11 +00:00
content["Data"] = filterTypeData
content["Methods"] = filterTypes
2014-08-24 17:37:11 +00:00
data["Content"] = content
data["Title"] = "Filters"
execTpl(rw, data, routerAndFilterTpl, defaultScriptsTpl)
default:
rw.Write([]byte("command not support"))
2013-12-15 13:22:50 +00:00
}
}
2014-08-14 09:35:23 +00:00
func printTree(resultList *[][]string, t *Tree) {
2014-06-12 16:08:43 +00:00
for _, tr := range t.fixrouters {
2014-08-14 09:35:23 +00:00
printTree(resultList, tr)
2014-06-12 16:08:43 +00:00
}
if t.wildcard != nil {
2014-08-14 09:35:23 +00:00
printTree(resultList, t.wildcard)
2014-06-12 16:08:43 +00:00
}
for _, l := range t.leaves {
if v, ok := l.runObject.(*controllerInfo); ok {
if v.routerType == routerTypeBeego {
2014-08-14 09:35:23 +00:00
var result = []string{
v.pattern,
2014-08-14 09:35:23 +00:00
fmt.Sprintf("%s", v.methods),
fmt.Sprintf("%s", v.controllerType),
}
*resultList = append(*resultList, result)
2014-06-12 16:08:43 +00:00
} else if v.routerType == routerTypeRESTFul {
2014-08-14 09:35:23 +00:00
var result = []string{
v.pattern,
2014-08-14 09:35:23 +00:00
fmt.Sprintf("%s", v.methods),
"",
2014-08-14 09:35:23 +00:00
}
*resultList = append(*resultList, result)
2014-06-12 16:08:43 +00:00
} else if v.routerType == routerTypeHandler {
2014-08-14 09:35:23 +00:00
var result = []string{
v.pattern,
"",
"",
2014-08-14 09:35:23 +00:00
}
*resultList = append(*resultList, result)
2014-06-12 16:08:43 +00:00
}
}
}
}
2013-12-19 15:46:06 +00:00
// ProfIndex is a http.Handler for showing profile command.
// it's in url pattern "/prof" in admin module.
2014-04-05 17:02:10 +00:00
func profIndex(rw http.ResponseWriter, r *http.Request) {
2013-11-15 10:08:53 +00:00
r.ParseForm()
command := r.Form.Get("command")
if command == "" {
return
}
2014-08-15 06:24:55 +00:00
var (
format = r.Form.Get("format")
data = make(map[interface{}]interface{})
result bytes.Buffer
)
toolbox.ProcessInput(command, &result)
data["Content"] = result.String()
if format == "json" && command == "gc summary" {
dataJSON, err := json.Marshal(data)
if err != nil {
http.Error(rw, err.Error(), http.StatusInternalServerError)
2014-08-15 06:24:55 +00:00
return
}
rw.Header().Set("Content-Type", "application/json")
rw.Write(dataJSON)
return
}
data["Title"] = command
defaultTpl := defaultScriptsTpl
if command == "gc summary" {
defaultTpl = gcAjaxTpl
2013-11-15 10:08:53 +00:00
}
execTpl(rw, data, profillingTpl, defaultTpl)
2013-11-15 10:08:53 +00:00
}
2013-12-19 15:46:06 +00:00
// Healthcheck is a http.Handler calling health checking and showing the result.
// it's in "/healthcheck" pattern in admin module.
2014-04-05 17:02:10 +00:00
func healthcheck(rw http.ResponseWriter, req *http.Request) {
var (
data = make(map[interface{}]interface{})
result = []string{}
resultList = new([][]string)
content = map[string]interface{}{
"Fields": []string{"Name", "Message", "Status"},
}
)
2014-08-14 09:35:23 +00:00
2013-12-15 13:22:50 +00:00
for name, h := range toolbox.AdminCheckList {
if err := h.Check(); err != nil {
2014-08-14 09:35:23 +00:00
result = []string{
fmt.Sprintf("error"),
fmt.Sprintf("%s", name),
fmt.Sprintf("%s", err.Error()),
}
2014-05-23 07:56:25 +00:00
} else {
2014-08-14 09:35:23 +00:00
result = []string{
fmt.Sprintf("success"),
fmt.Sprintf("%s", name),
fmt.Sprintf("OK"),
}
2013-12-15 13:22:50 +00:00
}
2014-08-14 09:35:23 +00:00
*resultList = append(*resultList, result)
2013-12-15 13:22:50 +00:00
}
2014-08-24 17:37:11 +00:00
content["Data"] = resultList
data["Content"] = content
2014-08-14 09:35:23 +00:00
data["Title"] = "Health Check"
2015-09-19 12:05:57 +00:00
execTpl(rw, data, healthCheckTpl, defaultScriptsTpl)
2013-12-15 13:22:50 +00:00
}
2013-12-19 15:46:06 +00:00
// TaskStatus is a http.Handler with running task status (task name, status and the last execution).
// it's in "/task" pattern in admin module.
2014-04-05 17:02:10 +00:00
func taskStatus(rw http.ResponseWriter, req *http.Request) {
2014-08-14 09:35:23 +00:00
data := make(map[interface{}]interface{})
2013-12-15 13:22:50 +00:00
2014-08-14 09:35:23 +00:00
// Run Task
2013-12-15 13:22:50 +00:00
req.ParseForm()
taskname := req.Form.Get("taskname")
2014-08-14 09:35:23 +00:00
if taskname != "" {
if t, ok := toolbox.AdminTaskList[taskname]; ok {
if err := t.Run(); err != nil {
2014-08-14 09:35:23 +00:00
data["Message"] = []string{"error", fmt.Sprintf("%s", err)}
}
data["Message"] = []string{"success", fmt.Sprintf("%s run success,Now the Status is <br>%s", taskname, t.GetStatus())}
2014-08-14 09:35:23 +00:00
} else {
data["Message"] = []string{"warning", fmt.Sprintf("there's no task which named: %s", taskname)}
2013-12-15 13:22:50 +00:00
}
}
2014-08-14 09:35:23 +00:00
// List Tasks
2014-08-24 17:37:11 +00:00
content := make(map[string]interface{})
2014-08-14 09:35:23 +00:00
resultList := new([][]string)
2014-08-24 17:37:11 +00:00
var result = []string{}
var fields = []string{
"Task Name",
"Task Spec",
"Task Status",
"Last Time",
"",
2014-08-14 09:35:23 +00:00
}
for tname, tk := range toolbox.AdminTaskList {
result = []string{
tname,
fmt.Sprintf("%s", tk.GetSpec()),
2014-08-14 09:35:23 +00:00
fmt.Sprintf("%s", tk.GetStatus()),
tk.GetPrev().String(),
2014-08-14 09:35:23 +00:00
}
*resultList = append(*resultList, result)
}
2014-08-24 17:37:11 +00:00
content["Fields"] = fields
content["Data"] = resultList
data["Content"] = content
2014-08-14 09:35:23 +00:00
data["Title"] = "Tasks"
2015-09-19 12:05:57 +00:00
execTpl(rw, data, tasksTpl, defaultScriptsTpl)
}
func execTpl(rw http.ResponseWriter, data map[interface{}]interface{}, tpls ...string) {
2014-08-14 09:35:23 +00:00
tmpl := template.Must(template.New("dashboard").Parse(dashboardTpl))
2015-09-19 12:05:57 +00:00
for _, tpl := range tpls {
tmpl = template.Must(tmpl.Parse(tpl))
}
2014-08-14 09:35:23 +00:00
tmpl.Execute(rw, data)
2013-12-15 13:22:50 +00:00
}
2014-04-05 17:02:10 +00:00
// adminApp is an http.HandlerFunc map used as beeAdminApp.
type adminApp struct {
routers map[string]http.HandlerFunc
}
2014-04-05 17:02:10 +00:00
// Route adds http.HandlerFunc to adminApp with url pattern.
func (admin *adminApp) Route(pattern string, f http.HandlerFunc) {
admin.routers[pattern] = f
}
2014-04-05 17:02:10 +00:00
// Run adminApp http server.
2013-12-19 15:46:06 +00:00
// Its addr is defined in configuration file as adminhttpaddr and adminhttpport.
2014-04-05 17:02:10 +00:00
func (admin *adminApp) Run() {
2013-11-20 15:53:54 +00:00
if len(toolbox.AdminTaskList) > 0 {
toolbox.StartTask()
}
2015-12-09 15:35:04 +00:00
addr := BConfig.Listen.AdminAddr
2015-12-09 15:35:04 +00:00
if BConfig.Listen.AdminPort != 0 {
addr = fmt.Sprintf("%s:%d", BConfig.Listen.AdminAddr, BConfig.Listen.AdminPort)
}
for p, f := range admin.routers {
http.Handle(p, f)
}
BeeLogger.Info("Admin server Running on %s", addr)
var err error
2015-12-09 15:35:04 +00:00
if BConfig.Listen.Graceful {
err = grace.ListenAndServe(addr, nil)
} else {
err = http.ListenAndServe(addr, nil)
}
if err != nil {
2015-05-20 03:09:30 +00:00
BeeLogger.Critical("Admin ListenAndServe: ", err, fmt.Sprintf("%d", os.Getpid()))
}
}