@ -62,7 +62,6 @@ type EditHookOption struct {
// Payloader payload is some part of one hook
// Payloader payload is some part of one hook
type Payloader interface {
type Payloader interface {
SetSecret ( string )
JSONPayload ( ) ( [ ] byte , error )
JSONPayload ( ) ( [ ] byte , error )
}
}
@ -124,7 +123,6 @@ var (
// CreatePayload FIXME
// CreatePayload FIXME
type CreatePayload struct {
type CreatePayload struct {
Secret string ` json:"secret" `
Sha string ` json:"sha" `
Sha string ` json:"sha" `
Ref string ` json:"ref" `
Ref string ` json:"ref" `
RefType string ` json:"ref_type" `
RefType string ` json:"ref_type" `
@ -132,11 +130,6 @@ type CreatePayload struct {
Sender * User ` json:"sender" `
Sender * User ` json:"sender" `
}
}
// SetSecret modifies the secret of the CreatePayload
func ( p * CreatePayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload return payload information
// JSONPayload return payload information
func ( p * CreatePayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * CreatePayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -181,7 +174,6 @@ const (
// DeletePayload represents delete payload
// DeletePayload represents delete payload
type DeletePayload struct {
type DeletePayload struct {
Secret string ` json:"secret" `
Ref string ` json:"ref" `
Ref string ` json:"ref" `
RefType string ` json:"ref_type" `
RefType string ` json:"ref_type" `
PusherType PusherType ` json:"pusher_type" `
PusherType PusherType ` json:"pusher_type" `
@ -189,11 +181,6 @@ type DeletePayload struct {
Sender * User ` json:"sender" `
Sender * User ` json:"sender" `
}
}
// SetSecret modifies the secret of the DeletePayload
func ( p * DeletePayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload implements Payload
// JSONPayload implements Payload
func ( p * DeletePayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * DeletePayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -209,17 +196,11 @@ func (p *DeletePayload) JSONPayload() ([]byte, error) {
// ForkPayload represents fork payload
// ForkPayload represents fork payload
type ForkPayload struct {
type ForkPayload struct {
Secret string ` json:"secret" `
Forkee * Repository ` json:"forkee" `
Forkee * Repository ` json:"forkee" `
Repo * Repository ` json:"repository" `
Repo * Repository ` json:"repository" `
Sender * User ` json:"sender" `
Sender * User ` json:"sender" `
}
}
// SetSecret modifies the secret of the ForkPayload
func ( p * ForkPayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload implements Payload
// JSONPayload implements Payload
func ( p * ForkPayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * ForkPayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -238,7 +219,6 @@ const (
// IssueCommentPayload represents a payload information of issue comment event.
// IssueCommentPayload represents a payload information of issue comment event.
type IssueCommentPayload struct {
type IssueCommentPayload struct {
Secret string ` json:"secret" `
Action HookIssueCommentAction ` json:"action" `
Action HookIssueCommentAction ` json:"action" `
Issue * Issue ` json:"issue" `
Issue * Issue ` json:"issue" `
Comment * Comment ` json:"comment" `
Comment * Comment ` json:"comment" `
@ -248,11 +228,6 @@ type IssueCommentPayload struct {
IsPull bool ` json:"is_pull" `
IsPull bool ` json:"is_pull" `
}
}
// SetSecret modifies the secret of the IssueCommentPayload
func ( p * IssueCommentPayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload implements Payload
// JSONPayload implements Payload
func ( p * IssueCommentPayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * IssueCommentPayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -278,18 +253,12 @@ const (
// ReleasePayload represents a payload information of release event.
// ReleasePayload represents a payload information of release event.
type ReleasePayload struct {
type ReleasePayload struct {
Secret string ` json:"secret" `
Action HookReleaseAction ` json:"action" `
Action HookReleaseAction ` json:"action" `
Release * Release ` json:"release" `
Release * Release ` json:"release" `
Repository * Repository ` json:"repository" `
Repository * Repository ` json:"repository" `
Sender * User ` json:"sender" `
Sender * User ` json:"sender" `
}
}
// SetSecret modifies the secret of the ReleasePayload
func ( p * ReleasePayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload implements Payload
// JSONPayload implements Payload
func ( p * ReleasePayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * ReleasePayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -305,7 +274,6 @@ func (p *ReleasePayload) JSONPayload() ([]byte, error) {
// PushPayload represents a payload information of push event.
// PushPayload represents a payload information of push event.
type PushPayload struct {
type PushPayload struct {
Secret string ` json:"secret" `
Ref string ` json:"ref" `
Ref string ` json:"ref" `
Before string ` json:"before" `
Before string ` json:"before" `
After string ` json:"after" `
After string ` json:"after" `
@ -317,11 +285,6 @@ type PushPayload struct {
Sender * User ` json:"sender" `
Sender * User ` json:"sender" `
}
}
// SetSecret modifies the secret of the PushPayload
func ( p * PushPayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload FIXME
// JSONPayload FIXME
func ( p * PushPayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * PushPayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -389,7 +352,6 @@ const (
// IssuePayload represents the payload information that is sent along with an issue event.
// IssuePayload represents the payload information that is sent along with an issue event.
type IssuePayload struct {
type IssuePayload struct {
Secret string ` json:"secret" `
Action HookIssueAction ` json:"action" `
Action HookIssueAction ` json:"action" `
Index int64 ` json:"number" `
Index int64 ` json:"number" `
Changes * ChangesPayload ` json:"changes,omitempty" `
Changes * ChangesPayload ` json:"changes,omitempty" `
@ -398,11 +360,6 @@ type IssuePayload struct {
Sender * User ` json:"sender" `
Sender * User ` json:"sender" `
}
}
// SetSecret modifies the secret of the IssuePayload.
func ( p * IssuePayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload encodes the IssuePayload to JSON, with an indentation of two spaces.
// JSONPayload encodes the IssuePayload to JSON, with an indentation of two spaces.
func ( p * IssuePayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * IssuePayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -430,7 +387,6 @@ type ChangesPayload struct {
// PullRequestPayload represents a payload information of pull request event.
// PullRequestPayload represents a payload information of pull request event.
type PullRequestPayload struct {
type PullRequestPayload struct {
Secret string ` json:"secret" `
Action HookIssueAction ` json:"action" `
Action HookIssueAction ` json:"action" `
Index int64 ` json:"number" `
Index int64 ` json:"number" `
Changes * ChangesPayload ` json:"changes,omitempty" `
Changes * ChangesPayload ` json:"changes,omitempty" `
@ -440,11 +396,6 @@ type PullRequestPayload struct {
Review * ReviewPayload ` json:"review" `
Review * ReviewPayload ` json:"review" `
}
}
// SetSecret modifies the secret of the PullRequestPayload.
func ( p * PullRequestPayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload FIXME
// JSONPayload FIXME
func ( p * PullRequestPayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * PullRequestPayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary
@ -476,18 +427,12 @@ const (
// RepositoryPayload payload for repository webhooks
// RepositoryPayload payload for repository webhooks
type RepositoryPayload struct {
type RepositoryPayload struct {
Secret string ` json:"secret" `
Action HookRepoAction ` json:"action" `
Action HookRepoAction ` json:"action" `
Repository * Repository ` json:"repository" `
Repository * Repository ` json:"repository" `
Organization * User ` json:"organization" `
Organization * User ` json:"organization" `
Sender * User ` json:"sender" `
Sender * User ` json:"sender" `
}
}
// SetSecret modifies the secret of the RepositoryPayload
func ( p * RepositoryPayload ) SetSecret ( secret string ) {
p . Secret = secret
}
// JSONPayload JSON representation of the payload
// JSONPayload JSON representation of the payload
func ( p * RepositoryPayload ) JSONPayload ( ) ( [ ] byte , error ) {
func ( p * RepositoryPayload ) JSONPayload ( ) ( [ ] byte , error ) {
json := jsoniter . ConfigCompatibleWithStandardLibrary
json := jsoniter . ConfigCompatibleWithStandardLibrary