Files
m8sh/models/commit.go
T

27 lines
797 B
Go
Raw Normal View History

2021-08-09 20:08:51 +02: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 16:14:24 +08:00
asymkey_model "code.gitea.io/gitea/models/asymkey"
repo_model "code.gitea.io/gitea/models/repo"
user_model "code.gitea.io/gitea/models/user"
2021-08-09 20:08:51 +02:00
"code.gitea.io/gitea/modules/git"
)
// ConvertFromGitCommit converts git commits into SignCommitWithStatuses
func ConvertFromGitCommit(commits []*git.Commit, repo *repo_model.Repository) []*SignCommitWithStatuses {
2021-08-09 20:08:51 +02:00
return ParseCommitsWithStatus(
2021-12-10 16:14:24 +08:00
asymkey_model.ParseCommitsWithSignature(
user_model.ValidateCommitsWithEmails(commits),
2021-12-10 16:14:24 +08:00
repo.GetTrustModel(),
func(user *user_model.User) (bool, error) {
return IsUserRepoAdmin(repo, user)
},
2021-08-09 20:08:51 +02:00
),
repo,
)
}