atom/person.go

66 lines
1.6 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{
2024-10-20 15:59:46 +02:00
CommonAttributes: NewCommonAttributes(),
Name: name,
}
2024-10-15 16:07:41 +02:00
}
2024-10-20 14:31:54 +02:00
// AddExtension adds the Extension to the Person. It returns its index as an
// int.
2024-10-20 12:57:24 +02:00
func (p *Person) AddExtension(e *ExtensionElement) int {
return addToSlice(&p.Extensions, e)
}
2024-10-20 12:41:09 +02:00
// DeleteExtension deletes the Extension at index from the Person. It return an
// error.
2024-10-20 12:35:26 +02:00
func (p *Person) DeleteExtension(index int) error {
if err := deleteFromSlice(&p.Extensions, index); err != nil {
return fmt.Errorf("error deleting extension %v from person %v: %v", index, p, err)
}
return nil
}
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
}
}
for i, e := range p.Extensions {
if err := e.Check(); err != nil {
return fmt.Errorf("extension element %v of person %v: %v", i, p, err)
2024-10-13 17:19:40 +02:00
}
}
return nil
}