mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-27 04:11:03 +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, ...)
126 lines
2.9 KiB
Go
126 lines
2.9 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"
|
|
)
|
|
|
|
// TODO: need tests before converting to builder statement
|
|
func (s storage) GetBuildQueue() ([]*model.Feed, error) {
|
|
feed := make([]*model.Feed, 0, perPage)
|
|
// TODO: use builder (do not behave same as pure sql, fix that)
|
|
err := s.engine.SQL(`
|
|
SELECT
|
|
repo_owner
|
|
,repo_name
|
|
,repo_full_name
|
|
,build_number
|
|
,build_event
|
|
,build_status
|
|
,build_created
|
|
,build_started
|
|
,build_finished
|
|
,build_commit
|
|
,build_branch
|
|
,build_ref
|
|
,build_refspec
|
|
,build_remote
|
|
,build_title
|
|
,build_message
|
|
,build_author
|
|
,build_email
|
|
,build_avatar
|
|
FROM
|
|
builds b
|
|
,repos r
|
|
WHERE b.build_repo_id = r.repo_id
|
|
AND b.build_status IN ('pending','running')
|
|
`).Find(&feed)
|
|
return feed, err
|
|
}
|
|
|
|
func (s storage) UserFeed(user *model.User) ([]*model.Feed, error) {
|
|
feed := make([]*model.Feed, 0, perPage)
|
|
// TODO: use builder (do not behave same as pure sql, fix that)
|
|
return feed, s.engine.SQL(`
|
|
SELECT
|
|
repo_owner
|
|
,repo_name
|
|
,repo_full_name
|
|
,build_number
|
|
,build_event
|
|
,build_status
|
|
,build_created
|
|
,build_started
|
|
,build_finished
|
|
,build_commit
|
|
,build_branch
|
|
,build_ref
|
|
,build_refspec
|
|
,build_remote
|
|
,build_title
|
|
,build_message
|
|
,build_author
|
|
,build_email
|
|
,build_avatar
|
|
FROM repos
|
|
INNER JOIN perms ON perms.perm_repo_id = repos.repo_id
|
|
INNER JOIN builds ON builds.build_repo_id = repos.repo_id
|
|
WHERE perms.perm_user_id = ?
|
|
AND (perms.perm_push = ? OR perms.perm_admin = ?)
|
|
ORDER BY build_id DESC
|
|
LIMIT 50
|
|
`, user.ID, true, true).Find(&feed)
|
|
}
|
|
|
|
func (s storage) RepoListLatest(user *model.User) ([]*model.Feed, error) {
|
|
feed := make([]*model.Feed, 0, perPage)
|
|
// TODO: use builder (do not behave same as pure sql, fix that)
|
|
return feed, s.engine.SQL(`
|
|
SELECT
|
|
repo_owner
|
|
,repo_name
|
|
,repo_full_name
|
|
,build_number
|
|
,build_event
|
|
,build_status
|
|
,build_created
|
|
,build_started
|
|
,build_finished
|
|
,build_commit
|
|
,build_branch
|
|
,build_ref
|
|
,build_refspec
|
|
,build_remote
|
|
,build_title
|
|
,build_message
|
|
,build_author
|
|
,build_email
|
|
,build_avatar
|
|
FROM repos LEFT OUTER JOIN builds ON build_id = (
|
|
SELECT build_id FROM builds
|
|
WHERE builds.build_repo_id = repos.repo_id
|
|
ORDER BY build_id DESC
|
|
LIMIT 1
|
|
)
|
|
INNER JOIN perms ON perms.perm_repo_id = repos.repo_id
|
|
WHERE perms.perm_user_id = ?
|
|
AND (perms.perm_push = ? OR perms.perm_admin = ?)
|
|
AND repos.repo_active = ?
|
|
ORDER BY repo_full_name ASC;
|
|
`, user.ID, true, true, true).
|
|
Find(&feed)
|
|
}
|