summaryrefslogtreecommitdiffstats
path: root/modules/git/object_id_gogit.go
blob: 50917f0552d541240b1077d6858ef57a63bddedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2023 The Gitea Authors. All rights reserved.
// SPDX-License-Identifier: MIT
//go:build gogit

package git

import (
	"github.com/go-git/go-git/v5/plumbing"
	"github.com/go-git/go-git/v5/plumbing/hash"
)

func ParseGogitHash(h plumbing.Hash) ObjectID {
	switch hash.Size {
	case 20:
		return ObjectFormatFromID(Sha1).MustID(h[:])
	}

	return nil
}

func ParseGogitHashArray(objectIDs []plumbing.Hash) []ObjectID {
	ret := make([]ObjectID, len(objectIDs))
	for i, h := range objectIDs {
		ret[i] = ParseGogitHash(h)
	}

	return ret
}