atom/person.go

60 lines
1.4 KiB
Go
Raw Normal View History

2024-10-16 21:28:04 +02:00
package atom
2024-10-13 17:19:40 +02:00
import (
"fmt"
2024-10-15 16:20:04 +02:00
"net/mail"
2024-10-13 17:19:40 +02:00
)
type Person struct {
*CommonAttributes
Name string `xml:"name"`
URI string `xml:"uri,omitempty"` // IRI
Email string `xml:"email,omitempty"` // EmailAddress
2024-10-13 20:42:17 +02:00
Extensions []*ExtensionElement `xml:",any,omitempty"`
2024-10-13 17:19:40 +02:00
}
// NewPerson creates a new Person. It returns a *Person.
func NewPerson(name string) *Person {
return &Person{Name: name}
2024-10-15 16:07:41 +02:00
}
// AddExtension adds the Extension to the Person.
func (p *Person) AddExtension(e *ExtensionElement) {
if p.Extensions == nil {
p.Extensions = make([]*ExtensionElement, 1)
p.Extensions[0] = e
} else {
p.Extensions = append(p.Extensions, e)
}
}
2024-10-16 19:59:28 +02:00
// Check checks the Person for incompatibilities with RFC4287. It returns an
// error.
2024-10-13 17:19:40 +02:00
func (p *Person) Check() error {
if p.Name == "" {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("name element of person %v empty", p)
2024-10-13 17:19:40 +02:00
}
2024-10-15 16:20:04 +02:00
if p.URI != "" {
if !isValidIRI(p.URI) {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("uri element of person %v not correctly formatted", p)
2024-10-15 16:20:04 +02:00
}
}
if p.Email != "" {
if _, err := mail.ParseAddress(p.Email); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("email element of person %v not correctly formatted", p)
2024-10-15 16:20:04 +02:00
}
}
if p.Extensions != nil {
for i, e := range p.Extensions {
if err := e.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("extension element %v of person %v: %v", i, p, err)
}
2024-10-13 17:19:40 +02:00
}
}
return nil
}