mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 03:26:30 +00:00
28 lines
478 B
Go
28 lines
478 B
Go
|
package permissions
|
||
|
|
||
|
import (
|
||
|
"go.woodpecker-ci.org/woodpecker/server/model"
|
||
|
"go.woodpecker-ci.org/woodpecker/shared/utils"
|
||
|
)
|
||
|
|
||
|
func NewOrgs(orgs []string) *Orgs {
|
||
|
return &Orgs{
|
||
|
IsConfigured: len(orgs) > 0,
|
||
|
orgs: utils.SliceToBoolMap(orgs),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
type Orgs struct {
|
||
|
IsConfigured bool
|
||
|
orgs map[string]bool
|
||
|
}
|
||
|
|
||
|
func (o *Orgs) IsMember(teams []*model.Team) bool {
|
||
|
for _, team := range teams {
|
||
|
if o.orgs[team.Login] {
|
||
|
return true
|
||
|
}
|
||
|
}
|
||
|
return false
|
||
|
}
|