atom/source.go

219 lines
5.7 KiB
Go
Raw Normal View History

2024-10-16 21:28:04 +02:00
package atom
2024-10-13 17:19:40 +02:00
2024-10-17 20:10:18 +02:00
import (
"encoding/xml"
"fmt"
)
2024-10-13 17:19:40 +02:00
type Source struct {
2024-10-17 20:10:18 +02:00
XMLName xml.Name `xml:"source"`
2024-10-13 17:19:40 +02:00
*CommonAttributes
Authors []*Person `xml:"author,omitempty"`
2024-10-17 20:10:18 +02:00
Categories []*Category `xml:",omitempty"`
2024-10-13 17:19:40 +02:00
Contributors []*Person `xml:"contributor,omitempty"`
2024-10-17 20:10:18 +02:00
Generator *Generator `xml:",omitempty"`
Icon *Icon `xml:",omitempty"`
ID *ID `xml:",omitempty"`
Links []*Link `xml:",omitempty"`
Logo *Logo `xml:",omitempty"`
2024-10-16 18:41:42 +02:00
Rights Text `xml:"rights,omitempty"`
Subtitle Text `xml:"subtitle,omitempty"`
Title Text `xml:"title,omitempty"`
2024-10-13 17:19:40 +02:00
Updated *Date `xml:"updated,omitempty"`
2024-10-13 20:42:17 +02:00
Extensions []*ExtensionElement `xml:",any,omitempty"`
2024-10-13 17:19:40 +02:00
}
// NewSource creates a new Source. It returns a *Source.
func NewSource() *Source {
return &Source{CommonAttributes: newCommonAttributes()}
}
// AddAuthor adds the Person as an author to the Source.
func (s *Source) AddAuthor(p *Person) {
if s.Authors == nil {
s.Authors = make([]*Person, 1)
s.Authors[0] = p
} else {
s.Authors = append(s.Authors, p)
}
}
// DeleteAuthor deletes the Person from the Source. It return an error.
func (s *Source) DeleteAuthor(id int) error {
length := len(s.Authors)
if id > length {
return fmt.Errorf("error deleting author from source %v: id %v out of range %v", s, id, length)
}
s.Authors = append(s.Authors[:id], s.Authors[id+1:]...)
return nil
}
// AddCategory adds the Category to the Source.
func (s *Source) AddCategory(c *Category) {
if s.Categories == nil {
s.Categories = make([]*Category, 1)
s.Categories[0] = c
} else {
s.Categories = append(s.Categories, c)
}
}
// DeleteCategory deletes the Category from the Source. It return an error.
func (s *Source) DeleteCategory(id int) error {
length := len(s.Categories)
if id > length {
return fmt.Errorf("error deleting category from source %v: id %v out of range %v", s, id, length)
}
s.Categories = append(s.Categories[:id], s.Categories[id+1:]...)
return nil
}
// AddContributor adds the Person as a contributor to the Source.
func (s *Source) AddContributor(c *Person) {
if s.Contributors == nil {
s.Contributors = make([]*Person, 1)
s.Contributors[0] = c
} else {
s.Contributors = append(s.Contributors, c)
}
}
// DeleteContributor deletes the Person from the Source. It return an error.
func (s *Source) DeleteContributor(id int) error {
length := len(s.Contributors)
if id > length {
return fmt.Errorf("error deleting contributor from source %v: id %v out of range %v", s, id, length)
}
s.Contributors = append(s.Contributors[:id], s.Contributors[id+1:]...)
return nil
}
// AddLink adds the Link to the Source.
func (s *Source) AddLink(l *Link) {
if s.Links == nil {
s.Links = make([]*Link, 1)
s.Links[0] = l
} else {
s.Links = append(s.Links, l)
}
}
// DeleteLink deletes the Link from the Source. It return an error.
func (s *Source) DeleteLink(id int) error {
length := len(s.Links)
if id > length {
return fmt.Errorf("error deleting link from source %v: id %v out of range %v", s, id, length)
}
s.Links = append(s.Links[:id], s.Links[id+1:]...)
return nil
}
// AddExtension adds the ExtensionElement to the Source.
func (s *Source) AddExtension(e *ExtensionElement) {
if s.Extensions == nil {
s.Extensions = make([]*ExtensionElement, 1)
s.Extensions[0] = e
} else {
s.Extensions = append(s.Extensions, e)
}
}
// DeleteExtension deletes the Extension from the Source. It return an error.
func (s *Source) DeleteExtension(id int) error {
length := len(s.Extensions)
if id > length {
return fmt.Errorf("error deleting extension from source %v: id %v out of range %v", s, id, length)
}
s.Extensions = append(s.Extensions[:id], s.Extensions[id+1:]...)
return nil
}
2024-10-16 19:59:28 +02:00
// Check checks the Source for incompatibilities with RFC4287. It returns an
// error.
2024-10-13 17:19:40 +02:00
func (s *Source) Check() error {
2024-10-16 18:41:42 +02:00
for i, a := range s.Authors {
if err := a.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("author element %v of source %v: %v", i, s, err)
2024-10-13 17:19:40 +02:00
}
}
2024-10-16 18:41:42 +02:00
for i, c := range s.Categories {
if err := c.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("category element %v of source %v: %v", i, s, err)
2024-10-13 17:19:40 +02:00
}
}
2024-10-16 18:41:42 +02:00
for i, c := range s.Contributors {
if err := c.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("contributor element %v of source %v: %v", i, s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.Generator != nil {
if err := s.Generator.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("generator element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.Icon != nil {
if err := s.Icon.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("icon element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.ID != nil {
if err := s.ID.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("id element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
2024-10-16 18:41:42 +02:00
for i, l := range s.Links {
if err := l.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("link element %v of source %v: %v", i, s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.Logo != nil {
if err := s.Logo.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("logo element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.Rights != nil {
2024-10-16 18:41:42 +02:00
if err := s.Rights.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("rights element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.Subtitle != nil {
2024-10-16 18:41:42 +02:00
if err := s.Subtitle.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("subtitle element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.Title != nil {
2024-10-16 18:41:42 +02:00
if err := s.Title.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("title element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
if s.Updated != nil {
if err := s.Updated.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("updated element of source %v: %v", s, err)
2024-10-13 17:19:40 +02:00
}
}
2024-10-16 18:41:42 +02:00
for i, e := range s.Extensions {
if err := e.Check(); err != nil {
2024-10-18 19:04:08 +02:00
return fmt.Errorf("extension element %v of source %v: %v", i, s, err)
2024-10-13 17:19:40 +02:00
}
}
return nil
}