harness-drone/model/limit.go

28 lines
985 B
Go
Raw Normal View History

2017-04-06 12:51:01 +00:00
package model
// Limiter defines an interface for limiting repository creation.
// This could be used, for example, to limit repository creation to
// a specific organization or a specific set of users.
type Limiter interface {
LimitUser(*User) error
LimitRepo(*User, *Repo) error
2017-09-29 18:21:06 +00:00
LimitRepos(*User, []*Repo) []*Repo
2017-04-06 12:51:01 +00:00
LimitBuild(*User, *Repo, *Build) error
}
// NoLimit impliments the Limiter interface without enforcing any
// actual limits. All limiting functions are no-ops.
type NoLimit struct{}
// LimitUser is a no-op for limiting user creation.
func (NoLimit) LimitUser(*User) error { return nil }
// LimitRepo is a no-op for limiting repo creation.
func (NoLimit) LimitRepo(*User, *Repo) error { return nil }
2017-09-29 18:21:06 +00:00
// LimitRepos is a no-op for limiting repository listings.
func (NoLimit) LimitRepos(user *User, repos []*Repo) []*Repo { return repos }
2017-04-06 12:51:01 +00:00
// LimitBuild is a no-op for limiting build creation.
func (NoLimit) LimitBuild(*User, *Repo, *Build) error { return nil }