-
Notifications
You must be signed in to change notification settings - Fork 0
/
atom.go
40 lines (35 loc) · 935 Bytes
/
atom.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package blogplus
import (
"encoding/xml"
)
type AtomFeed struct {
XMLName xml.Name `xml:"http://www.w3.org/2005/Atom feed"`
Id string `xml:"id"`
Title string `xml:"title"`
Link []AtomLink
Updated string `xml:"updated"`
AuthorName string `xml:"author>name"`
AuthorUri string `xml:"author>uri"`
Logo string `xml:"logo"`
Entries []AtomEntry
}
type AtomLink struct {
XMLName xml.Name `xml:"link"`
Href string `xml:"href,attr"`
Rel string `xml:"rel,attr,omitempty"`
}
type AtomEntry struct {
XMLName xml.Name `xml:"entry"`
Id string `xml:"id"`
Link AtomLink
Title string `xml:"title"`
Content AtomContent
Summary string `xml:"summary"`
Published string `xml:"published"`
Updated string `xml:"updated"`
}
type AtomContent struct {
XMLName xml.Name `xml:"content"`
Content string `xml:",chardata"`
Type string `xml:"type,attr"`
}