mirror of
https://github.com/nezhahq/nezha.git
synced 2025-01-23 05:08:13 -05:00
a503f0cf40
* ddns: store configuation in database Co-authored-by: nap0o <144927971+nap0o@users.noreply.github.com> * feat: split domain with soa lookup * switch to libdns interface * ddns: add unit test * ddns: skip TestSplitDomainSOA on ci network is not steady * fix error handling * fix error handling --------- Co-authored-by: nap0o <144927971+nap0o@users.noreply.github.com>
41 lines
746 B
Go
41 lines
746 B
Go
package utils
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
var (
|
|
ErrGjsonNotFound = errors.New("specified path does not exist")
|
|
ErrGjsonWrongType = errors.New("wrong type")
|
|
)
|
|
|
|
func GjsonGet(json []byte, path string) (gjson.Result, error) {
|
|
result := gjson.GetBytes(json, path)
|
|
if !result.Exists() {
|
|
return result, ErrGjsonNotFound
|
|
}
|
|
|
|
return result, nil
|
|
}
|
|
|
|
func GjsonParseStringMap(jsonObject string) (map[string]string, error) {
|
|
if jsonObject == "" {
|
|
return nil, nil
|
|
}
|
|
|
|
result := gjson.Parse(jsonObject)
|
|
if !result.IsObject() {
|
|
return nil, ErrGjsonWrongType
|
|
}
|
|
|
|
ret := make(map[string]string)
|
|
result.ForEach(func(key, value gjson.Result) bool {
|
|
ret[key.String()] = value.String()
|
|
return true
|
|
})
|
|
|
|
return ret, nil
|
|
}
|