| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- package models
- import (
- "github.com/porter-dev/porter/internal/models/integrations"
- "gorm.io/gorm"
- )
- // GitRepo is an integration that can connect to a remote git repo via an auth
- // mechanism (currently only oauth)
- type GitRepo struct {
- gorm.Model
- // The project that this integration belongs to
- ProjectID uint `json:"project_id"`
- // The username/organization that this repo integration is linked to
- RepoEntity string `json:"repo_entity"`
- // The various auth mechanisms available to the integration
- OAuthIntegrationID uint
- }
- // GitRepoExternal is a repository to be shared over REST
- type GitRepoExternal struct {
- ID uint `json:"id"`
- // The project that this integration belongs to
- ProjectID uint `json:"project_id"`
- // The username/organization that this repo integration is linked to
- RepoEntity string `json:"repo_entity"`
- // The integration service for this git repo
- Service integrations.IntegrationService `json:"service"`
- }
- // Externalize generates an external Repo to be shared over REST
- func (r *GitRepo) Externalize() *GitRepoExternal {
- return &GitRepoExternal{
- ID: r.Model.ID,
- ProjectID: r.ProjectID,
- RepoEntity: r.RepoEntity,
- Service: integrations.Github,
- }
- }
|