-
Notifications
You must be signed in to change notification settings - Fork 48
/
note.go
104 lines (87 loc) · 3.26 KB
/
note.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
package osm
import (
"encoding/xml"
"time"
)
// NoteID is the unique identifier for an osm note.
type NoteID int64
// ObjectID is a helper returning the object id for this note id.
func (id NoteID) ObjectID() ObjectID {
return ObjectID(noteMask | (id << versionBits))
}
const dateLayout = "2006-01-02 15:04:05 MST"
// Date is an object to decode the date format used in the osm notes xml api.
// The format is '2006-01-02 15:04:05 MST'.
type Date struct {
time.Time
}
// UnmarshalXML is meant to decode the osm note date formation of
// '2006-01-02 15:04:05 MST' into a time.Time object.
func (d *Date) UnmarshalXML(dec *xml.Decoder, start xml.StartElement) error {
var s string
err := dec.DecodeElement(&s, &start)
if err != nil {
return err
}
d.Time, err = time.Parse(dateLayout, s)
return err
}
// MarshalXML is meant to encode the time.Time into the osm note date formation
// of '2006-01-02 15:04:05 MST'.
func (d Date) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
return e.EncodeElement(d.Format(dateLayout), start)
}
// MarshalJSON will return null if the date is empty.
func (d Date) MarshalJSON() ([]byte, error) {
if d.IsZero() {
return []byte(`null`), nil
}
return marshalJSON(d.Time)
}
// Notes is a collection of notes with some helpers attached.
type Notes []*Note
// Note is information for other mappers dropped at a map location.
type Note struct {
XMLName xmlNameJSONTypeNote `xml:"note" json:"type"`
ID NoteID `xml:"id" json:"id"`
Lat float64 `xml:"lat,attr" json:"lat"`
Lon float64 `xml:"lon,attr" json:"lon"`
URL string `xml:"url" json:"url,omitempty"`
CommentURL string `xml:"comment_url" json:"comment_url,omitempty"`
CloseURL string `xml:"close_url" json:"close_url,omitempty"`
ReopenURL string `xml:"reopen_url" json:"reopen_url,omitempty"`
DateCreated Date `xml:"date_created" json:"date_created"`
DateClosed Date `xml:"date_closed" json:"date_closed,omitempty"`
Status NoteStatus `xml:"status" json:"status,omitempty"`
Comments []*NoteComment `xml:"comments>comment" json:"comments"`
}
// NoteComment is a comment on a note.
type NoteComment struct {
XMLName xml.Name `xml:"comment" json:"-"`
Date Date `xml:"date" json:"date"`
UserID UserID `xml:"uid" json:"uid,omitempty"`
User string `xml:"user" json:"user,omitempty"`
UserURL string `xml:"user_url" json:"user_url,omitempty"`
Action NoteCommentAction `xml:"action" json:"action"`
Text string `xml:"text" json:"text"`
HTML string `xml:"html" json:"html"`
}
// ObjectID returns the object id of the note.
func (n *Note) ObjectID() ObjectID {
return n.ID.ObjectID()
}
// NoteCommentAction are actions that a note comment took.
type NoteCommentAction string
// The set of comment actions.
var (
NoteCommentOpened NoteCommentAction = "opened"
NoteCommentComment NoteCommentAction = "commented"
NoteCommentClosed NoteCommentAction = "closed"
)
// NoteStatus is the status of the note.
type NoteStatus string
// A note can be open or closed.
var (
NoteOpen NoteStatus = "open"
NoteClosed NoteStatus = "closed"
)