-
Notifications
You must be signed in to change notification settings - Fork 563
/
Copy pathgithub.go
64 lines (55 loc) · 1.95 KB
/
github.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package models
import (
"gorm.io/gorm"
)
type VCSConnection struct {
gorm.Model
GithubId int64 // app id
ClientID string
ClientSecretEncrypted string
WebhookSecretEncrypted string
PrivateKeyEncrypted string
PrivateKeyBase64Encrypted string
Org string
Name string
GithubAppUrl string
BitbucketAccessTokenEncrypted string
BitbucketWebhookSecretEncrypted string
GitlabAccessTokenEncrypted string
GitlabWebhookSecretEncrypted string
VCSType DiggerVCSType `gorm:"default:bitbucket"`
OrganisationID uint
Organisation Organisation
}
// TODO: Create migration to rename this table to vcs_connections
// for some reason atlas wants to destroy and recreate and I did not have time to look into it
func (VCSConnection) TableName() string {
return "github_app_connections" // Keep the original table name
}
type GithubAppInstallStatus int
const (
GithubAppInstallActive GithubAppInstallStatus = 1
GithubAppInstallDeleted GithubAppInstallStatus = 2
)
type GithubAppInstallation struct {
gorm.Model
GithubInstallationId int64
GithubAppId int64
AccountId int
Login string
Repo string
Status GithubAppInstallStatus
}
type GithubAppInstallationLinkStatus int8
const (
GithubAppInstallationLinkActive GithubAppInstallationLinkStatus = 1
GithubAppInstallationLinkInactive GithubAppInstallationLinkStatus = 2
)
// GithubAppInstallationLink links GitHub App installation Id to Digger's organisation Id
type GithubAppInstallationLink struct {
gorm.Model
GithubInstallationId int64 `gorm:"index:idx_github_installation_org"`
OrganisationId uint `gorm:"index:idx_github_installation_org"`
Organisation *Organisation
Status GithubAppInstallationLinkStatus
}