246 lines
6.5 KiB
Go
246 lines
6.5 KiB
Go
// Copyright 2013 The go-github AUTHORS. All rights reserved.
|
||
//
|
||
// Use of this source code is governed by a BSD-style
|
||
// license that can be found in the LICENSE file.
|
||
|
||
package github
|
||
|
||
import (
|
||
"encoding/json"
|
||
"fmt"
|
||
"time"
|
||
)
|
||
|
||
// Event represents a GitHub event.
|
||
type Event struct {
|
||
Type *string `json:"type,omitempty"`
|
||
Public *bool `json:"public"`
|
||
RawPayload *json.RawMessage `json:"payload,omitempty"`
|
||
Repo *Repository `json:"repo,omitempty"`
|
||
Actor *User `json:"actor,omitempty"`
|
||
Org *Organization `json:"org,omitempty"`
|
||
CreatedAt *time.Time `json:"created_at,omitempty"`
|
||
ID *string `json:"id,omitempty"`
|
||
}
|
||
|
||
func (e Event) String() string {
|
||
return Stringify(e)
|
||
}
|
||
|
||
// Payload returns the parsed event payload. For recognized event types
|
||
// (PushEvent), a value of the corresponding struct type will be returned.
|
||
func (e *Event) Payload() (payload interface{}) {
|
||
switch *e.Type {
|
||
case "PushEvent":
|
||
payload = &PushEvent{}
|
||
}
|
||
if err := json.Unmarshal(*e.RawPayload, &payload); err != nil {
|
||
panic(err.Error())
|
||
}
|
||
return payload
|
||
}
|
||
|
||
// ListEvents drinks from the firehose of all public events across GitHub.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-public-events
|
||
func (s *ActivityService) ListEvents(opt *ListOptions) ([]Event, *Response, error) {
|
||
u, err := addOptions("events", opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|
||
|
||
// ListRepositoryEvents lists events for a repository.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-repository-events
|
||
func (s *ActivityService) ListRepositoryEvents(owner, repo string, opt *ListOptions) ([]Event, *Response, error) {
|
||
u := fmt.Sprintf("repos/%v/%v/events", owner, repo)
|
||
u, err := addOptions(u, opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|
||
|
||
// ListIssueEventsForRepository lists issue events for a repository.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-issue-events-for-a-repository
|
||
func (s *ActivityService) ListIssueEventsForRepository(owner, repo string, opt *ListOptions) ([]Event, *Response, error) {
|
||
u := fmt.Sprintf("repos/%v/%v/issues/events", owner, repo)
|
||
u, err := addOptions(u, opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|
||
|
||
// ListEventsForRepoNetwork lists public events for a network of repositories.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-public-events-for-a-network-of-repositories
|
||
func (s *ActivityService) ListEventsForRepoNetwork(owner, repo string, opt *ListOptions) ([]Event, *Response, error) {
|
||
u := fmt.Sprintf("networks/%v/%v/events", owner, repo)
|
||
u, err := addOptions(u, opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|
||
|
||
// ListEventsForOrganization lists public events for an organization.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-public-events-for-an-organization
|
||
func (s *ActivityService) ListEventsForOrganization(org string, opt *ListOptions) ([]Event, *Response, error) {
|
||
u := fmt.Sprintf("orgs/%v/events", org)
|
||
u, err := addOptions(u, opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|
||
|
||
// ListEventsPerformedByUser lists the events performed by a user. If publicOnly is
|
||
// true, only public events will be returned.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-events-performed-by-a-user
|
||
func (s *ActivityService) ListEventsPerformedByUser(user string, publicOnly bool, opt *ListOptions) ([]Event, *Response, error) {
|
||
var u string
|
||
if publicOnly {
|
||
u = fmt.Sprintf("users/%v/events/public", user)
|
||
} else {
|
||
u = fmt.Sprintf("users/%v/events", user)
|
||
}
|
||
u, err := addOptions(u, opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|
||
|
||
// ListEventsReceivedByUser lists the events received by a user. If publicOnly is
|
||
// true, only public events will be returned.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-events-that-a-user-has-received
|
||
func (s *ActivityService) ListEventsReceivedByUser(user string, publicOnly bool, opt *ListOptions) ([]Event, *Response, error) {
|
||
var u string
|
||
if publicOnly {
|
||
u = fmt.Sprintf("users/%v/received_events/public", user)
|
||
} else {
|
||
u = fmt.Sprintf("users/%v/received_events", user)
|
||
}
|
||
u, err := addOptions(u, opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|
||
|
||
// ListUserEventsForOrganization provides the user’s organization dashboard. You
|
||
// must be authenticated as the user to view this.
|
||
//
|
||
// GitHub API docs: http://developer.github.com/v3/activity/events/#list-events-for-an-organization
|
||
func (s *ActivityService) ListUserEventsForOrganization(org, user string, opt *ListOptions) ([]Event, *Response, error) {
|
||
u := fmt.Sprintf("users/%v/events/orgs/%v", user, org)
|
||
u, err := addOptions(u, opt)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
req, err := s.client.NewRequest("GET", u, nil)
|
||
if err != nil {
|
||
return nil, nil, err
|
||
}
|
||
|
||
events := new([]Event)
|
||
resp, err := s.client.Do(req, events)
|
||
if err != nil {
|
||
return nil, resp, err
|
||
}
|
||
|
||
return *events, resp, err
|
||
}
|