12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- package exprhelpers
- import (
- "github.com/beevik/etree"
- log "github.com/sirupsen/logrus"
- )
- var pathCache = make(map[string]etree.Path)
- // func XMLGetAttributeValue(xmlString string, path string, attributeName string) string {
- func XMLGetAttributeValue(params ...any) (any, error) {
- xmlString := params[0].(string)
- path := params[1].(string)
- attributeName := params[2].(string)
- if _, ok := pathCache[path]; !ok {
- compiledPath, err := etree.CompilePath(path)
- if err != nil {
- log.Errorf("Could not compile path %s: %s", path, err)
- return "", nil
- }
- pathCache[path] = compiledPath
- }
- compiledPath := pathCache[path]
- doc := etree.NewDocument()
- err := doc.ReadFromString(xmlString)
- if err != nil {
- log.Tracef("Could not parse XML: %s", err)
- return "", nil
- }
- elem := doc.FindElementPath(compiledPath)
- if elem == nil {
- log.Debugf("Could not find element %s", path)
- return "", nil
- }
- attr := elem.SelectAttr(attributeName)
- if attr == nil {
- log.Debugf("Could not find attribute %s", attributeName)
- return "", nil
- }
- return attr.Value, nil
- }
- // func XMLGetNodeValue(xmlString string, path string) string {
- func XMLGetNodeValue(params ...any) (any, error) {
- xmlString := params[0].(string)
- path := params[1].(string)
- if _, ok := pathCache[path]; !ok {
- compiledPath, err := etree.CompilePath(path)
- if err != nil {
- log.Errorf("Could not compile path %s: %s", path, err)
- return "", nil
- }
- pathCache[path] = compiledPath
- }
- compiledPath := pathCache[path]
- doc := etree.NewDocument()
- err := doc.ReadFromString(xmlString)
- if err != nil {
- log.Tracef("Could not parse XML: %s", err)
- return "", nil
- }
- elem := doc.FindElementPath(compiledPath)
- if elem == nil {
- log.Debugf("Could not find element %s", path)
- return "", nil
- }
- return elem.Text(), nil
- }
|