mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-01-01 13:18:41 +00:00
479ced3b25
![Screenshot 2023-08-28 at 10-08-20 Woodpecker](https://github.com/woodpecker-ci/woodpecker/assets/80460567/e3248b05-7899-43ca-a0cf-4834eae078d8) Closes #2307
70 lines
2 KiB
Go
70 lines
2 KiB
Go
// Copyright 2022 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 (
|
|
"strings"
|
|
|
|
"xorm.io/xorm"
|
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
)
|
|
|
|
func (s storage) OrgCreate(org *model.Org) error {
|
|
return s.orgCreate(org, s.engine.NewSession())
|
|
}
|
|
|
|
func (s storage) orgCreate(org *model.Org, sess *xorm.Session) error {
|
|
// sanitize
|
|
org.Name = strings.ToLower(org.Name)
|
|
// insert
|
|
_, err := sess.Insert(org)
|
|
return err
|
|
}
|
|
|
|
func (s storage) OrgGet(id int64) (*model.Org, error) {
|
|
org := new(model.Org)
|
|
return org, wrapGet(s.engine.ID(id).Get(org))
|
|
}
|
|
|
|
func (s storage) OrgUpdate(org *model.Org) error {
|
|
// sanitize
|
|
org.Name = strings.ToLower(org.Name)
|
|
// update
|
|
_, err := s.engine.ID(org.ID).AllCols().Update(org)
|
|
return err
|
|
}
|
|
|
|
func (s storage) OrgDelete(id int64) error {
|
|
return wrapDelete(s.engine.ID(id).Delete(new(model.Org)))
|
|
}
|
|
|
|
func (s storage) OrgFindByName(name string) (*model.Org, error) {
|
|
// sanitize
|
|
name = strings.ToLower(name)
|
|
// find
|
|
org := new(model.Org)
|
|
return org, wrapGet(s.engine.Where("name = ?", name).Get(org))
|
|
}
|
|
|
|
func (s storage) OrgRepoList(org *model.Org, p *model.ListOptions) ([]*model.Repo, error) {
|
|
var repos []*model.Repo
|
|
return repos, s.paginate(p).OrderBy("repo_id").Where("repo_org_id = ?", org.ID).Find(&repos)
|
|
}
|
|
|
|
func (s storage) OrgList(p *model.ListOptions) ([]*model.Org, error) {
|
|
var orgs []*model.Org
|
|
return orgs, s.paginate(p).Where("is_user = ?", false).OrderBy("id").Find(&orgs)
|
|
}
|