2021-09-18 20:25:59 +08:00
|
|
|
package asynqmon
|
2020-11-24 22:54:00 +08:00
|
|
|
|
|
|
|
import (
|
2021-10-03 09:50:00 +08:00
|
|
|
"fmt"
|
2021-10-01 02:28:45 +08:00
|
|
|
"net/http"
|
|
|
|
|
2021-10-01 02:26:01 +08:00
|
|
|
"github.com/go-redis/redis/v8"
|
2020-11-24 22:54:00 +08:00
|
|
|
"github.com/gorilla/mux"
|
2021-09-18 22:23:42 +08:00
|
|
|
|
2020-11-24 22:54:00 +08:00
|
|
|
"github.com/hibiken/asynq"
|
2021-01-08 23:16:48 +08:00
|
|
|
)
|
|
|
|
|
2021-10-03 09:50:00 +08:00
|
|
|
// MiddlewareFunc helps chain http.Handler(s).
|
|
|
|
type MiddlewareFunc func(http.Handler) http.Handler
|
|
|
|
|
2021-10-04 02:30:40 +08:00
|
|
|
type Options struct {
|
2021-10-03 09:50:00 +08:00
|
|
|
RedisConnOpt asynq.RedisConnOpt
|
|
|
|
Middlewares []MiddlewareFunc
|
2021-10-02 15:27:41 +08:00
|
|
|
PayloadFormatter PayloadFormatter
|
2021-10-01 02:23:01 +08:00
|
|
|
StaticContentHandler http.Handler
|
2021-04-24 10:58:32 +08:00
|
|
|
}
|
|
|
|
|
2021-10-04 02:30:40 +08:00
|
|
|
type HTTPHandler struct {
|
2021-10-03 09:50:00 +08:00
|
|
|
router *mux.Router
|
|
|
|
closers []func() error
|
|
|
|
}
|
|
|
|
|
2021-10-04 02:30:40 +08:00
|
|
|
func (a *HTTPHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2021-10-03 09:50:00 +08:00
|
|
|
a.router.ServeHTTP(w, r)
|
|
|
|
}
|
|
|
|
|
2021-10-04 23:18:00 +08:00
|
|
|
func New(opts Options) *HTTPHandler {
|
2021-10-03 09:50:00 +08:00
|
|
|
rc, ok := opts.RedisConnOpt.MakeRedisClient().(redis.UniversalClient)
|
|
|
|
if !ok {
|
2021-10-04 02:30:40 +08:00
|
|
|
panic(fmt.Sprintf("asnyqmon.HTTPHandler: unsupported RedisConnOpt type %T", opts.RedisConnOpt))
|
2021-10-03 09:50:00 +08:00
|
|
|
}
|
|
|
|
i := asynq.NewInspector(opts.RedisConnOpt)
|
2021-10-04 02:30:40 +08:00
|
|
|
return &HTTPHandler{router: muxRouter(opts, rc, i), closers: []func() error{rc.Close, i.Close}}
|
2021-10-03 09:50:00 +08:00
|
|
|
}
|
|
|
|
|
2021-10-04 02:30:40 +08:00
|
|
|
func (a *HTTPHandler) Close() error {
|
2021-10-03 09:50:00 +08:00
|
|
|
for _, f := range a.closers {
|
|
|
|
if err := f(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-10-04 02:30:40 +08:00
|
|
|
func muxRouter(opts Options, rc redis.UniversalClient, inspector *asynq.Inspector) *mux.Router {
|
2021-09-18 20:25:59 +08:00
|
|
|
router := mux.NewRouter()
|
2021-10-01 02:49:41 +08:00
|
|
|
|
2021-10-02 15:27:41 +08:00
|
|
|
var pf PayloadFormatter = defaultPayloadFormatter
|
|
|
|
if opts.PayloadFormatter != nil {
|
|
|
|
pf = opts.PayloadFormatter
|
2021-09-18 20:26:00 +08:00
|
|
|
}
|
2020-11-24 22:54:00 +08:00
|
|
|
|
2021-09-18 20:25:59 +08:00
|
|
|
for _, mf := range opts.Middlewares {
|
2021-10-03 09:50:00 +08:00
|
|
|
router.Use(mux.MiddlewareFunc(mf))
|
2021-09-06 21:32:23 +08:00
|
|
|
}
|
2020-11-24 22:54:00 +08:00
|
|
|
|
|
|
|
api := router.PathPrefix("/api").Subrouter()
|
2020-12-07 00:46:14 +08:00
|
|
|
// Queue endpoints.
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/queues", newListQueuesHandlerFunc(inspector)).Methods("GET")
|
2021-10-01 02:49:41 +08:00
|
|
|
api.HandleFunc("/queues/{qname}", newGetQueueHandlerFunc(inspector)).Methods("GET")
|
|
|
|
api.HandleFunc("/queues/{qname}", newDeleteQueueHandlerFunc(inspector)).Methods("DELETE")
|
2020-12-07 22:41:16 +08:00
|
|
|
api.HandleFunc("/queues/{qname}:pause", newPauseQueueHandlerFunc(inspector)).Methods("POST")
|
|
|
|
api.HandleFunc("/queues/{qname}:resume", newResumeQueueHandlerFunc(inspector)).Methods("POST")
|
2020-12-07 00:46:14 +08:00
|
|
|
|
2020-12-28 07:45:54 +08:00
|
|
|
// Queue Historical Stats endpoint.
|
2021-10-01 02:49:41 +08:00
|
|
|
api.HandleFunc("/queue_stats", newListQueueStatsHandlerFunc(inspector)).Methods("GET")
|
2020-12-28 07:45:54 +08:00
|
|
|
|
2020-12-07 00:46:14 +08:00
|
|
|
// Task endpoints.
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/active_tasks", newListActiveTasksHandlerFunc(inspector, pf)).Methods("GET")
|
2020-12-07 22:41:16 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/active_tasks/{task_id}:cancel", newCancelActiveTaskHandlerFunc(inspector)).Methods("POST")
|
2020-12-23 22:59:44 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/active_tasks:cancel_all", newCancelAllActiveTasksHandlerFunc(inspector)).Methods("POST")
|
2020-12-23 22:23:15 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/active_tasks:batch_cancel", newBatchCancelActiveTasksHandlerFunc(inspector)).Methods("POST")
|
2021-01-21 13:30:27 +08:00
|
|
|
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/pending_tasks", newListPendingTasksHandlerFunc(inspector, pf)).Methods("GET")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/pending_tasks/{task_id}", newDeleteTaskHandlerFunc(inspector)).Methods("DELETE")
|
2021-01-21 13:30:27 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/pending_tasks:delete_all", newDeleteAllPendingTasksHandlerFunc(inspector)).Methods("DELETE")
|
|
|
|
api.HandleFunc("/queues/{qname}/pending_tasks:batch_delete", newBatchDeleteTasksHandlerFunc(inspector)).Methods("POST")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/pending_tasks/{task_id}:archive", newArchiveTaskHandlerFunc(inspector)).Methods("POST")
|
2021-01-21 13:30:27 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/pending_tasks:archive_all", newArchiveAllPendingTasksHandlerFunc(inspector)).Methods("POST")
|
|
|
|
api.HandleFunc("/queues/{qname}/pending_tasks:batch_archive", newBatchArchiveTasksHandlerFunc(inspector)).Methods("POST")
|
|
|
|
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks", newListScheduledTasksHandlerFunc(inspector, pf)).Methods("GET")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks/{task_id}", newDeleteTaskHandlerFunc(inspector)).Methods("DELETE")
|
2020-12-07 23:22:04 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks:delete_all", newDeleteAllScheduledTasksHandlerFunc(inspector)).Methods("DELETE")
|
2020-12-18 08:05:22 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks:batch_delete", newBatchDeleteTasksHandlerFunc(inspector)).Methods("POST")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks/{task_id}:run", newRunTaskHandlerFunc(inspector)).Methods("POST")
|
2020-12-19 22:07:23 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks:run_all", newRunAllScheduledTasksHandlerFunc(inspector)).Methods("POST")
|
2020-12-15 22:16:58 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks:batch_run", newBatchRunTasksHandlerFunc(inspector)).Methods("POST")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks/{task_id}:archive", newArchiveTaskHandlerFunc(inspector)).Methods("POST")
|
2021-01-13 03:59:44 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks:archive_all", newArchiveAllScheduledTasksHandlerFunc(inspector)).Methods("POST")
|
|
|
|
api.HandleFunc("/queues/{qname}/scheduled_tasks:batch_archive", newBatchArchiveTasksHandlerFunc(inspector)).Methods("POST")
|
2021-01-21 13:30:27 +08:00
|
|
|
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks", newListRetryTasksHandlerFunc(inspector, pf)).Methods("GET")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks/{task_id}", newDeleteTaskHandlerFunc(inspector)).Methods("DELETE")
|
2020-12-07 23:22:04 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks:delete_all", newDeleteAllRetryTasksHandlerFunc(inspector)).Methods("DELETE")
|
2020-12-18 08:05:22 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks:batch_delete", newBatchDeleteTasksHandlerFunc(inspector)).Methods("POST")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks/{task_id}:run", newRunTaskHandlerFunc(inspector)).Methods("POST")
|
2020-12-19 22:07:23 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks:run_all", newRunAllRetryTasksHandlerFunc(inspector)).Methods("POST")
|
2020-12-15 22:16:58 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks:batch_run", newBatchRunTasksHandlerFunc(inspector)).Methods("POST")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks/{task_id}:archive", newArchiveTaskHandlerFunc(inspector)).Methods("POST")
|
2021-01-13 03:59:44 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks:archive_all", newArchiveAllRetryTasksHandlerFunc(inspector)).Methods("POST")
|
|
|
|
api.HandleFunc("/queues/{qname}/retry_tasks:batch_archive", newBatchArchiveTasksHandlerFunc(inspector)).Methods("POST")
|
2021-01-21 13:30:27 +08:00
|
|
|
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/archived_tasks", newListArchivedTasksHandlerFunc(inspector, pf)).Methods("GET")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/archived_tasks/{task_id}", newDeleteTaskHandlerFunc(inspector)).Methods("DELETE")
|
2021-01-13 03:59:44 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/archived_tasks:delete_all", newDeleteAllArchivedTasksHandlerFunc(inspector)).Methods("DELETE")
|
|
|
|
api.HandleFunc("/queues/{qname}/archived_tasks:batch_delete", newBatchDeleteTasksHandlerFunc(inspector)).Methods("POST")
|
2021-05-29 05:40:09 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/archived_tasks/{task_id}:run", newRunTaskHandlerFunc(inspector)).Methods("POST")
|
2021-01-13 03:59:44 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/archived_tasks:run_all", newRunAllArchivedTasksHandlerFunc(inspector)).Methods("POST")
|
|
|
|
api.HandleFunc("/queues/{qname}/archived_tasks:batch_run", newBatchRunTasksHandlerFunc(inspector)).Methods("POST")
|
2020-12-07 00:46:14 +08:00
|
|
|
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/queues/{qname}/tasks/{task_id}", newGetTaskHandlerFunc(inspector, pf)).Methods("GET")
|
2021-07-30 20:53:14 +08:00
|
|
|
|
2020-12-31 00:58:50 +08:00
|
|
|
// Servers endpoints.
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/servers", newListServersHandlerFunc(inspector, pf)).Methods("GET")
|
2020-12-31 00:58:50 +08:00
|
|
|
|
2020-12-07 00:46:14 +08:00
|
|
|
// Scheduler Entry endpoints.
|
2021-10-02 15:27:41 +08:00
|
|
|
api.HandleFunc("/scheduler_entries", newListSchedulerEntriesHandlerFunc(inspector, pf)).Methods("GET")
|
2021-10-01 02:49:41 +08:00
|
|
|
api.HandleFunc("/scheduler_entries/{entry_id}/enqueue_events", newListSchedulerEnqueueEventsHandlerFunc(inspector)).Methods("GET")
|
2020-11-24 22:54:00 +08:00
|
|
|
|
2021-01-03 22:56:53 +08:00
|
|
|
// Redis info endpoint.
|
2021-10-03 09:50:00 +08:00
|
|
|
switch c := rc.(type) {
|
2021-09-18 20:25:59 +08:00
|
|
|
case *redis.ClusterClient:
|
|
|
|
api.HandleFunc("/redis_info", newRedisClusterInfoHandlerFunc(c, inspector)).Methods("GET")
|
|
|
|
case *redis.Client:
|
|
|
|
api.HandleFunc("/redis_info", newRedisInfoHandlerFunc(c)).Methods("GET")
|
2020-11-24 22:54:00 +08:00
|
|
|
}
|
|
|
|
|
2021-10-01 02:49:41 +08:00
|
|
|
router.PathPrefix("/").Handler(opts.StaticContentHandler)
|
2021-09-18 20:25:59 +08:00
|
|
|
return router
|
2020-11-24 22:54:00 +08:00
|
|
|
}
|