-
Notifications
You must be signed in to change notification settings - Fork 48
/
changeset.go
135 lines (111 loc) · 4.2 KB
/
changeset.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package osm
import (
"encoding/xml"
"time"
)
// ChangesetID is the primary key for an osm changeset.
type ChangesetID int64
// ObjectID is a helper returning the object id for this changeset id.
func (id ChangesetID) ObjectID() ObjectID {
return ObjectID(changesetMask | (id << versionBits))
}
// Changesets is a collection with some helper functions attached.
type Changesets []*Changeset
// A Changeset is a set of metadata around a set of osm changes.
type Changeset struct {
XMLName xmlNameJSONTypeCS `xml:"changeset" json:"type"`
ID ChangesetID `xml:"id,attr" json:"id"`
User string `xml:"user,attr" json:"user,omitempty"`
UserID UserID `xml:"uid,attr" json:"uid,omitempty"`
CreatedAt time.Time `xml:"created_at,attr" json:"created_at"`
ClosedAt time.Time `xml:"closed_at,attr" json:"closed_at"`
Open bool `xml:"open,attr" json:"open"`
ChangesCount int `xml:"num_changes,attr,omitempty" json:"num_changes,omitempty"`
MinLat float64 `xml:"min_lat,attr" json:"min_lat,omitempty"`
MaxLat float64 `xml:"max_lat,attr" json:"max_lat,omitempty"`
MinLon float64 `xml:"min_lon,attr" json:"min_lon,omitempty"`
MaxLon float64 `xml:"max_lon,attr" json:"max_lon,omitempty"`
CommentsCount int `xml:"comments_count,attr,omitempty" json:"comments_count,omitempty"`
Tags Tags `xml:"tag" json:"tags,omitempty"`
Discussion *ChangesetDiscussion `xml:"discussion,omitempty" json:"discussion,omitempty"`
Change *Change `xml:"-" json:"change,omitempty"`
}
// ObjectID returns the object id of the changeset.
func (c *Changeset) ObjectID() ObjectID {
return c.ID.ObjectID()
}
// Bounds returns the bounds of the changeset as a bounds object.
func (c *Changeset) Bounds() *Bounds {
return &Bounds{
MinLat: c.MinLat,
MaxLat: c.MaxLat,
MinLon: c.MinLon,
MaxLon: c.MaxLon,
}
}
// Comment is a helper and returns the changeset comment from the tag.
func (c *Changeset) Comment() string {
return c.Tags.Find("comment")
}
// CreatedBy is a helper and returns the changeset created by from the tag.
func (c *Changeset) CreatedBy() string {
return c.Tags.Find("created_by")
}
// Locale is a helper and returns the changeset locale from the tag.
func (c *Changeset) Locale() string {
return c.Tags.Find("locale")
}
// Host is a helper and returns the changeset host from the tag.
func (c *Changeset) Host() string {
return c.Tags.Find("host")
}
// ImageryUsed is a helper and returns imagery used for the changeset from the tag.
func (c *Changeset) ImageryUsed() string {
return c.Tags.Find("imagery_used")
}
// Source is a helper and returns source for the changeset from the tag.
func (c *Changeset) Source() string {
return c.Tags.Find("source")
}
// Bot is a helper and returns true if the bot tag is a yes.
func (c *Changeset) Bot() bool {
// As of July 5, 2015: 300k yes, 123 no, 8 other
return c.Tags.Find("bot") == "yes"
}
// IDs returns the ids of the changesets in the slice.
func (cs Changesets) IDs() []ChangesetID {
if len(cs) == 0 {
return nil
}
r := make([]ChangesetID, 0, len(cs))
for _, c := range cs {
r = append(r, c.ID)
}
return r
}
// ChangesetDiscussion is a conversation about a changeset.
type ChangesetDiscussion struct {
Comments []*ChangesetComment `xml:"comment" json:"comments"`
}
// ChangesetComment is a specific comment in a changeset discussion.
type ChangesetComment struct {
User string `xml:"user,attr" json:"user"`
UserID UserID `xml:"uid,attr" json:"uid"`
Timestamp time.Time `xml:"date,attr" json:"date"`
Text string `xml:"text" json:"text"`
}
// MarshalXML implements the xml.Marshaller method to exclude this
// whole element if the comments are empty.
func (csd ChangesetDiscussion) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if len(csd.Comments) == 0 {
return nil
}
if err := e.EncodeToken(start); err != nil {
return err
}
t := xml.StartElement{Name: xml.Name{Local: "comment"}}
if err := e.EncodeElement(csd.Comments, t); err != nil {
return err
}
return e.EncodeToken(start.End())
}