aboutsummaryrefslogtreecommitdiffstats
path: root/entity/refs.go
blob: 6ba505b96a5d3f3df9a56a7cb5a68c554228f3ce (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package entity

import "strings"

// RefsToIds parse a slice of git references and return the corresponding Entity's Id.
func RefsToIds(refs []string) []Id {
	ids := make([]Id, len(refs))

	for i, ref := range refs {
		ids[i] = RefToId(ref)
	}

	return ids
}

// RefToId parse a git reference and return the corresponding Entity's Id.
func RefToId(ref string) Id {
	split := strings.Split(ref, "/")
	return Id(split[len(split)-1])
}