mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-26 02:21:28 +00:00
72 lines
1.6 KiB
Go
72 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"bytes"
|
|
"os"
|
|
"path/filepath"
|
|
|
|
"github.com/sagernet/sing-box/common/json"
|
|
"github.com/sagernet/sing-box/log"
|
|
"github.com/sagernet/sing-box/option"
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var commandFormatFlagWrite bool
|
|
|
|
var commandFormat = &cobra.Command{
|
|
Use: "format",
|
|
Short: "Format configuration",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
err := format()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
},
|
|
Args: cobra.NoArgs,
|
|
}
|
|
|
|
func init() {
|
|
commandFormat.Flags().BoolVarP(&commandFormatFlagWrite, "write", "w", false, "write result to (source) file instead of stdout")
|
|
mainCommand.AddCommand(commandFormat)
|
|
}
|
|
|
|
func format() error {
|
|
configContent, err := os.ReadFile(configPath)
|
|
if err != nil {
|
|
return E.Cause(err, "read config")
|
|
}
|
|
var options option.Options
|
|
err = options.UnmarshalJSON(configContent)
|
|
if err != nil {
|
|
return E.Cause(err, "decode config")
|
|
}
|
|
buffer := new(bytes.Buffer)
|
|
encoder := json.NewEncoder(buffer)
|
|
encoder.SetIndent("", " ")
|
|
err = encoder.Encode(options)
|
|
if err != nil {
|
|
return E.Cause(err, "encode config")
|
|
}
|
|
if !commandFormatFlagWrite {
|
|
os.Stdout.WriteString(buffer.String() + "\n")
|
|
return nil
|
|
}
|
|
if bytes.Equal(configContent, buffer.Bytes()) {
|
|
return nil
|
|
}
|
|
output, err := os.Create(configPath)
|
|
if err != nil {
|
|
return E.Cause(err, "open output")
|
|
}
|
|
_, err = output.Write(buffer.Bytes())
|
|
output.Close()
|
|
if err != nil {
|
|
return E.Cause(err, "write output")
|
|
}
|
|
outputPath, _ := filepath.Abs(configPath)
|
|
os.Stderr.WriteString(outputPath + "\n")
|
|
return nil
|
|
}
|