Compare commits
No commits in common. "7de921b1b55e818a5f34db3bca5c023ad7b1bbf9" and "d2a050bd8fdb42865286c364a34a35b40ef5c128" have entirely different histories.
7de921b1b5
...
d2a050bd8f
8
entry.go
8
entry.go
@ -39,10 +39,6 @@ func (e *Entry) checkAuthors() error {
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *Entry) AddExtension(name string, value any) {
|
||||
e.Extensions = append(e.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||
}
|
||||
|
||||
func (e *Entry) Check() error {
|
||||
if e.ID == nil {
|
||||
return errors.New("no id element of entry")
|
||||
@ -136,3 +132,7 @@ func (e *Entry) Check() error {
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (e *Entry) AddExtension(name string, value any) {
|
||||
e.Extensions = append(e.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||
}
|
||||
|
8
feed.go
8
feed.go
@ -25,10 +25,6 @@ type Feed struct {
|
||||
Entries []*Entry `xml:"entry,omitempty"`
|
||||
}
|
||||
|
||||
func (f *Feed) AddExtension(name string, value any) {
|
||||
f.Extensions = append(f.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||
}
|
||||
|
||||
func (f *Feed) Check() error {
|
||||
if f.ID == nil {
|
||||
return errors.New("no id element of feed")
|
||||
@ -160,6 +156,10 @@ func (f *Feed) Standardize() {
|
||||
}
|
||||
}
|
||||
|
||||
func (f *Feed) AddExtension(name string, value any) {
|
||||
f.Extensions = append(f.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||
}
|
||||
|
||||
func (f *Feed) ToXML(encoding string) (string, error) {
|
||||
xml, err := xml.MarshalIndent(f, "", " ")
|
||||
if err != nil {
|
||||
|
19
person.go
19
person.go
@ -1,11 +1,8 @@
|
||||
package atomfeed
|
||||
|
||||
import (
|
||||
"encoding/xml"
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/mail"
|
||||
"net/url"
|
||||
)
|
||||
|
||||
type Person struct {
|
||||
@ -20,27 +17,11 @@ func NewPerson(name string) *Person {
|
||||
return &Person{Name: name}
|
||||
}
|
||||
|
||||
func (p *Person) AddExtension(name string, value any) {
|
||||
p.Extensions = append(p.Extensions, &ExtensionElement{XMLName: xml.Name{Local: name}, Value: value})
|
||||
}
|
||||
|
||||
func (p *Person) Check() error {
|
||||
if p.Name == "" {
|
||||
return errors.New("name element of person element empty")
|
||||
}
|
||||
|
||||
if p.URI != "" {
|
||||
if _, err := url.ParseRequestURI(string(p.URI)); err != nil {
|
||||
return fmt.Errorf("email element of person %v not correctly formatted", p.Name)
|
||||
}
|
||||
}
|
||||
|
||||
if p.Email != "" {
|
||||
if _, err := mail.ParseAddress(string(p.Email)); err != nil {
|
||||
return fmt.Errorf("email element of person %v not correctly formatted", p.Name)
|
||||
}
|
||||
}
|
||||
|
||||
if p.Extensions != nil {
|
||||
for i, e := range p.Extensions {
|
||||
if err := e.Check(); err != nil {
|
||||
|
Loading…
x
Reference in New Issue
Block a user