aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/Azure/go-autorest/autorest/date/time.go
blob: c1af6296348ddc82af1bac3887fd22fc58663b2e (plain) (blame)
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
package date

import (
    "regexp"
    "time"
)

// Azure reports time in UTC but it doesn't include the 'Z' time zone suffix in some cases.
const (
    azureUtcFormatJSON = `"2006-01-02T15:04:05.999999999"`
    azureUtcFormat     = "2006-01-02T15:04:05.999999999"
    rfc3339JSON        = `"` + time.RFC3339Nano + `"`
    rfc3339            = time.RFC3339Nano
    tzOffsetRegex      = `(Z|z|\+|-)(\d+:\d+)*"*$`
)

// Time defines a type similar to time.Time but assumes a layout of RFC3339 date-time (i.e.,
// 2006-01-02T15:04:05Z).
type Time struct {
    time.Time
}

// MarshalBinary preserves the Time as a byte array conforming to RFC3339 date-time (i.e.,
// 2006-01-02T15:04:05Z).
func (t Time) MarshalBinary() ([]byte, error) {
    return t.Time.MarshalText()
}

// UnmarshalBinary reconstitutes a Time saved as a byte array conforming to RFC3339 date-time
// (i.e., 2006-01-02T15:04:05Z).
func (t *Time) UnmarshalBinary(data []byte) error {
    return t.UnmarshalText(data)
}

// MarshalJSON preserves the Time as a JSON string conforming to RFC3339 date-time (i.e.,
// 2006-01-02T15:04:05Z).
func (t Time) MarshalJSON() (json []byte, err error) {
    return t.Time.MarshalJSON()
}

// UnmarshalJSON reconstitutes the Time from a JSON string conforming to RFC3339 date-time
// (i.e., 2006-01-02T15:04:05Z).
func (t *Time) UnmarshalJSON(data []byte) (err error) {
    timeFormat := azureUtcFormatJSON
    match, err := regexp.Match(tzOffsetRegex, data)
    if err != nil {
        return err
    } else if match {
        timeFormat = rfc3339JSON
    }
    t.Time, err = ParseTime(timeFormat, string(data))
    return err
}

// MarshalText preserves the Time as a byte array conforming to RFC3339 date-time (i.e.,
// 2006-01-02T15:04:05Z).
func (t Time) MarshalText() (text []byte, err error) {
    return t.Time.MarshalText()
}

// UnmarshalText reconstitutes a Time saved as a byte array conforming to RFC3339 date-time
// (i.e., 2006-01-02T15:04:05Z).
func (t *Time) UnmarshalText(data []byte) (err error) {
    timeFormat := azureUtcFormat
    match, err := regexp.Match(tzOffsetRegex, data)
    if err != nil {
        return err
    } else if match {
        timeFormat = rfc3339
    }
    t.Time, err = ParseTime(timeFormat, string(data))
    return err
}

// String returns the Time formatted as an RFC3339 date-time string (i.e.,
// 2006-01-02T15:04:05Z).
func (t Time) String() string {
    // Note: time.Time.String does not return an RFC3339 compliant string, time.Time.MarshalText does.
    b, err := t.MarshalText()
    if err != nil {
        return ""
    }
    return string(b)
}

// ToTime returns a Time as a time.Time
func (t Time) ToTime() time.Time {
    return t.Time
}