Add shadowsocks-multiuser control api

This commit is contained in:
世界 2022-07-27 21:57:21 +08:00
parent aa074a2063
commit c240f1b359
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
7 changed files with 363 additions and 22 deletions

View file

@ -2,19 +2,18 @@ package badjson
import (
"bytes"
"reflect"
"github.com/sagernet/sing-box/common/json"
E "github.com/sagernet/sing/common/exceptions"
)
type JSONArray[T any] []T
type JSONArray []any
func (a JSONArray[T]) MarshalJSON() ([]byte, error) {
return json.Marshal([]T(a))
func (a JSONArray) MarshalJSON() ([]byte, error) {
return json.Marshal([]any(a))
}
func (a *JSONArray[T]) UnmarshalJSON(content []byte) error {
func (a *JSONArray) UnmarshalJSON(content []byte) error {
decoder := json.NewDecoder(bytes.NewReader(content))
arrayStart, err := decoder.Token()
if err != nil {
@ -35,17 +34,12 @@ func (a *JSONArray[T]) UnmarshalJSON(content []byte) error {
return nil
}
func (a *JSONArray[T]) decodeJSON(decoder *json.Decoder) error {
func (a *JSONArray) decodeJSON(decoder *json.Decoder) error {
for decoder.More() {
value, err := decodeJSON(decoder)
item, err := decodeJSON(decoder)
if err != nil {
return err
}
item, ok := value.(T)
if !ok {
var defValue T
return E.New("can't cast ", value, " to ", reflect.TypeOf(defValue))
}
*a = append(*a, item)
}
return nil