2022-10-25 04:55:00 +00:00
|
|
|
package libbox
|
|
|
|
|
|
|
|
import (
|
2023-04-04 20:38:56 +00:00
|
|
|
"bytes"
|
2023-04-02 02:35:03 +00:00
|
|
|
"context"
|
2023-04-04 20:38:56 +00:00
|
|
|
"encoding/json"
|
2023-04-02 02:35:03 +00:00
|
|
|
|
|
|
|
"github.com/sagernet/sing-box"
|
2022-10-25 04:55:00 +00:00
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
)
|
|
|
|
|
|
|
|
func parseConfig(configContent string) (option.Options, error) {
|
|
|
|
var options option.Options
|
|
|
|
err := options.UnmarshalJSON([]byte(configContent))
|
|
|
|
if err != nil {
|
|
|
|
return option.Options{}, E.Cause(err, "decode config")
|
|
|
|
}
|
|
|
|
return options, nil
|
|
|
|
}
|
2023-04-02 02:35:03 +00:00
|
|
|
|
|
|
|
func CheckConfig(configContent string) error {
|
|
|
|
options, err := parseConfig(configContent)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
defer cancel()
|
2023-04-03 10:24:20 +00:00
|
|
|
instance, err := box.New(box.Options{
|
|
|
|
Context: ctx,
|
|
|
|
Options: options,
|
|
|
|
})
|
2023-04-02 02:35:03 +00:00
|
|
|
if err == nil {
|
|
|
|
instance.Close()
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
2023-04-04 20:38:56 +00:00
|
|
|
|
|
|
|
func FormatConfig(configContent string) (string, error) {
|
|
|
|
options, err := parseConfig(configContent)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
var buffer bytes.Buffer
|
|
|
|
json.NewEncoder(&buffer)
|
|
|
|
encoder := json.NewEncoder(&buffer)
|
|
|
|
encoder.SetIndent("", " ")
|
|
|
|
err = encoder.Encode(options)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
return buffer.String(), nil
|
|
|
|
}
|