mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
df1e7d0067
For those simple objects, it's unnecessary to write the find and count methods again and again.
84 lines
2 KiB
Go
84 lines
2 KiB
Go
// Copyright 2023 The Gitea Authors. All rights reserved.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
package actions
|
|
|
|
import (
|
|
"context"
|
|
|
|
"code.gitea.io/gitea/models/db"
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
|
user_model "code.gitea.io/gitea/models/user"
|
|
"code.gitea.io/gitea/modules/container"
|
|
|
|
"xorm.io/builder"
|
|
)
|
|
|
|
type ScheduleList []*ActionSchedule
|
|
|
|
// GetUserIDs returns a slice of user's id
|
|
func (schedules ScheduleList) GetUserIDs() []int64 {
|
|
ids := make(container.Set[int64], len(schedules))
|
|
for _, schedule := range schedules {
|
|
ids.Add(schedule.TriggerUserID)
|
|
}
|
|
return ids.Values()
|
|
}
|
|
|
|
func (schedules ScheduleList) GetRepoIDs() []int64 {
|
|
ids := make(container.Set[int64], len(schedules))
|
|
for _, schedule := range schedules {
|
|
ids.Add(schedule.RepoID)
|
|
}
|
|
return ids.Values()
|
|
}
|
|
|
|
func (schedules ScheduleList) LoadTriggerUser(ctx context.Context) error {
|
|
userIDs := schedules.GetUserIDs()
|
|
users := make(map[int64]*user_model.User, len(userIDs))
|
|
if err := db.GetEngine(ctx).In("id", userIDs).Find(&users); err != nil {
|
|
return err
|
|
}
|
|
for _, schedule := range schedules {
|
|
if schedule.TriggerUserID == user_model.ActionsUserID {
|
|
schedule.TriggerUser = user_model.NewActionsUser()
|
|
} else {
|
|
schedule.TriggerUser = users[schedule.TriggerUserID]
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (schedules ScheduleList) LoadRepos(ctx context.Context) error {
|
|
repoIDs := schedules.GetRepoIDs()
|
|
repos, err := repo_model.GetRepositoriesMapByIDs(ctx, repoIDs)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, schedule := range schedules {
|
|
schedule.Repo = repos[schedule.RepoID]
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type FindScheduleOptions struct {
|
|
db.ListOptions
|
|
RepoID int64
|
|
OwnerID int64
|
|
}
|
|
|
|
func (opts FindScheduleOptions) ToConds() builder.Cond {
|
|
cond := builder.NewCond()
|
|
if opts.RepoID > 0 {
|
|
cond = cond.And(builder.Eq{"repo_id": opts.RepoID})
|
|
}
|
|
if opts.OwnerID > 0 {
|
|
cond = cond.And(builder.Eq{"owner_id": opts.OwnerID})
|
|
}
|
|
|
|
return cond
|
|
}
|
|
|
|
func (opts FindScheduleOptions) ToOrders() string {
|
|
return "`id` DESC"
|
|
}
|