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 02:27:50 +01:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-24 10:49:20 +01:00
|
|
|
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
|
2021-12-10 02:27:50 +01:00
|
|
|
func ConvertFromGitCommit(commits []*git.Commit, repo *repo_model.Repository) []*SignCommitWithStatuses {
|
2021-08-09 20:08:51 +02:00
|
|
|
return ParseCommitsWithStatus(
|
|
|
|
ParseCommitsWithSignature(
|
2021-11-24 10:49:20 +01:00
|
|
|
user_model.ValidateCommitsWithEmails(commits),
|
2021-08-09 20:08:51 +02:00
|
|
|
repo,
|
|
|
|
),
|
|
|
|
repo,
|
|
|
|
)
|
|
|
|
}
|