generated from cloudoperators/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
129 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// SPDX-FileCopyrightText: 2024 SAP SE or an SAP affiliate company and Greenhouse contributors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package shared | ||
|
||
import ( | ||
"fmt" | ||
|
||
"github.com/cloudoperators/heureka/internal/database" | ||
"github.com/cloudoperators/heureka/internal/entity" | ||
"github.com/sirupsen/logrus" | ||
) | ||
|
||
// BuildIssueVariantMap builds a map of issue id to issue variant for the given filter. | ||
// it does take the first issue_variant with the highest priority for the respective component instance. | ||
// This is archived by utilizing database.GetServiceIssueVariants that does return ALL issue variants for a given | ||
// component instance id together with the priorty and afterwards identifying for each issue the variant with the highest | ||
// priority | ||
// | ||
// Returns a map of issue id to issue variant | ||
func BuildIssueVariantMap(db database.Database, filter *entity.ServiceIssueVariantFilter, componentVersionId int64) (map[int64]entity.ServiceIssueVariant, error) { | ||
l := logrus.WithFields(logrus.Fields{ | ||
"event": "BuildIssueVariantMap", | ||
"componentInstanceID": filter.ComponentInstanceId, | ||
"componentVersionID": componentVersionId, | ||
"issueId": filter.IssueId, | ||
}) | ||
|
||
// Get Issue Variants based on filter | ||
issueVariants, err := db.GetServiceIssueVariants(filter) | ||
if err != nil { | ||
l.WithField("event-step", "FetchIssueVariants").WithError(err).Error("Error while fetching issue variants") | ||
return nil, fmt.Errorf("Error while fetching issue variants: %w", err) | ||
} | ||
|
||
// No issue variants found, | ||
if len(issueVariants) < 1 { | ||
l.WithField("event-step", "FetchIssueVariants").Error("No issue variants found that are related to the issue repository") | ||
return nil, fmt.Errorf("No issue variants found that are related to the issue repository") | ||
} | ||
|
||
// create a map of issue id to variants for easy access | ||
var issueVariantMap = make(map[int64]entity.ServiceIssueVariant) | ||
|
||
for _, variant := range issueVariants { | ||
|
||
if _, ok := issueVariantMap[variant.IssueId]; ok { | ||
// if there are multiple variants with the same priority on their repositories we take the highest severity one | ||
// if serverity and score are the same the first occuring issue variant is taken | ||
if issueVariantMap[variant.IssueId].Priority < variant.Priority { | ||
issueVariantMap[variant.IssueId] = variant | ||
} else if issueVariantMap[variant.IssueId].Severity.Score < variant.Severity.Score { | ||
issueVariantMap[variant.IssueId] = variant | ||
} | ||
} else { | ||
issueVariantMap[variant.IssueId] = variant | ||
} | ||
} | ||
|
||
return issueVariantMap, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters