123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- package clashapi
- import (
- "bytes"
- "net/http"
- "strconv"
- "time"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/experimental/clashapi/trafficontrol"
- "github.com/sagernet/sing/common/json"
- "github.com/sagernet/ws"
- "github.com/sagernet/ws/wsutil"
- "github.com/go-chi/chi/v5"
- "github.com/go-chi/render"
- "github.com/gofrs/uuid/v5"
- )
- func connectionRouter(router adapter.Router, trafficManager *trafficontrol.Manager) http.Handler {
- r := chi.NewRouter()
- r.Get("/", getConnections(trafficManager))
- r.Delete("/", closeAllConnections(router, trafficManager))
- r.Delete("/{id}", closeConnection(trafficManager))
- return r
- }
- func getConnections(trafficManager *trafficontrol.Manager) func(w http.ResponseWriter, r *http.Request) {
- return func(w http.ResponseWriter, r *http.Request) {
- if r.Header.Get("Upgrade") != "websocket" {
- snapshot := trafficManager.Snapshot()
- render.JSON(w, r, snapshot)
- return
- }
- conn, _, _, err := ws.UpgradeHTTP(r, w)
- if err != nil {
- return
- }
- intervalStr := r.URL.Query().Get("interval")
- interval := 1000
- if intervalStr != "" {
- t, err := strconv.Atoi(intervalStr)
- if err != nil {
- render.Status(r, http.StatusBadRequest)
- render.JSON(w, r, ErrBadRequest)
- return
- }
- interval = t
- }
- buf := &bytes.Buffer{}
- sendSnapshot := func() error {
- buf.Reset()
- snapshot := trafficManager.Snapshot()
- if err := json.NewEncoder(buf).Encode(snapshot); err != nil {
- return err
- }
- return wsutil.WriteServerText(conn, buf.Bytes())
- }
- if err = sendSnapshot(); err != nil {
- return
- }
- tick := time.NewTicker(time.Millisecond * time.Duration(interval))
- defer tick.Stop()
- for range tick.C {
- if err = sendSnapshot(); err != nil {
- break
- }
- }
- }
- }
- func closeConnection(trafficManager *trafficontrol.Manager) func(w http.ResponseWriter, r *http.Request) {
- return func(w http.ResponseWriter, r *http.Request) {
- id := uuid.FromStringOrNil(chi.URLParam(r, "id"))
- snapshot := trafficManager.Snapshot()
- for _, c := range snapshot.Connections {
- if id == c.Metadata().ID {
- c.Close()
- break
- }
- }
- render.NoContent(w, r)
- }
- }
- func closeAllConnections(router adapter.Router, trafficManager *trafficontrol.Manager) func(w http.ResponseWriter, r *http.Request) {
- return func(w http.ResponseWriter, r *http.Request) {
- snapshot := trafficManager.Snapshot()
- for _, c := range snapshot.Connections {
- c.Close()
- }
- router.ResetNetwork()
- render.NoContent(w, r)
- }
- }
|