Skip to content

Commit

Permalink
Use RFC3339 to format date in PersonInfo JSON, fixes #16
Browse files Browse the repository at this point in the history
  • Loading branch information
sameer committed Dec 30, 2018
1 parent 705872d commit 4937b56
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
16 changes: 14 additions & 2 deletions commit.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"fmt"
"strconv"
"sync"
"time"

cid "github.com/ipfs/go-cid"
node "github.com/ipfs/go-ipld-format"
Expand Down Expand Up @@ -41,10 +42,21 @@ type PersonInfo struct {
}

func (pi *PersonInfo) MarshalJSON() ([]byte, error) {
return json.Marshal(map[string]string{
sec, err := strconv.ParseInt(pi.Date, 10, 64)
if err != nil {
return nil, err
}
zoneOffset, err := strconv.Atoi(pi.Timezone)
if err != nil {
return nil, err
}
hr, mm := zoneOffset/100, zoneOffset%100
location := time.FixedZone("UTC", hr*60*60+mm*60)
date := time.Unix(sec, 0).In(location)
return json.Marshal(map[string]interface{}{
"name": pi.Name,
"email": pi.Email,
"date": pi.Date + " " + pi.Timezone,
"date": date,
})
}

Expand Down
8 changes: 8 additions & 0 deletions git_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,14 @@ func TestParsePersonInfo(t *testing.T) {
}

assert(t, pi.String() == "Someone <some.one@some.where>")

pi, err = parsePersonInfo([]byte("prefix Łukasz Magiera <magik6k@users.noreply.github.com> 1546187652 +0100"))
piJSON, err := pi.MarshalJSON()
assert(t, string(piJSON) == `{"date":"2018-12-30T17:34:12+01:00","email":"magik6k@users.noreply.github.com","name":"Łukasz Magiera"}`)

pi, err = parsePersonInfo([]byte("prefix Sameer <11097096+sameer@users.noreply.github.com> 1545162499 -0500"))
piJSON, err = pi.MarshalJSON()
assert(t, string(piJSON) == `{"date":"2018-12-18T14:48:19-05:00","email":"11097096+sameer@users.noreply.github.com","name":"Sameer"}`)
}

func assert(t *testing.T, ok bool) {
Expand Down

0 comments on commit 4937b56

Please sign in to comment.