woodpecker/server/sync.go

115 lines
2.8 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2017-07-14 19:58:38 +00:00
package server
import (
"time"
"github.com/woodpecker-ci/woodpecker/model"
"github.com/woodpecker-ci/woodpecker/remote"
"github.com/woodpecker-ci/woodpecker/store"
2017-07-14 19:58:38 +00:00
)
// Syncer synces the user repository and permissions.
type Syncer interface {
Sync(user *model.User) error
}
type syncer struct {
2019-06-01 07:45:20 +00:00
remote remote.Remote
store store.Store
perms model.PermStore
2021-02-19 08:43:03 +00:00
match FilterFunc
2020-05-18 15:58:04 +00:00
}
// FilterFunc can be used to filter which repositories are
// synchronized with the local datastore.
type FilterFunc func(*model.Repo) bool
// NamespaceFilter
func NamespaceFilter(namespaces map[string]bool) FilterFunc {
if namespaces == nil || len(namespaces) == 0 {
return noopFilter
}
return func(repo *model.Repo) bool {
if namespaces[repo.Owner] {
return true
} else {
return false
}
}
}
// noopFilter is a filter function that always returns true.
func noopFilter(*model.Repo) bool {
return true
}
// SetFilter sets the filter function.
func (s *syncer) SetFilter(fn FilterFunc) {
s.match = fn
2017-07-14 19:58:38 +00:00
}
func (s *syncer) Sync(user *model.User) error {
2017-07-27 17:06:24 +00:00
unix := time.Now().Unix() - (3601) // force immediate expiration. note 1 hour expiration is hard coded at the moment
2017-07-14 19:58:38 +00:00
repos, err := s.remote.Repos(user)
if err != nil {
return err
}
2020-05-18 15:58:04 +00:00
var remote []*model.Repo
2017-07-14 19:58:38 +00:00
var perms []*model.Perm
2020-05-18 15:58:04 +00:00
2017-07-14 19:58:38 +00:00
for _, repo := range repos {
2020-05-18 15:58:04 +00:00
if s.match(repo) {
remote = append(remote, repo)
perm := model.Perm{
UserID: user.ID,
Repo: repo.FullName,
Pull: true,
Synced: unix,
}
if repo.Perm != nil {
perm.Push = repo.Perm.Push
perm.Admin = repo.Perm.Admin
}
perms = append(perms, &perm)
2017-07-14 19:58:38 +00:00
}
}
2020-05-18 15:58:04 +00:00
err = s.store.RepoBatch(remote)
2017-07-14 19:58:38 +00:00
if err != nil {
return err
}
err = s.store.PermBatch(perms)
if err != nil {
return err
}
2017-07-16 17:37:16 +00:00
// this is here as a precaution. I want to make sure that if an api
// call to the version control system fails and (for some reason) returns
// an empty list, we don't wipe out the user repository permissions.
//
// the side-effect of this code is that a user with 1 repository whose
// access is removed will still display in the feed, but they will not
// be able to access the actual repository data.
if len(repos) == 0 {
return nil
}
return s.perms.PermFlush(user, unix)
2017-07-14 19:58:38 +00:00
}