Skip to content
This repository has been archived by the owner on Apr 2, 2022. It is now read-only.

Commit

Permalink
Merge pull request #17 from gedex/notifications
Browse files Browse the repository at this point in the history
Added Notification type and initial member method to retrieve it.
  • Loading branch information
VojtechVitek committed Feb 6, 2016
2 parents ec5f9b0 + ee635b2 commit 01a7a71
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 0 deletions.
13 changes: 13 additions & 0 deletions member.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,19 @@ func (m *Member) Boards(field ...string) (boards []Board, err error) {
return
}

func (m *Member) Notifications() (notifications []Notification, err error) {
body, err := m.client.Get("/members/" + m.Id + "/notifications")
if err != nil {
return
}

err = json.Unmarshal(body, &notifications)
for i := range notifications {
notifications[i].client = m.client
}
return
}

// TODO: Avatar sizes [170, 30]
func (m *Member) AvatarUrl() string {
return "https://trello-avatars.s3.amazonaws.com/" + m.AvatarHash + "/170.png"
Expand Down
70 changes: 70 additions & 0 deletions notification.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
/*
Copyright 2014 go-trello authors. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package trello

import "encoding/json"

type Notification struct {
client *Client
Id string `json:"id"`
Unread bool `json:"unread"`
Type string `json:"type"`
Date string `json:"date"`
Data struct {
ListBefore struct {
Id string `json:"id"`
Name string `json:"name"`
} `json:"listBefore"`
ListAfter struct {
Id string `json:"id"`
Name string `json:"name"`
} `json:"listAfter"`
Board struct {
Id string `json:"id"`
Name string `json:"name"`
ShortLink string `json:"shortLink"`
} `json:"board"`
Card struct {
Id string `json:"id"`
Name string `json:"name"`
ShortLink string `json:"shortLink"`
IdShort int `json:"idShort"`
} `json:"card"`
Old struct {
IdList string `json:"idList"`
} `json:"old"`
} `json:"data"`
IdMemberCreator string `json:"idMemberCreator"`
MemberCreator struct {
Id string `json:"id"`
AvatarHash string `json:"avatarHash"`
FullName string `json:"fullName"`
Initials string `json:"initials"`
Username string `json:"username"`
} `json:"memberCreator"`
}

func (c *Client) Notification(notificationId string) (notification *Notification, err error) {
body, err := c.Get("/notifications/" + notificationId)
if err != nil {
return
}

err = json.Unmarshal(body, &notification)
notification.client = c
return
}

0 comments on commit 01a7a71

Please sign in to comment.