2021-11-13 19:18:06 +00:00
|
|
|
// Copyright 2021 Woodpecker Authors
|
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.
|
|
|
|
|
2021-11-13 19:18:06 +00:00
|
|
|
package datastore
|
2017-07-15 16:51:02 +00:00
|
|
|
|
2022-10-17 23:48:04 +00:00
|
|
|
import (
|
2023-07-27 19:22:24 +00:00
|
|
|
"fmt"
|
|
|
|
"runtime"
|
|
|
|
"strings"
|
|
|
|
|
2023-04-30 01:40:13 +00:00
|
|
|
"xorm.io/xorm"
|
|
|
|
|
2023-12-08 07:15:08 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/model"
|
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/server/store/types"
|
2022-10-17 23:48:04 +00:00
|
|
|
)
|
2021-11-13 19:18:06 +00:00
|
|
|
|
2024-05-13 20:58:21 +00:00
|
|
|
// wrapGet return error if err not nil or if requested entry do not exist.
|
2021-11-13 19:18:06 +00:00
|
|
|
func wrapGet(exist bool, err error) error {
|
|
|
|
if !exist {
|
2023-09-02 11:31:10 +00:00
|
|
|
return types.RecordNotExist
|
2023-07-27 19:22:24 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// we only ask for the function's name if needed, as it's not as preformatted as to just execute it
|
|
|
|
fnName := callerName(2)
|
|
|
|
return fmt.Errorf("%s: %w", fnName, err)
|
2021-11-13 19:18:06 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2023-04-15 13:22:39 +00:00
|
|
|
|
2024-05-13 20:58:21 +00:00
|
|
|
// wrapDelete return error if err not nil or if requested entry do not exist.
|
2023-04-15 13:22:39 +00:00
|
|
|
func wrapDelete(c int64, err error) error {
|
|
|
|
if c == 0 {
|
2023-09-02 11:31:10 +00:00
|
|
|
return types.RecordNotExist
|
2023-07-27 19:22:24 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// we only ask for the function's name if needed, as it's not as preformatted as to just execute it
|
|
|
|
fnName := callerName(2)
|
|
|
|
return fmt.Errorf("%s: %w", fnName, err)
|
2023-04-15 13:22:39 +00:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2023-04-30 01:40:13 +00:00
|
|
|
|
|
|
|
func (s storage) paginate(p *model.ListOptions) *xorm.Session {
|
|
|
|
if p.All {
|
|
|
|
return s.engine.NewSession()
|
|
|
|
}
|
|
|
|
if p.PerPage < 1 {
|
|
|
|
p.PerPage = 1
|
|
|
|
}
|
|
|
|
if p.Page < 1 {
|
|
|
|
p.Page = 1
|
|
|
|
}
|
|
|
|
return s.engine.Limit(p.PerPage, p.PerPage*(p.Page-1))
|
|
|
|
}
|
2023-07-27 19:22:24 +00:00
|
|
|
|
|
|
|
func callerName(skip int) string {
|
|
|
|
pc, _, _, ok := runtime.Caller(skip)
|
|
|
|
if !ok {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
fnName := runtime.FuncForPC(pc).Name()
|
|
|
|
pIndex := strings.LastIndex(fnName, ".")
|
|
|
|
if pIndex != -1 {
|
|
|
|
fnName = fnName[pIndex+1:]
|
|
|
|
}
|
|
|
|
return fnName
|
|
|
|
}
|