mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 13:30:56 +00:00
add api comments in file admin.go
This commit is contained in:
parent
05e197ffff
commit
8cc8b022ee
51
admin.go
51
admin.go
@ -9,22 +9,25 @@ import (
|
|||||||
"github.com/astaxie/beego/utils"
|
"github.com/astaxie/beego/utils"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
// BeeAdminApp is the default AdminApp used by admin module.
|
||||||
var BeeAdminApp *AdminApp
|
var BeeAdminApp *AdminApp
|
||||||
|
|
||||||
//func MyFilterMonitor(method, requestPath string, t time.Duration) bool {
|
// FilterMonitorFunc is default monitor filter when admin module is enable.
|
||||||
// if method == "POST" {
|
// if this func returns, admin module records qbs for this request by condition of this function logic.
|
||||||
// return false
|
// usage:
|
||||||
// }
|
// func MyFilterMonitor(method, requestPath string, t time.Duration) bool {
|
||||||
// if t.Nanoseconds() < 100 {
|
// if method == "POST" {
|
||||||
// return false
|
// return false
|
||||||
// }
|
// }
|
||||||
// if strings.HasPrefix(requestPath, "/astaxie") {
|
// if t.Nanoseconds() < 100 {
|
||||||
// return false
|
// return false
|
||||||
// }
|
// }
|
||||||
// return true
|
// if strings.HasPrefix(requestPath, "/astaxie") {
|
||||||
//}
|
// return false
|
||||||
|
// }
|
||||||
//beego.FilterMonitorFunc = MyFilterMonitor
|
// return true
|
||||||
|
// }
|
||||||
|
// beego.FilterMonitorFunc = MyFilterMonitor.
|
||||||
var FilterMonitorFunc func(string, string, time.Duration) bool
|
var FilterMonitorFunc func(string, string, time.Duration) bool
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
@ -41,6 +44,8 @@ func init() {
|
|||||||
FilterMonitorFunc = func(string, string, time.Duration) bool { return true }
|
FilterMonitorFunc = func(string, string, time.Duration) bool { return true }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AdminIndex is the default http.Handler for admin module.
|
||||||
|
// it matches url pattern "/".
|
||||||
func AdminIndex(rw http.ResponseWriter, r *http.Request) {
|
func AdminIndex(rw http.ResponseWriter, r *http.Request) {
|
||||||
rw.Write([]byte("Welcome to Admin Dashboard\n"))
|
rw.Write([]byte("Welcome to Admin Dashboard\n"))
|
||||||
rw.Write([]byte("There are servral functions:\n"))
|
rw.Write([]byte("There are servral functions:\n"))
|
||||||
@ -53,10 +58,14 @@ func AdminIndex(rw http.ResponseWriter, r *http.Request) {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 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.
|
||||||
func QpsIndex(rw http.ResponseWriter, r *http.Request) {
|
func QpsIndex(rw http.ResponseWriter, r *http.Request) {
|
||||||
toolbox.StatisticsMap.GetMap(rw)
|
toolbox.StatisticsMap.GetMap(rw)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 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.
|
||||||
func ListConf(rw http.ResponseWriter, r *http.Request) {
|
func ListConf(rw http.ResponseWriter, r *http.Request) {
|
||||||
r.ParseForm()
|
r.ParseForm()
|
||||||
command := r.Form.Get("command")
|
command := r.Form.Get("command")
|
||||||
@ -172,6 +181,8 @@ func ListConf(rw http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ProfIndex is a http.Handler for showing profile command.
|
||||||
|
// it's in url pattern "/prof" in admin module.
|
||||||
func ProfIndex(rw http.ResponseWriter, r *http.Request) {
|
func ProfIndex(rw http.ResponseWriter, r *http.Request) {
|
||||||
r.ParseForm()
|
r.ParseForm()
|
||||||
command := r.Form.Get("command")
|
command := r.Form.Get("command")
|
||||||
@ -191,6 +202,8 @@ func ProfIndex(rw http.ResponseWriter, r *http.Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Healthcheck is a http.Handler calling health checking and showing the result.
|
||||||
|
// it's in "/healthcheck" pattern in admin module.
|
||||||
func Healthcheck(rw http.ResponseWriter, req *http.Request) {
|
func Healthcheck(rw http.ResponseWriter, req *http.Request) {
|
||||||
for name, h := range toolbox.AdminCheckList {
|
for name, h := range toolbox.AdminCheckList {
|
||||||
if err := h.Check(); err != nil {
|
if err := h.Check(); err != nil {
|
||||||
@ -201,14 +214,16 @@ func Healthcheck(rw http.ResponseWriter, req *http.Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TaskStatus is a http.Handler with running task status (task name, status and the last execution).
|
||||||
|
// it's in "/task" pattern in admin module.
|
||||||
func TaskStatus(rw http.ResponseWriter, req *http.Request) {
|
func TaskStatus(rw http.ResponseWriter, req *http.Request) {
|
||||||
for tname, tk := range toolbox.AdminTaskList {
|
for tname, tk := range toolbox.AdminTaskList {
|
||||||
fmt.Fprintf(rw, "%s:%s:%s", tname, tk.GetStatus(), tk.GetPrev().String())
|
fmt.Fprintf(rw, "%s:%s:%s", tname, tk.GetStatus(), tk.GetPrev().String())
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//to run a Task by http from the querystring taskname
|
// RunTask is a http.Handler to run a Task from the "query string.
|
||||||
//url like /task?taskname=sendmail
|
// the request url likes /runtask?taskname=sendmail.
|
||||||
func RunTask(rw http.ResponseWriter, req *http.Request) {
|
func RunTask(rw http.ResponseWriter, req *http.Request) {
|
||||||
req.ParseForm()
|
req.ParseForm()
|
||||||
taskname := req.Form.Get("taskname")
|
taskname := req.Form.Get("taskname")
|
||||||
@ -223,14 +238,18 @@ func RunTask(rw http.ResponseWriter, req *http.Request) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// AdminApp is an http.HandlerFunc map used as BeeAdminApp.
|
||||||
type AdminApp struct {
|
type AdminApp struct {
|
||||||
routers map[string]http.HandlerFunc
|
routers map[string]http.HandlerFunc
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Route adds http.HandlerFunc to AdminApp with url pattern.
|
||||||
func (admin *AdminApp) Route(pattern string, f http.HandlerFunc) {
|
func (admin *AdminApp) Route(pattern string, f http.HandlerFunc) {
|
||||||
admin.routers[pattern] = f
|
admin.routers[pattern] = f
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Run AdminApp http server.
|
||||||
|
// Its addr is defined in configuration file as adminhttpaddr and adminhttpport.
|
||||||
func (admin *AdminApp) Run() {
|
func (admin *AdminApp) Run() {
|
||||||
if len(toolbox.AdminTaskList) > 0 {
|
if len(toolbox.AdminTaskList) > 0 {
|
||||||
toolbox.StartTask()
|
toolbox.StartTask()
|
||||||
|
Loading…
Reference in New Issue
Block a user