mirror of
https://github.com/yusing/godoxy.git
synced 2026-04-24 01:08:31 +02:00
refactor(api): restructure existing routes and remove unused debug endpoints and command line arguments
This commit is contained in:
23
internal/api/v1/list_route.go
Normal file
23
internal/api/v1/list_route.go
Normal file
@@ -0,0 +1,23 @@
|
||||
package v1
|
||||
|
||||
import (
|
||||
"net/http"
|
||||
|
||||
config "github.com/yusing/go-proxy/internal/config/types"
|
||||
"github.com/yusing/go-proxy/internal/net/gphttp"
|
||||
"github.com/yusing/go-proxy/internal/route/routes"
|
||||
)
|
||||
|
||||
func ListRouteHandler(cfg config.ConfigInstance, w http.ResponseWriter, r *http.Request) {
|
||||
which := r.PathValue("which")
|
||||
if which == "" || which == "all" {
|
||||
gphttp.RespondJSON(w, r, routes.ByAlias())
|
||||
return
|
||||
}
|
||||
routesMap := routes.ByAlias()
|
||||
if route, ok := routesMap[which]; ok {
|
||||
gphttp.RespondJSON(w, r, route)
|
||||
} else {
|
||||
gphttp.RespondJSON(w, r, nil)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user