fix: Add secret to all webhook's payload where it has been missing (#5199)
* fix: Add secret to all webhook's payload where it has been missing affects webhooks for: * Delete * Fork * IssueComment * Release
This commit is contained in:
parent
48badd59e9
commit
fb14458010
8 changed files with 75 additions and 27 deletions
4
Gopkg.lock
generated
4
Gopkg.lock
generated
|
@ -11,11 +11,11 @@
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
branch = "master"
|
branch = "master"
|
||||||
digest = "1:5e7f14543006a44047fb1d0df16da08b2ebc2428f1fd53bd8af26a2b34928b11"
|
digest = "1:bf4f822f636b99ac7d4f8fa5210a7439bacaf8d1f15d5783956bdd5dd2069bdc"
|
||||||
name = "code.gitea.io/sdk"
|
name = "code.gitea.io/sdk"
|
||||||
packages = ["gitea"]
|
packages = ["gitea"]
|
||||||
pruneopts = "NUT"
|
pruneopts = "NUT"
|
||||||
revision = "021567c9c12fe289b8980c34e81e6684434dd082"
|
revision = "11c860c8e49a23be26e6d6c6a039a46ad2ae1d27"
|
||||||
|
|
||||||
[[projects]]
|
[[projects]]
|
||||||
digest = "1:3fcef06a1a6561955c94af6c7757a6fa37605eb653f0d06ab960e5bb80092195"
|
digest = "1:3fcef06a1a6561955c94af6c7757a6fa37605eb653f0d06ab960e5bb80092195"
|
||||||
|
|
|
@ -6366,6 +6366,10 @@
|
||||||
"format": "date-time",
|
"format": "date-time",
|
||||||
"x-go-name": "Created"
|
"x-go-name": "Created"
|
||||||
},
|
},
|
||||||
|
"fingerprint": {
|
||||||
|
"type": "string",
|
||||||
|
"x-go-name": "Fingerprint"
|
||||||
|
},
|
||||||
"id": {
|
"id": {
|
||||||
"type": "integer",
|
"type": "integer",
|
||||||
"format": "int64",
|
"format": "int64",
|
||||||
|
@ -6375,10 +6379,18 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"x-go-name": "Key"
|
"x-go-name": "Key"
|
||||||
},
|
},
|
||||||
|
"key_id": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int64",
|
||||||
|
"x-go-name": "KeyID"
|
||||||
|
},
|
||||||
"read_only": {
|
"read_only": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"x-go-name": "ReadOnly"
|
"x-go-name": "ReadOnly"
|
||||||
},
|
},
|
||||||
|
"repository": {
|
||||||
|
"$ref": "#/definitions/Repository"
|
||||||
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"x-go-name": "Title"
|
"x-go-name": "Title"
|
||||||
|
@ -7260,6 +7272,14 @@
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"x-go-name": "Key"
|
"x-go-name": "Key"
|
||||||
},
|
},
|
||||||
|
"key_type": {
|
||||||
|
"type": "string",
|
||||||
|
"x-go-name": "KeyType"
|
||||||
|
},
|
||||||
|
"read_only": {
|
||||||
|
"type": "boolean",
|
||||||
|
"x-go-name": "ReadOnly"
|
||||||
|
},
|
||||||
"title": {
|
"title": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"x-go-name": "Title"
|
"x-go-name": "Title"
|
||||||
|
@ -7267,6 +7287,9 @@
|
||||||
"url": {
|
"url": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"x-go-name": "URL"
|
"x-go-name": "URL"
|
||||||
|
},
|
||||||
|
"user": {
|
||||||
|
"$ref": "#/definitions/User"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"x-go-package": "code.gitea.io/gitea/vendor/code.gitea.io/sdk/gitea"
|
"x-go-package": "code.gitea.io/gitea/vendor/code.gitea.io/sdk/gitea"
|
||||||
|
@ -7481,6 +7504,10 @@
|
||||||
"description": "Repository represents a repository",
|
"description": "Repository represents a repository",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"archived": {
|
||||||
|
"type": "boolean",
|
||||||
|
"x-go-name": "Archived"
|
||||||
|
},
|
||||||
"clone_url": {
|
"clone_url": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
"x-go-name": "CloneURL"
|
"x-go-name": "CloneURL"
|
||||||
|
|
22
vendor/code.gitea.io/sdk/gitea/hook.go
generated
vendored
22
vendor/code.gitea.io/sdk/gitea/hook.go
generated
vendored
|
@ -199,7 +199,7 @@ type CreatePayload struct {
|
||||||
Sender *User `json:"sender"`
|
Sender *User `json:"sender"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetSecret FIXME
|
// SetSecret modifies the secret of the CreatePayload
|
||||||
func (p *CreatePayload) SetSecret(secret string) {
|
func (p *CreatePayload) SetSecret(secret string) {
|
||||||
p.Secret = secret
|
p.Secret = secret
|
||||||
}
|
}
|
||||||
|
@ -246,6 +246,7 @@ 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"`
|
||||||
|
@ -253,8 +254,9 @@ type DeletePayload struct {
|
||||||
Sender *User `json:"sender"`
|
Sender *User `json:"sender"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetSecret implements Payload
|
// SetSecret modifies the secret of the DeletePayload
|
||||||
func (p *DeletePayload) SetSecret(secret string) {
|
func (p *DeletePayload) SetSecret(secret string) {
|
||||||
|
p.Secret = secret
|
||||||
}
|
}
|
||||||
|
|
||||||
// JSONPayload implements Payload
|
// JSONPayload implements Payload
|
||||||
|
@ -271,13 +273,15 @@ 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 implements Payload
|
// SetSecret modifies the secret of the ForkPayload
|
||||||
func (p *ForkPayload) SetSecret(secret string) {
|
func (p *ForkPayload) SetSecret(secret string) {
|
||||||
|
p.Secret = secret
|
||||||
}
|
}
|
||||||
|
|
||||||
// JSONPayload implements Payload
|
// JSONPayload implements Payload
|
||||||
|
@ -297,6 +301,7 @@ 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"`
|
||||||
|
@ -305,8 +310,9 @@ type IssueCommentPayload struct {
|
||||||
Sender *User `json:"sender"`
|
Sender *User `json:"sender"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetSecret implements Payload
|
// SetSecret modifies the secret of the IssueCommentPayload
|
||||||
func (p *IssueCommentPayload) SetSecret(secret string) {
|
func (p *IssueCommentPayload) SetSecret(secret string) {
|
||||||
|
p.Secret = secret
|
||||||
}
|
}
|
||||||
|
|
||||||
// JSONPayload implements Payload
|
// JSONPayload implements Payload
|
||||||
|
@ -333,14 +339,16 @@ 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 implements Payload
|
// SetSecret modifies the secret of the ReleasePayload
|
||||||
func (p *ReleasePayload) SetSecret(secret string) {
|
func (p *ReleasePayload) SetSecret(secret string) {
|
||||||
|
p.Secret = secret
|
||||||
}
|
}
|
||||||
|
|
||||||
// JSONPayload implements Payload
|
// JSONPayload implements Payload
|
||||||
|
@ -368,7 +376,7 @@ type PushPayload struct {
|
||||||
Sender *User `json:"sender"`
|
Sender *User `json:"sender"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetSecret FIXME
|
// SetSecret modifies the secret of the PushPayload
|
||||||
func (p *PushPayload) SetSecret(secret string) {
|
func (p *PushPayload) SetSecret(secret string) {
|
||||||
p.Secret = secret
|
p.Secret = secret
|
||||||
}
|
}
|
||||||
|
@ -520,7 +528,7 @@ type RepositoryPayload struct {
|
||||||
Sender *User `json:"sender"`
|
Sender *User `json:"sender"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// SetSecret set the payload's secret
|
// SetSecret modifies the secret of the RepositoryPayload
|
||||||
func (p *RepositoryPayload) SetSecret(secret string) {
|
func (p *RepositoryPayload) SetSecret(secret string) {
|
||||||
p.Secret = secret
|
p.Secret = secret
|
||||||
}
|
}
|
||||||
|
|
6
vendor/code.gitea.io/sdk/gitea/issue.go
generated
vendored
6
vendor/code.gitea.io/sdk/gitea/issue.go
generated
vendored
|
@ -152,3 +152,9 @@ type IssueDeadline struct {
|
||||||
// swagger:strfmt date-time
|
// swagger:strfmt date-time
|
||||||
Deadline *time.Time `json:"due_date"`
|
Deadline *time.Time `json:"due_date"`
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// EditPriorityOption options for updating priority
|
||||||
|
type EditPriorityOption struct {
|
||||||
|
// required:true
|
||||||
|
Priority int `json:"priority"`
|
||||||
|
}
|
||||||
|
|
1
vendor/code.gitea.io/sdk/gitea/repo.go
generated
vendored
1
vendor/code.gitea.io/sdk/gitea/repo.go
generated
vendored
|
@ -40,6 +40,7 @@ type Repository struct {
|
||||||
Watchers int `json:"watchers_count"`
|
Watchers int `json:"watchers_count"`
|
||||||
OpenIssues int `json:"open_issues_count"`
|
OpenIssues int `json:"open_issues_count"`
|
||||||
DefaultBranch string `json:"default_branch"`
|
DefaultBranch string `json:"default_branch"`
|
||||||
|
Archived bool `json:"archived"`
|
||||||
// swagger:strfmt date-time
|
// swagger:strfmt date-time
|
||||||
Created time.Time `json:"created_at"`
|
Created time.Time `json:"created_at"`
|
||||||
// swagger:strfmt date-time
|
// swagger:strfmt date-time
|
||||||
|
|
3
vendor/code.gitea.io/sdk/gitea/repo_key.go
generated
vendored
3
vendor/code.gitea.io/sdk/gitea/repo_key.go
generated
vendored
|
@ -14,12 +14,15 @@ import (
|
||||||
// DeployKey a deploy key
|
// DeployKey a deploy key
|
||||||
type DeployKey struct {
|
type DeployKey struct {
|
||||||
ID int64 `json:"id"`
|
ID int64 `json:"id"`
|
||||||
|
KeyID int64 `json:"key_id"`
|
||||||
Key string `json:"key"`
|
Key string `json:"key"`
|
||||||
URL string `json:"url"`
|
URL string `json:"url"`
|
||||||
Title string `json:"title"`
|
Title string `json:"title"`
|
||||||
|
Fingerprint string `json:"fingerprint"`
|
||||||
// swagger:strfmt date-time
|
// swagger:strfmt date-time
|
||||||
Created time.Time `json:"created_at"`
|
Created time.Time `json:"created_at"`
|
||||||
ReadOnly bool `json:"read_only"`
|
ReadOnly bool `json:"read_only"`
|
||||||
|
Repository *Repository `json:"repository,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ListDeployKeys list all the deploy keys of one repository
|
// ListDeployKeys list all the deploy keys of one repository
|
||||||
|
|
3
vendor/code.gitea.io/sdk/gitea/user_key.go
generated
vendored
3
vendor/code.gitea.io/sdk/gitea/user_key.go
generated
vendored
|
@ -20,6 +20,9 @@ type PublicKey struct {
|
||||||
Fingerprint string `json:"fingerprint,omitempty"`
|
Fingerprint string `json:"fingerprint,omitempty"`
|
||||||
// swagger:strfmt date-time
|
// swagger:strfmt date-time
|
||||||
Created time.Time `json:"created_at,omitempty"`
|
Created time.Time `json:"created_at,omitempty"`
|
||||||
|
Owner *User `json:"user,omitempty"`
|
||||||
|
ReadOnly bool `json:"read_only,omitempty"`
|
||||||
|
KeyType string `json:"key_type,omitempty"`
|
||||||
}
|
}
|
||||||
|
|
||||||
// ListPublicKeys list all the public keys of the user
|
// ListPublicKeys list all the public keys of the user
|
||||||
|
|
Loading…
Reference in a new issue