blob: 89e6a56f475f65127c9f2ca5a16173060905887c (
plain)
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
|
package feed
import (
"encoding/json"
"fmt"
// "strconv"
"regexp"
"time"
)
// partial timestamp
type Time time.Time
var timeRe = regexp.MustCompile("\\A\\d{4}-\\d{2}-\\d{2}T\\d{2}:\\d{2}Z\\z")
// Unmarshal timestamp from JSON.
func (me *Time) UnmarshalJSON(b []byte) error {
// decode string, check for error
var s string
if err := json.Unmarshal(b, &s); err != nil {
return err
}
// match partial string regex
if !timeRe.MatchString(s) {
return fmt.Errorf("invalid time: \"%s\"", s)
}
// correct string suffix
s = s[0:16] + ":00Z"
// unmarshal time
var t time.Time
if err := t.UnmarshalText([]byte(s)); err != nil {
return err
}
// save time
*me = Time(t)
// return success
return nil
}
// Marshal time.
func (me *Time) MarshalText() ([]byte, error) {
return time.Time(*me).MarshalText()
}
|