* add migrations * fix package dependency * fix lints * implements migrations except pull requests * add releases * migrating releases * fix bug * fix lint * fix migrate releases * fix tests * add rollback * pull request migtations * fix import * fix go module vendor * add tests for upload to gitea * more migrate options * fix swagger-check * fix misspell * add options on migration UI * fix log error * improve UI options on migrating * add support for username password when migrating from github * fix tests * remove comments and fix migrate limitation * improve error handles * migrate API will also support migrate milestones/labels/issues/pulls/releases * fix tests and remove unused codes * add DownloaderFactory and docs about how to create a new Downloader * fix misspell * fix migration docs * Add hints about migrate options on migration page * fix tests
		
			
				
	
	
		
			127 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			127 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2018 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"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| // Event represents a GitHub event.
 | |
| type Event struct {
 | |
| 	Type       *string          `json:"type,omitempty"`
 | |
| 	Public     *bool            `json:"public,omitempty"`
 | |
| 	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)
 | |
| }
 | |
| 
 | |
| // ParsePayload parses the event payload. For recognized event types,
 | |
| // a value of the corresponding struct type will be returned.
 | |
| func (e *Event) ParsePayload() (payload interface{}, err error) {
 | |
| 	switch *e.Type {
 | |
| 	case "CheckRunEvent":
 | |
| 		payload = &CheckRunEvent{}
 | |
| 	case "CheckSuiteEvent":
 | |
| 		payload = &CheckSuiteEvent{}
 | |
| 	case "CommitCommentEvent":
 | |
| 		payload = &CommitCommentEvent{}
 | |
| 	case "CreateEvent":
 | |
| 		payload = &CreateEvent{}
 | |
| 	case "DeleteEvent":
 | |
| 		payload = &DeleteEvent{}
 | |
| 	case "DeploymentEvent":
 | |
| 		payload = &DeploymentEvent{}
 | |
| 	case "DeploymentStatusEvent":
 | |
| 		payload = &DeploymentStatusEvent{}
 | |
| 	case "ForkEvent":
 | |
| 		payload = &ForkEvent{}
 | |
| 	case "GitHubAppAuthorizationEvent":
 | |
| 		payload = &GitHubAppAuthorizationEvent{}
 | |
| 	case "GollumEvent":
 | |
| 		payload = &GollumEvent{}
 | |
| 	case "InstallationEvent":
 | |
| 		payload = &InstallationEvent{}
 | |
| 	case "InstallationRepositoriesEvent":
 | |
| 		payload = &InstallationRepositoriesEvent{}
 | |
| 	case "IssueCommentEvent":
 | |
| 		payload = &IssueCommentEvent{}
 | |
| 	case "IssuesEvent":
 | |
| 		payload = &IssuesEvent{}
 | |
| 	case "LabelEvent":
 | |
| 		payload = &LabelEvent{}
 | |
| 	case "MarketplacePurchaseEvent":
 | |
| 		payload = &MarketplacePurchaseEvent{}
 | |
| 	case "MemberEvent":
 | |
| 		payload = &MemberEvent{}
 | |
| 	case "MembershipEvent":
 | |
| 		payload = &MembershipEvent{}
 | |
| 	case "MilestoneEvent":
 | |
| 		payload = &MilestoneEvent{}
 | |
| 	case "OrganizationEvent":
 | |
| 		payload = &OrganizationEvent{}
 | |
| 	case "OrgBlockEvent":
 | |
| 		payload = &OrgBlockEvent{}
 | |
| 	case "PageBuildEvent":
 | |
| 		payload = &PageBuildEvent{}
 | |
| 	case "PingEvent":
 | |
| 		payload = &PingEvent{}
 | |
| 	case "ProjectEvent":
 | |
| 		payload = &ProjectEvent{}
 | |
| 	case "ProjectCardEvent":
 | |
| 		payload = &ProjectCardEvent{}
 | |
| 	case "ProjectColumnEvent":
 | |
| 		payload = &ProjectColumnEvent{}
 | |
| 	case "PublicEvent":
 | |
| 		payload = &PublicEvent{}
 | |
| 	case "PullRequestEvent":
 | |
| 		payload = &PullRequestEvent{}
 | |
| 	case "PullRequestReviewEvent":
 | |
| 		payload = &PullRequestReviewEvent{}
 | |
| 	case "PullRequestReviewCommentEvent":
 | |
| 		payload = &PullRequestReviewCommentEvent{}
 | |
| 	case "PushEvent":
 | |
| 		payload = &PushEvent{}
 | |
| 	case "ReleaseEvent":
 | |
| 		payload = &ReleaseEvent{}
 | |
| 	case "RepositoryEvent":
 | |
| 		payload = &RepositoryEvent{}
 | |
| 	case "RepositoryVulnerabilityAlertEvent":
 | |
| 		payload = &RepositoryVulnerabilityAlertEvent{}
 | |
| 	case "StatusEvent":
 | |
| 		payload = &StatusEvent{}
 | |
| 	case "TeamEvent":
 | |
| 		payload = &TeamEvent{}
 | |
| 	case "TeamAddEvent":
 | |
| 		payload = &TeamAddEvent{}
 | |
| 	case "WatchEvent":
 | |
| 		payload = &WatchEvent{}
 | |
| 	}
 | |
| 	err = json.Unmarshal(*e.RawPayload, &payload)
 | |
| 	return payload, err
 | |
| }
 | |
| 
 | |
| // Payload returns the parsed event payload. For recognized event types,
 | |
| // a value of the corresponding struct type will be returned.
 | |
| //
 | |
| // Deprecated: Use ParsePayload instead, which returns an error
 | |
| // rather than panics if JSON unmarshaling raw payload fails.
 | |
| func (e *Event) Payload() (payload interface{}) {
 | |
| 	var err error
 | |
| 	payload, err = e.ParsePayload()
 | |
| 	if err != nil {
 | |
| 		panic(err)
 | |
| 	}
 | |
| 	return payload
 | |
| }
 |