Bring back proper extensionAttributes

This commit is contained in:
Jason Streifling 2024-10-17 21:27:54 +02:00
parent b70ff82141
commit 42416d13e7
2 changed files with 37 additions and 10 deletions

View File

@ -5,7 +5,7 @@ import "fmt"
type CommonAttributes struct { type CommonAttributes struct {
Base IRI `xml:"base,attr,omitempty"` Base IRI `xml:"base,attr,omitempty"`
Lang LanguageTag `xml:"lang,attr,omitempty"` Lang LanguageTag `xml:"lang,attr,omitempty"`
UndefinedAttributes []string `xml:",attr"` UndefinedAttributes []*ExtensionAttribute `xml:",attr"`
} }
// NewCommonAttributes creates a new set of CommonAttributes. It returns a // NewCommonAttributes creates a new set of CommonAttributes. It returns a
@ -15,21 +15,21 @@ func NewCommonAttributes() *CommonAttributes {
} }
// AddExtensionAttribute adds the ExtensionAttribute to the CommonAttributes. // AddExtensionAttribute adds the ExtensionAttribute to the CommonAttributes.
func (c *CommonAttributes) AddExtensionAttribute(name, value string) { func (c *CommonAttributes) AddExtensionAttribute(e *ExtensionAttribute) {
if c.UndefinedAttributes == nil { if c.UndefinedAttributes == nil {
c.UndefinedAttributes = make([]string, 1) c.UndefinedAttributes = make([]*ExtensionAttribute, 1)
c.UndefinedAttributes[0] = fmt.Sprint(name, `="`, value, `"`) c.UndefinedAttributes[0] = e
} else { } else {
c.UndefinedAttributes = append(c.UndefinedAttributes, fmt.Sprint(name, `="`, value, `"`)) c.UndefinedAttributes = append(c.UndefinedAttributes, e)
} }
} }
// Check checks the CommonAttributes for incompatibilities with RFC4287. It // Check checks the CommonAttributes for incompatibilities with RFC4287. It
// returns an error. // returns an error.
func (c *CommonAttributes) Check() error { func (c *CommonAttributes) Check() error {
for _, a := range c.UndefinedAttributes { for i, a := range c.UndefinedAttributes {
if !isValidAttribute(a) { if err := a.Check(); err != nil {
return fmt.Errorf("attribute %v of undefined attributes of common attributes not correctly formatted", a) return fmt.Errorf("extension attribute %v of common attributes: %v", i, err)
} }
} }

27
extensionAttribute.go Normal file
View File

@ -0,0 +1,27 @@
package atom
import (
"encoding/xml"
"errors"
)
type ExtensionAttribute struct {
XMLName xml.Name
Value string
}
// NewExtensionAttribute creates a new ExtensionAttribute. It returns a
// *ExtensionAttribute.
func NewExtensionAttribute(name, value string) *ExtensionAttribute {
return &ExtensionAttribute{XMLName: xml.Name{Local: name}, Value: value}
}
// Check checks the ExtensionAttribute for incompatibilities with RFC4287. It
// returns an error.
func (e *ExtensionAttribute) Check() error {
if e.Value == "" {
return errors.New("value of extension attribute empty")
}
return nil
}