Compare commits
No commits in common. "7f30fd54114b13106422189c7fd5c82aded5efa9" and "57db4178d04eeac3150774866ca06f5ec0f89f59" have entirely different histories.
7f30fd5411
...
57db4178d0
37
atom.go
37
atom.go
@ -11,6 +11,10 @@ import (
|
|||||||
"golang.org/x/text/language"
|
"golang.org/x/text/language"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func Unescape(s string) string {
|
||||||
|
return html.UnescapeString(s)
|
||||||
|
}
|
||||||
|
|
||||||
// isValidIRI checks whether an IRI is valid or not. It returns a bool.
|
// isValidIRI checks whether an IRI is valid or not. It returns a bool.
|
||||||
// https://www.w3.org/2011/04/XMLSchema/TypeLibrary-IRI-RFC3987.xsd
|
// https://www.w3.org/2011/04/XMLSchema/TypeLibrary-IRI-RFC3987.xsd
|
||||||
func isValidIRI(iri string) bool {
|
func isValidIRI(iri string) bool {
|
||||||
@ -18,6 +22,15 @@ func isValidIRI(iri string) bool {
|
|||||||
return regexp.MustCompile(pattern).MatchString(iri)
|
return regexp.MustCompile(pattern).MatchString(iri)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewIRI creates a new IRI. It returns a string and an error.
|
||||||
|
func NewIRI(iri string) (string, error) {
|
||||||
|
if !isValidIRI(iri) {
|
||||||
|
return "", fmt.Errorf("iri %v not correctly formatted", iri)
|
||||||
|
}
|
||||||
|
|
||||||
|
return iri, nil
|
||||||
|
}
|
||||||
|
|
||||||
// isCorrectlyEscaped checks whether a string is correctly escaped as per
|
// isCorrectlyEscaped checks whether a string is correctly escaped as per
|
||||||
// RFC4287. It returns a bool.
|
// RFC4287. It returns a bool.
|
||||||
func isCorrectlyEscaped(text string) bool {
|
func isCorrectlyEscaped(text string) bool {
|
||||||
@ -70,12 +83,31 @@ func isValidMediaType(m string) bool {
|
|||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewMediaType creates a new MediaType. It returns a string and an error.
|
||||||
|
func NewMediaType(m string) (string, error) {
|
||||||
|
if !isValidMediaType(m) {
|
||||||
|
return "", fmt.Errorf("media type %v invalid", m)
|
||||||
|
}
|
||||||
|
|
||||||
|
mediaType, _, _ := mime.ParseMediaType(m)
|
||||||
|
return mediaType, nil
|
||||||
|
}
|
||||||
|
|
||||||
// isValidLanguageTag checks whether a LanguageTag is valid. It returns a bool.
|
// isValidLanguageTag checks whether a LanguageTag is valid. It returns a bool.
|
||||||
func isValidLanguageTag(languageTag string) bool {
|
func isValidLanguageTag(languageTag string) bool {
|
||||||
_, err := language.Parse(languageTag)
|
_, err := language.Parse(languageTag)
|
||||||
return err == nil
|
return err == nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// NewLanguageTag creates a new LanguageTag. It returns a string and an error.
|
||||||
|
func NewLanguageTag(l string) (string, error) {
|
||||||
|
if !isValidLanguageTag(l) {
|
||||||
|
return "", fmt.Errorf("language tag %v invalid", l)
|
||||||
|
}
|
||||||
|
|
||||||
|
return l, nil
|
||||||
|
}
|
||||||
|
|
||||||
// isValidAttribute checks whether an Attribute is valid. It returns a bool.
|
// isValidAttribute checks whether an Attribute is valid. It returns a bool.
|
||||||
func isValidAttribute(attribute string) bool {
|
func isValidAttribute(attribute string) bool {
|
||||||
regex := regexp.MustCompile(`^[a-zA-Z0-9_]+="[^"]*"$`)
|
regex := regexp.MustCompile(`^[a-zA-Z0-9_]+="[^"]*"$`)
|
||||||
@ -86,8 +118,3 @@ func isValidAttribute(attribute string) bool {
|
|||||||
func NewURN() string {
|
func NewURN() string {
|
||||||
return fmt.Sprint("urn:uuid:", uuid.New())
|
return fmt.Sprint("urn:uuid:", uuid.New())
|
||||||
}
|
}
|
||||||
|
|
||||||
// Unescape unescapes a string. It returns an IRI.
|
|
||||||
func Unescape(s string) string {
|
|
||||||
return html.UnescapeString(s)
|
|
||||||
}
|
|
||||||
|
@ -15,10 +15,7 @@ type Category struct {
|
|||||||
|
|
||||||
// NewCategory creates a new Category. It returns a *Category.
|
// NewCategory creates a new Category. It returns a *Category.
|
||||||
func NewCategory(term string) *Category {
|
func NewCategory(term string) *Category {
|
||||||
return &Category{
|
return &Category{Term: term}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Term: term,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetLabel sets the Label attribute of the Category.
|
// SetLabel sets the Label attribute of the Category.
|
||||||
|
@ -13,7 +13,7 @@ type CommonAttributes struct {
|
|||||||
|
|
||||||
// NewCommonAttributes creates a new set of CommonAttributes. It returns a
|
// NewCommonAttributes creates a new set of CommonAttributes. It returns a
|
||||||
// *CommonAttributes.
|
// *CommonAttributes.
|
||||||
func newCommonAttributes() *CommonAttributes {
|
func NewCommonAttributes() *CommonAttributes {
|
||||||
return new(CommonAttributes)
|
return new(CommonAttributes)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
5
date.go
5
date.go
@ -18,10 +18,7 @@ func DateTime(t time.Time) string {
|
|||||||
|
|
||||||
// NewDate creates a new Date. It returns a *Date.
|
// NewDate creates a new Date. It returns a *Date.
|
||||||
func NewDate(t time.Time) *Date {
|
func NewDate(t time.Time) *Date {
|
||||||
return &Date{
|
return &Date{DateTime: DateTime(t)}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
DateTime: DateTime(t),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the Date for incompatibilities with RFC4287. It returns an
|
// Check checks the Date for incompatibilities with RFC4287. It returns an
|
||||||
|
1
entry.go
1
entry.go
@ -59,7 +59,6 @@ func (e *Entry) checkAuthors(authorInFeed bool) error {
|
|||||||
// NewEntry creates a new Entry. It returns a *Entry.
|
// NewEntry creates a new Entry. It returns a *Entry.
|
||||||
func NewEntry(title string) *Entry {
|
func NewEntry(title string) *Entry {
|
||||||
return &Entry{
|
return &Entry{
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
ID: NewID(NewURN()),
|
ID: NewID(NewURN()),
|
||||||
Title: NewText("text", title),
|
Title: NewText("text", title),
|
||||||
Updated: NewDate(time.Now()),
|
Updated: NewDate(time.Now()),
|
||||||
|
1
feed.go
1
feed.go
@ -28,7 +28,6 @@ type Feed struct {
|
|||||||
// NewFeed creates a new Feed. It returns a *Feed.
|
// NewFeed creates a new Feed. It returns a *Feed.
|
||||||
func NewFeed(title string) *Feed {
|
func NewFeed(title string) *Feed {
|
||||||
return &Feed{
|
return &Feed{
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
ID: NewID(NewURN()),
|
ID: NewID(NewURN()),
|
||||||
Title: NewText("text", title),
|
Title: NewText("text", title),
|
||||||
Updated: NewDate(time.Now()),
|
Updated: NewDate(time.Now()),
|
||||||
|
@ -16,10 +16,7 @@ type Generator struct {
|
|||||||
|
|
||||||
// NewGenerator creates a new Generator. It returns a *Generator.
|
// NewGenerator creates a new Generator. It returns a *Generator.
|
||||||
func NewGenerator(text string) *Generator {
|
func NewGenerator(text string) *Generator {
|
||||||
return &Generator{
|
return &Generator{Text: html.UnescapeString(text)}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Text: html.UnescapeString(text),
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the Generator for incompatibilities with RFC4287. It returns an
|
// Check checks the Generator for incompatibilities with RFC4287. It returns an
|
||||||
|
5
icon.go
5
icon.go
@ -14,10 +14,7 @@ type Icon struct {
|
|||||||
|
|
||||||
// NewIcon creates a new Icon. It returns a *Icon.
|
// NewIcon creates a new Icon. It returns a *Icon.
|
||||||
func NewIcon(uri string) *Icon {
|
func NewIcon(uri string) *Icon {
|
||||||
return &Icon{
|
return &Icon{URI: uri}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
URI: uri,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the Icon for incompatibilities with RFC4287. It returns an
|
// Check checks the Icon for incompatibilities with RFC4287. It returns an
|
||||||
|
5
id.go
5
id.go
@ -14,10 +14,7 @@ type ID struct {
|
|||||||
|
|
||||||
// NewID creates a new ID. It returns a *ID.
|
// NewID creates a new ID. It returns a *ID.
|
||||||
func NewID(uri string) *ID {
|
func NewID(uri string) *ID {
|
||||||
return &ID{
|
return &ID{URI: uri}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
URI: uri,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the ID for incompatibilities with RFC4287. It returns an error.
|
// Check checks the ID for incompatibilities with RFC4287. It returns an error.
|
||||||
|
@ -17,12 +17,7 @@ type InlineOtherContent struct {
|
|||||||
// *InlineOtherContent and an error.
|
// *InlineOtherContent and an error.
|
||||||
func newInlineOtherContent(mediaType string, content any) *InlineOtherContent {
|
func newInlineOtherContent(mediaType string, content any) *InlineOtherContent {
|
||||||
mediaType, _, _ = mime.ParseMediaType(mediaType)
|
mediaType, _, _ = mime.ParseMediaType(mediaType)
|
||||||
|
return &InlineOtherContent{Type: mediaType, AnyElement: content}
|
||||||
return &InlineOtherContent{
|
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Type: mediaType,
|
|
||||||
AnyElement: content,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// isContent checks whether the InlineOtherContent is a Content. It returns a
|
// isContent checks whether the InlineOtherContent is a Content. It returns a
|
||||||
|
@ -15,11 +15,7 @@ type InlineTextContent struct {
|
|||||||
// newInlineTextContent creates a new InlineTextContent. It returns a
|
// newInlineTextContent creates a new InlineTextContent. It returns a
|
||||||
// *InlineTextContent.
|
// *InlineTextContent.
|
||||||
func newInlineTextContent(mediaType, text string) *InlineTextContent {
|
func newInlineTextContent(mediaType, text string) *InlineTextContent {
|
||||||
return &InlineTextContent{
|
return &InlineTextContent{Type: mediaType, Text: text}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Type: mediaType,
|
|
||||||
Text: text,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// isContent checks whether the InlineTextContent is a Content. It returns a
|
// isContent checks whether the InlineTextContent is a Content. It returns a
|
||||||
|
@ -15,11 +15,7 @@ type InlineXHTMLContent struct {
|
|||||||
// newInlineXHTMLContent creates a new InlineXHTMLContent. It returns a
|
// newInlineXHTMLContent creates a new InlineXHTMLContent. It returns a
|
||||||
// *InlineXHTMLContent.
|
// *InlineXHTMLContent.
|
||||||
func newInlineXHTMLContent(mediaType string, div *XHTMLDiv) *InlineXHTMLContent {
|
func newInlineXHTMLContent(mediaType string, div *XHTMLDiv) *InlineXHTMLContent {
|
||||||
return &InlineXHTMLContent{
|
return &InlineXHTMLContent{Type: mediaType, XHTMLDiv: div}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Type: mediaType,
|
|
||||||
XHTMLDiv: div,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// isContent checks whether the InlineXHTMLContent is a Content. It returns a
|
// isContent checks whether the InlineXHTMLContent is a Content. It returns a
|
||||||
|
5
link.go
5
link.go
@ -19,10 +19,7 @@ type Link struct {
|
|||||||
|
|
||||||
// NewLink creates a new Link. It returns a *Link.
|
// NewLink creates a new Link. It returns a *Link.
|
||||||
func NewLink(href string) *Link {
|
func NewLink(href string) *Link {
|
||||||
return &Link{
|
return &Link{Href: href}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Href: href,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the Link for incompatibilities with RFC4287. It returns an
|
// Check checks the Link for incompatibilities with RFC4287. It returns an
|
||||||
|
5
logo.go
5
logo.go
@ -13,10 +13,7 @@ type Logo struct {
|
|||||||
|
|
||||||
// NewLogo creates a new Logo. It returns a *Logo.
|
// NewLogo creates a new Logo. It returns a *Logo.
|
||||||
func NewLogo(uri string) *Logo {
|
func NewLogo(uri string) *Logo {
|
||||||
return &Logo{
|
return &Logo{URI: uri}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
URI: uri,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the Logo for incompatibilities with RFC4287. It returns an
|
// Check checks the Logo for incompatibilities with RFC4287. It returns an
|
||||||
|
@ -17,12 +17,7 @@ type OutOfLineContent struct {
|
|||||||
// *OutOfLineContent.
|
// *OutOfLineContent.
|
||||||
func newOutOfLineContent(mediaType, src string) *OutOfLineContent {
|
func newOutOfLineContent(mediaType, src string) *OutOfLineContent {
|
||||||
mediaType, _, _ = mime.ParseMediaType(mediaType)
|
mediaType, _, _ = mime.ParseMediaType(mediaType)
|
||||||
|
return &OutOfLineContent{Type: mediaType, SRC: src}
|
||||||
return &OutOfLineContent{
|
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Type: mediaType,
|
|
||||||
SRC: src,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// isContent checks whether the OutOfLineContent is a Content. It returns a
|
// isContent checks whether the OutOfLineContent is a Content. It returns a
|
||||||
|
@ -15,10 +15,7 @@ type Person struct {
|
|||||||
|
|
||||||
// NewPerson creates a new Person. It returns a *Person.
|
// NewPerson creates a new Person. It returns a *Person.
|
||||||
func NewPerson(name string) *Person {
|
func NewPerson(name string) *Person {
|
||||||
return &Person{
|
return &Person{Name: name}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Name: name,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// AddExtension adds the Extension to the Person.
|
// AddExtension adds the Extension to the Person.
|
||||||
|
@ -15,11 +15,7 @@ func (p *PlainText) isText() bool { return true }
|
|||||||
|
|
||||||
// newPlainText creates a new PlainText. It returns a *PlainText.
|
// newPlainText creates a new PlainText. It returns a *PlainText.
|
||||||
func newPlainText(textType, content string) *PlainText {
|
func newPlainText(textType, content string) *PlainText {
|
||||||
return &PlainText{
|
return &PlainText{Type: textType, Text: content}
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Type: textType,
|
|
||||||
Text: content,
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the PlainText for incompatibilities with RFC4287. It returns an
|
// Check checks the PlainText for incompatibilities with RFC4287. It returns an
|
||||||
|
@ -25,7 +25,7 @@ type Source struct {
|
|||||||
|
|
||||||
// NewSource creates a new Source. It returns a *Source.
|
// NewSource creates a new Source. It returns a *Source.
|
||||||
func NewSource() *Source {
|
func NewSource() *Source {
|
||||||
return &Source{CommonAttributes: newCommonAttributes()}
|
return new(Source)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Check checks the Source for incompatibilities with RFC4287. It returns an
|
// Check checks the Source for incompatibilities with RFC4287. It returns an
|
||||||
|
@ -16,7 +16,6 @@ func (x *XHTMLText) isText() bool { return true }
|
|||||||
// newPlainText creates a new PlainText. It returns a *PlainText.
|
// newPlainText creates a new PlainText. It returns a *PlainText.
|
||||||
func newXHTMLText(textType, content string) *XHTMLText {
|
func newXHTMLText(textType, content string) *XHTMLText {
|
||||||
return &XHTMLText{
|
return &XHTMLText{
|
||||||
CommonAttributes: newCommonAttributes(),
|
|
||||||
Type: textType,
|
Type: textType,
|
||||||
XHTMLDiv: NewXHTMLDiv(content),
|
XHTMLDiv: NewXHTMLDiv(content),
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user