mirror of
https://github.com/harness/drone.git
synced 2025-05-05 16:59:32 +08:00
40 lines
905 B
Go
40 lines
905 B
Go
package pipeline
|
|
|
|
import (
|
|
"github.com/harness/gitness/internal/auth/authz"
|
|
"github.com/harness/gitness/internal/store"
|
|
"github.com/harness/gitness/types/check"
|
|
"github.com/jmoiron/sqlx"
|
|
)
|
|
|
|
type Controller struct {
|
|
defaultBranch string
|
|
db *sqlx.DB
|
|
uidCheck check.PathUID
|
|
pathStore store.PathStore
|
|
repoStore store.RepoStore
|
|
authorizer authz.Authorizer
|
|
pipelineStore store.PipelineStore
|
|
spaceStore store.SpaceStore
|
|
}
|
|
|
|
func NewController(
|
|
db *sqlx.DB,
|
|
uidCheck check.PathUID,
|
|
authorizer authz.Authorizer,
|
|
pathStore store.PathStore,
|
|
repoStore store.RepoStore,
|
|
pipelineStore store.PipelineStore,
|
|
spaceStore store.SpaceStore,
|
|
) *Controller {
|
|
return &Controller{
|
|
db: db,
|
|
uidCheck: uidCheck,
|
|
pathStore: pathStore,
|
|
repoStore: repoStore,
|
|
authorizer: authorizer,
|
|
pipelineStore: pipelineStore,
|
|
spaceStore: spaceStore,
|
|
}
|
|
}
|