yanic/jsontime/jsontime.go

40 lines
698 B
Go
Raw Normal View History

2016-03-20 17:10:39 +01:00
package jsontime
import (
2016-03-21 10:12:45 +01:00
"errors"
2016-03-20 17:10:39 +01:00
"time"
)
const TimeFormat = "2006-01-02T15:04:05"
2016-03-21 10:12:45 +01:00
type Time struct {
time time.Time
}
2016-03-20 17:10:39 +01:00
func Now() Time {
2016-03-21 10:12:45 +01:00
return Time{time.Now()}
2016-03-20 17:10:39 +01:00
}
func (t Time) MarshalJSON() ([]byte, error) {
2016-03-21 10:12:45 +01:00
stamp := `"` + t.time.Format(TimeFormat) + `"`
2016-03-20 17:10:39 +01:00
return []byte(stamp), nil
}
2016-03-21 10:12:45 +01:00
func (t *Time) UnmarshalJSON(data []byte) (err error) {
if len(data) < 2 || data[0] != '"' || data[len(data)-1] != '"' {
return errors.New("invalid jsontime")
}
if nativeTime, err := time.Parse(TimeFormat, string(data[1:len(data)-1])); err == nil {
t.time = nativeTime
2016-03-20 17:10:39 +01:00
}
return
}
2016-03-21 10:12:45 +01:00
func (t Time) Unix() int64 {
return t.time.Unix()
}
func (t Time) IsZero() bool {
return t.time.IsZero()
}