|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"path"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
|
|
|
|
"sunteng/cronsun/conf"
|
|
|
|
)
|
|
|
|
|
|
|
|
func InitRouters() (s *http.Server, err error) {
|
|
|
|
jobHandler := &Job{}
|
|
|
|
nodeHandler := &Node{}
|
|
|
|
jobLogHandler := &JobLog{}
|
|
|
|
|
|
|
|
r := mux.NewRouter()
|
|
|
|
subrouter := r.PathPrefix("/v1").Subrouter()
|
|
|
|
|
|
|
|
// get a job group list
|
|
|
|
h := BaseHandler{Handle: jobHandler.GetGroups}
|
|
|
|
subrouter.Handle("/job/groups", h).Methods("GET")
|
|
|
|
// get a job group by group name
|
|
|
|
h = BaseHandler{Handle: jobHandler.GetListByGroupName}
|
|
|
|
subrouter.Handle("/job/group/{name}", h).Methods("GET")
|
|
|
|
// create/update a job
|
|
|
|
h = BaseHandler{Handle: jobHandler.UpdateJob}
|
|
|
|
subrouter.Handle("/job", h).Methods("PUT")
|
|
|
|
// pause/start
|
|
|
|
h = BaseHandler{Handle: jobHandler.ChangeJobStatus}
|
|
|
|
subrouter.Handle("/job/{group}-{id}", h).Methods("POST")
|
|
|
|
// get a job
|
|
|
|
h = BaseHandler{Handle: jobHandler.GetJob}
|
|
|
|
subrouter.Handle("/job/{group}-{id}", h).Methods("GET")
|
|
|
|
// remove a job
|
|
|
|
h = BaseHandler{Handle: jobHandler.DeleteJob}
|
|
|
|
subrouter.Handle("/job/{group}-{id}", h).Methods("DELETE")
|
|
|
|
|
|
|
|
// get job log list
|
|
|
|
h = BaseHandler{Handle: jobLogHandler.GetList}
|
|
|
|
subrouter.Handle("/logs", h).Methods("GET")
|
|
|
|
// get job log
|
|
|
|
h = BaseHandler{Handle: jobLogHandler.GetDetail}
|
|
|
|
subrouter.Handle("/log/{id}", h).Methods("GET")
|
|
|
|
|
|
|
|
h = BaseHandler{Handle: nodeHandler.GetNodes}
|
|
|
|
subrouter.Handle("/nodes", h).Methods("GET")
|
|
|
|
// get node group list
|
|
|
|
h = BaseHandler{Handle: nodeHandler.GetGroups}
|
|
|
|
subrouter.Handle("/nodes/groups", h).Methods("GET")
|
|
|
|
// get a node group by group id
|
|
|
|
h = BaseHandler{Handle: nodeHandler.GetGroupByGroupId}
|
|
|
|
subrouter.Handle("/nodes/group/{id}", h).Methods("GET")
|
|
|
|
// create/update a node group
|
|
|
|
h = BaseHandler{Handle: nodeHandler.UpdateGroup}
|
|
|
|
subrouter.Handle("/nodes/group", h).Methods("PUT")
|
|
|
|
// delete a node group
|
|
|
|
h = BaseHandler{Handle: nodeHandler.DeleteGroup}
|
|
|
|
subrouter.Handle("/nodes/group", h).Methods("DELETE")
|
|
|
|
|
|
|
|
uidir := conf.Config.Web.UIDir
|
|
|
|
if len(uidir) == 0 {
|
|
|
|
uidir = path.Join(conf.Config.Root, "web", "ui", "dist")
|
|
|
|
}
|
|
|
|
r.PathPrefix("/ui/").Handler(http.StripPrefix("/ui/", http.FileServer(http.Dir(uidir))))
|
|
|
|
|
|
|
|
s = &http.Server{
|
|
|
|
Handler: r,
|
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|