Documentation ¶
Index ¶
- type APIServerService
- func (s *APIServerService) AddAvailableDomain(ctx context.Context, ad *domain.AvailableDomain) error
- func (s *APIServerService) AddAvailablePort(ctx context.Context, ap *domain.AvailablePort) error
- func (s *APIServerService) CancelBuild(ctx context.Context, buildID string) error
- func (s *APIServerService) CreateApplication(ctx context.Context, app *domain.Application) (*domain.Application, error)
- func (s *APIServerService) CreateRepository(ctx context.Context, repo *domain.Repository) error
- func (s *APIServerService) CreateUserKey(ctx context.Context, publicKey string) (*domain.UserKey, error)
- func (s *APIServerService) DeleteApplication(ctx context.Context, id string) error
- func (s *APIServerService) DeleteRepository(ctx context.Context, id string) error
- func (s *APIServerService) DeleteUserKey(ctx context.Context, keyID string) error
- func (s *APIServerService) GetApplication(ctx context.Context, id string) (*domain.Application, error)
- func (s *APIServerService) GetApplications(ctx context.Context) ([]*domain.Application, error)
- func (s *APIServerService) GetArtifact(_ context.Context, artifactID string) (filename string, r io.ReadCloser, err error)
- func (s *APIServerService) GetAvailableDomains(ctx context.Context) (domain.AvailableDomainSlice, error)
- func (s *APIServerService) GetAvailablePorts(ctx context.Context) (domain.AvailablePortSlice, []*domain.UnavailablePort, error)
- func (s *APIServerService) GetBuild(ctx context.Context, buildID string) (*domain.Build, error)
- func (s *APIServerService) GetBuildLog(ctx context.Context, buildID string) ([]byte, error)
- func (s *APIServerService) GetBuildLogStream(ctx context.Context, buildID string) (<-chan *pb.BuildLog, error)
- func (s *APIServerService) GetBuilds(ctx context.Context, applicationID string) ([]*domain.Build, error)
- func (s *APIServerService) GetEnvironmentVariables(ctx context.Context, applicationID string) ([]*domain.Environment, error)
- func (s *APIServerService) GetOutput(ctx context.Context, id string, before time.Time) ([]*domain.ContainerLog, error)
- func (s *APIServerService) GetOutputStream(ctx context.Context, id string, after time.Time, ...) error
- func (s *APIServerService) GetRepositories(ctx context.Context) ([]*domain.Repository, error)
- func (s *APIServerService) GetRepository(ctx context.Context, id string) (*domain.Repository, error)
- func (s *APIServerService) GetUserKeys(ctx context.Context) ([]*domain.UserKey, error)
- func (s *APIServerService) RefreshRepository(ctx context.Context, id string) error
- func (s *APIServerService) RetryCommitBuild(ctx context.Context, applicationID string, commit string) error
- func (s *APIServerService) SetEnvironmentVariable(ctx context.Context, applicationID string, key string, value string) error
- func (s *APIServerService) StartApplication(ctx context.Context, id string) error
- func (s *APIServerService) StopApplication(ctx context.Context, id string) error
- func (s *APIServerService) UpdateApplication(ctx context.Context, id string, args *domain.UpdateApplicationArgs) error
- func (s *APIServerService) UpdateRepository(ctx context.Context, id string, args *domain.UpdateRepositoryArgs) error
- type AppBuildHelper
- type AppDeployHelper
- type BuilderService
- type CleanerService
- type ContainerStateMutator
- type ContinuousDeploymentService
- type ErrorType
- type LogStreamService
- type RepositoryFetcherService
- type SSHServer
- type SiteReloadTarget
- type StaticSiteServerService
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type APIServerService ¶
type APIServerService struct {
// contains filtered or unexported fields
}
func NewAPIServerService ¶
func NewAPIServerService( artifactRepo domain.ArtifactRepository, appRepo domain.ApplicationRepository, adRepo domain.AvailableDomainRepository, apRepo domain.AvailablePortRepository, buildRepo domain.BuildRepository, envRepo domain.EnvironmentRepository, gitRepo domain.GitRepositoryRepository, userRepo domain.UserRepository, storage domain.Storage, mariaDBManager domain.MariaDBManager, mongoDBManager domain.MongoDBManager, containerLogger domain.ContainerLogger, controller domain.ControllerServiceClient, ) *APIServerService
func (*APIServerService) AddAvailableDomain ¶
func (s *APIServerService) AddAvailableDomain(ctx context.Context, ad *domain.AvailableDomain) error
func (*APIServerService) AddAvailablePort ¶ added in v0.3.0
func (s *APIServerService) AddAvailablePort(ctx context.Context, ap *domain.AvailablePort) error
func (*APIServerService) CancelBuild ¶
func (s *APIServerService) CancelBuild(ctx context.Context, buildID string) error
func (*APIServerService) CreateApplication ¶
func (s *APIServerService) CreateApplication(ctx context.Context, app *domain.Application) (*domain.Application, error)
func (*APIServerService) CreateRepository ¶
func (s *APIServerService) CreateRepository(ctx context.Context, repo *domain.Repository) error
func (*APIServerService) CreateUserKey ¶
func (*APIServerService) DeleteApplication ¶
func (s *APIServerService) DeleteApplication(ctx context.Context, id string) error
func (*APIServerService) DeleteRepository ¶
func (s *APIServerService) DeleteRepository(ctx context.Context, id string) error
func (*APIServerService) DeleteUserKey ¶
func (s *APIServerService) DeleteUserKey(ctx context.Context, keyID string) error
func (*APIServerService) GetApplication ¶
func (s *APIServerService) GetApplication(ctx context.Context, id string) (*domain.Application, error)
func (*APIServerService) GetApplications ¶
func (s *APIServerService) GetApplications(ctx context.Context) ([]*domain.Application, error)
func (*APIServerService) GetArtifact ¶
func (s *APIServerService) GetArtifact(_ context.Context, artifactID string) (filename string, r io.ReadCloser, err error)
func (*APIServerService) GetAvailableDomains ¶
func (s *APIServerService) GetAvailableDomains(ctx context.Context) (domain.AvailableDomainSlice, error)
func (*APIServerService) GetAvailablePorts ¶ added in v0.3.0
func (s *APIServerService) GetAvailablePorts(ctx context.Context) (domain.AvailablePortSlice, []*domain.UnavailablePort, error)
func (*APIServerService) GetBuildLog ¶
func (*APIServerService) GetBuildLogStream ¶
func (*APIServerService) GetEnvironmentVariables ¶
func (s *APIServerService) GetEnvironmentVariables(ctx context.Context, applicationID string) ([]*domain.Environment, error)
func (*APIServerService) GetOutput ¶
func (s *APIServerService) GetOutput(ctx context.Context, id string, before time.Time) ([]*domain.ContainerLog, error)
func (*APIServerService) GetOutputStream ¶
func (s *APIServerService) GetOutputStream(ctx context.Context, id string, after time.Time, send func(l *domain.ContainerLog) error) error
func (*APIServerService) GetRepositories ¶
func (s *APIServerService) GetRepositories(ctx context.Context) ([]*domain.Repository, error)
func (*APIServerService) GetRepository ¶
func (s *APIServerService) GetRepository(ctx context.Context, id string) (*domain.Repository, error)
func (*APIServerService) GetUserKeys ¶
func (*APIServerService) RefreshRepository ¶ added in v0.2.0
func (s *APIServerService) RefreshRepository(ctx context.Context, id string) error
func (*APIServerService) RetryCommitBuild ¶
func (*APIServerService) SetEnvironmentVariable ¶
func (*APIServerService) StartApplication ¶
func (s *APIServerService) StartApplication(ctx context.Context, id string) error
func (*APIServerService) StopApplication ¶
func (s *APIServerService) StopApplication(ctx context.Context, id string) error
func (*APIServerService) UpdateApplication ¶
func (s *APIServerService) UpdateApplication(ctx context.Context, id string, args *domain.UpdateApplicationArgs) error
func (*APIServerService) UpdateRepository ¶
func (s *APIServerService) UpdateRepository(ctx context.Context, id string, args *domain.UpdateRepositoryArgs) error
type AppBuildHelper ¶
type AppBuildHelper struct {
// contains filtered or unexported fields
}
func NewAppBuildHelper ¶
func NewAppBuildHelper( builder domain.ControllerBuilderService, imageConfig builder.ImageConfig, ) *AppBuildHelper
type AppDeployHelper ¶
type AppDeployHelper struct {
// contains filtered or unexported fields
}
func NewAppDeployHelper ¶
func NewAppDeployHelper( backend domain.Backend, appRepo domain.ApplicationRepository, buildRepo domain.BuildRepository, envRepo domain.EnvironmentRepository, ssgen domain.ControllerSSGenService, imageConfig builder.ImageConfig, ) *AppDeployHelper
type BuilderService ¶
type BuilderService interface { Start(ctx context.Context) error Shutdown(ctx context.Context) error }
func NewBuilderService ¶
func NewBuilderService( client domain.ControllerBuilderServiceClient, buildkit *buildkit.Client, buildpack builder.BuildpackBackend, storage domain.Storage, pubKey *ssh.PublicKeys, config builder.ImageConfig, artifactRepo domain.ArtifactRepository, buildRepo domain.BuildRepository, gitRepo domain.GitRepositoryRepository, ) BuilderService
type CleanerService ¶
type CleanerService interface { Start(ctx context.Context) error Shutdown(ctx context.Context) error }
func NewCleanerService ¶
func NewCleanerService( artifactRepo domain.ArtifactRepository, appRepo domain.ApplicationRepository, buildRepo domain.BuildRepository, image builder.ImageConfig, storage domain.Storage, ) (CleanerService, error)
type ContainerStateMutator ¶
type ContainerStateMutator struct {
// contains filtered or unexported fields
}
func NewContainerStateMutator ¶
func NewContainerStateMutator( appRepo domain.ApplicationRepository, backend domain.Backend, ) *ContainerStateMutator
type ContinuousDeploymentService ¶
type ContinuousDeploymentService interface { Run() RegisterBuilds() StartBuilds() SyncDeployments() Stop(ctx context.Context) error }
func NewContinuousDeploymentService ¶
func NewContinuousDeploymentService( appRepo domain.ApplicationRepository, buildRepo domain.BuildRepository, backend domain.Backend, builder *AppBuildHelper, builderSvc domain.ControllerBuilderService, deployer *AppDeployHelper, mutator *ContainerStateMutator, ) (ContinuousDeploymentService, error)
type LogStreamService ¶
type LogStreamService struct {
// contains filtered or unexported fields
}
func NewLogStreamService ¶
func NewLogStreamService() *LogStreamService
func (*LogStreamService) AppendBuildLog ¶
func (l *LogStreamService) AppendBuildLog(id string, logPortion []byte)
func (*LogStreamService) CloseBuildLog ¶
func (l *LogStreamService) CloseBuildLog(id string)
func (*LogStreamService) StartBuildLog ¶
func (l *LogStreamService) StartBuildLog(id string)
func (*LogStreamService) SubscribeBuildLog ¶
func (l *LogStreamService) SubscribeBuildLog(id string, sub chan<- []byte) (ok bool, unsubscribe func())
type RepositoryFetcherService ¶
type RepositoryFetcherService interface { Run() Fetch(repositoryIDs []string) Stop(ctx context.Context) error }
func NewRepositoryFetcherService ¶
func NewRepositoryFetcherService( appRepo domain.ApplicationRepository, gitRepo domain.GitRepositoryRepository, pubKey *ssh.PublicKeys, cd ContinuousDeploymentService, ) (RepositoryFetcherService, error)
type SSHServer ¶
func NewSSHServer ¶
func NewSSHServer( config domain.SSHConfig, sshKey *ssh2.PublicKeys, backend domain.Backend, appRepo domain.ApplicationRepository, userRepo domain.UserRepository, ) SSHServer
type SiteReloadTarget ¶
type StaticSiteServerService ¶
type StaticSiteServerService interface { Start(ctx context.Context) error Shutdown(ctx context.Context) error }
func NewStaticSiteServerService ¶
func NewStaticSiteServerService( client domain.ControllerSSGenServiceClient, appRepo domain.ApplicationRepository, buildRepo domain.BuildRepository, engine domain.SSEngine, ) StaticSiteServerService
Source Files ¶
- api_app_build_service.go
- api_app_config_service.go
- api_app_service.go
- api_repository_service.go
- api_service.go
- api_system_service.go
- api_user_service.go
- app_build_helper.go
- app_deploy_helper.go
- builder_service.go
- cleaner_service.go
- container_state_mutator.go
- continuous_deployment_service.go
- errors.go
- log_stream_service.go
- repository_fetcher_service.go
- ssh_server.go
- static_site_server_service.go
Click to show internal directories.
Click to hide internal directories.