2021-08-09 18:08:51 +00:00
|
|
|
// Copyright 2021 Gitea. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
2021-12-10 08:14:24 +00:00
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2021-08-09 18:08:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
|
|
|
)
|
|
|
|
|
|
|
|
// ConvertFromGitCommit converts git commits into SignCommitWithStatuses
|
2021-12-10 01:27:50 +00:00
|
|
|
func ConvertFromGitCommit(commits []*git.Commit, repo *repo_model.Repository) []*SignCommitWithStatuses {
|
2021-08-09 18:08:51 +00:00
|
|
|
return ParseCommitsWithStatus(
|
2021-12-10 08:14:24 +00:00
|
|
|
asymkey_model.ParseCommitsWithSignature(
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model.ValidateCommitsWithEmails(commits),
|
2021-12-10 08:14:24 +00:00
|
|
|
repo.GetTrustModel(),
|
|
|
|
func(user *user_model.User) (bool, error) {
|
|
|
|
return IsUserRepoAdmin(repo, user)
|
|
|
|
},
|
2021-08-09 18:08:51 +00:00
|
|
|
),
|
|
|
|
repo,
|
|
|
|
)
|
|
|
|
}
|