GitLab DL: normalizeColor (#12793)
parent
0db9043aa7
commit
e10327168d
|
@ -215,6 +215,19 @@ func (g *GitlabDownloader) GetMilestones() ([]*base.Milestone, error) {
|
||||||
return milestones, nil
|
return milestones, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (g *GitlabDownloader) normalizeColor(val string) string {
|
||||||
|
val = strings.TrimLeft(val, "#")
|
||||||
|
val = strings.ToLower(val)
|
||||||
|
if len(val) == 3 {
|
||||||
|
c := []rune(val)
|
||||||
|
val = fmt.Sprintf("%c%c%c%c%c%c", c[0], c[0], c[1], c[1], c[2], c[2])
|
||||||
|
}
|
||||||
|
if len(val) != 6 {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
return val
|
||||||
|
}
|
||||||
|
|
||||||
// GetLabels returns labels
|
// GetLabels returns labels
|
||||||
func (g *GitlabDownloader) GetLabels() ([]*base.Label, error) {
|
func (g *GitlabDownloader) GetLabels() ([]*base.Label, error) {
|
||||||
var perPage = 100
|
var perPage = 100
|
||||||
|
@ -230,7 +243,7 @@ func (g *GitlabDownloader) GetLabels() ([]*base.Label, error) {
|
||||||
for _, label := range ls {
|
for _, label := range ls {
|
||||||
baseLabel := &base.Label{
|
baseLabel := &base.Label{
|
||||||
Name: label.Name,
|
Name: label.Name,
|
||||||
Color: strings.TrimLeft(label.Color, "#)"),
|
Color: g.normalizeColor(label.Color),
|
||||||
Description: label.Description,
|
Description: label.Description,
|
||||||
}
|
}
|
||||||
labels = append(labels, baseLabel)
|
labels = append(labels, baseLabel)
|
||||||
|
|
Loading…
Reference in New Issue