mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-12 08:23:48 +02:00
ca8e215cfa
close #234 * Migrate store * Migrate tests * Rewrite migrations * Init fresh DB in on step * Rm old stuff (meddler, sql files, dead code, ...)
94 lines
2.3 KiB
Go
94 lines
2.3 KiB
Go
// Copyright 2021 Woodpecker Authors
|
|
//
|
|
// 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
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// 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.
|
|
|
|
package datastore
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
)
|
|
|
|
func (s storage) PermFind(user *model.User, repo *model.Repo) (*model.Perm, error) {
|
|
perm := &model.Perm{
|
|
UserID: user.ID,
|
|
RepoID: repo.ID,
|
|
}
|
|
return perm, wrapGet(s.engine.Get(perm))
|
|
}
|
|
|
|
func (s storage) PermUpsert(perm *model.Perm) error {
|
|
if len(perm.Repo) == 0 && perm.RepoID == 0 {
|
|
return fmt.Errorf("could not determine repo for permission: %v", perm)
|
|
}
|
|
|
|
sess := s.engine.NewSession()
|
|
defer sess.Close()
|
|
if err := sess.Begin(); err != nil {
|
|
return err
|
|
}
|
|
|
|
// lookup repo based on name if possible (preserve old behaviour)
|
|
// TODO: check if needed
|
|
if len(perm.Repo) != 0 {
|
|
if r, err := s.getRepoName(sess, perm.Repo); err != nil {
|
|
return err
|
|
} else {
|
|
perm.RepoID = r.ID
|
|
}
|
|
}
|
|
|
|
exist, err := sess.Where("perm_user_id = ? AND perm_repo_id = ?", perm.UserID, perm.RepoID).
|
|
Exist(new(model.Perm))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if exist {
|
|
_, err = sess.Where("perm_user_id = ? AND perm_repo_id = ?", perm.UserID, perm.RepoID).
|
|
AllCols().Update(perm)
|
|
} else {
|
|
// only Insert set auto created ID back to object
|
|
_, err = sess.Insert(perm)
|
|
}
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return sess.Commit()
|
|
}
|
|
|
|
func (s storage) PermBatch(perms []*model.Perm) error {
|
|
for i := range perms {
|
|
if err := s.PermUpsert(perms[i]); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (s storage) PermDelete(perm *model.Perm) error {
|
|
_, err := s.engine.
|
|
Where("perm_user_id = ? AND perm_repo_id = ?", perm.UserID, perm.RepoID).
|
|
Delete(new(model.Perm))
|
|
return err
|
|
}
|
|
|
|
func (s storage) PermFlush(user *model.User, before int64) error {
|
|
_, err := s.engine.
|
|
Where("perm_user_id = ? AND perm_synced < ?", user.ID, before).
|
|
Delete(new(model.Perm))
|
|
return err
|
|
}
|