mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-15 22:41:19 +00:00
ca8e215cfa
close #234 * Migrate store * Migrate tests * Rewrite migrations * Init fresh DB in on step * Rm old stuff (meddler, sql files, dead code, ...)
55 lines
1.6 KiB
Go
55 lines
1.6 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 (
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
|
)
|
|
|
|
func (s storage) GetUser(id int64) (*model.User, error) {
|
|
user := new(model.User)
|
|
return user, wrapGet(s.engine.ID(id).Get(user))
|
|
}
|
|
|
|
func (s storage) GetUserLogin(login string) (*model.User, error) {
|
|
user := new(model.User)
|
|
return user, wrapGet(s.engine.Where("user_login=?", login).Get(user))
|
|
}
|
|
|
|
func (s storage) GetUserList() ([]*model.User, error) {
|
|
users := make([]*model.User, 0, 10)
|
|
return users, s.engine.Find(&users)
|
|
}
|
|
|
|
func (s storage) GetUserCount() (int64, error) {
|
|
return s.engine.Count(new(model.User))
|
|
}
|
|
|
|
func (s storage) CreateUser(user *model.User) error {
|
|
// only Insert set auto created ID back to object
|
|
_, err := s.engine.Insert(user)
|
|
return err
|
|
}
|
|
|
|
func (s storage) UpdateUser(user *model.User) error {
|
|
_, err := s.engine.ID(user.ID).AllCols().Update(user)
|
|
return err
|
|
}
|
|
|
|
func (s storage) DeleteUser(user *model.User) error {
|
|
_, err := s.engine.ID(user.ID).Delete(new(model.User))
|
|
// TODO: delete related content that need this user to work
|
|
return err
|
|
}
|