Skip to content
Snippets Groups Projects
Verified Commit 57411959 authored by Jan-Niclas Strüwer's avatar Jan-Niclas Strüwer
Browse files

added optional parameter to signal whether to include

parent fe2d62c2
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,8 @@ class ToolRunService(
*/
suspend fun getToolRunForRepository(
repo: RepositoryEntity,
dispatcher: CoroutineDispatcher = Dispatchers.IO
dispatcher: CoroutineDispatcher = Dispatchers.IO,
includeFindings: Boolean = false
): ToolRunDto {
val toolRunEntity = withContext(dispatcher) {
toolRunRepository.findFirstByRepository_IdOrderByCreatedAtDesc(repo.id!!)
......@@ -161,26 +162,36 @@ class ToolRunService(
val apiJobs: MutableList<Deferred<ToolResponseDto>> = mutableListOf()
toolRunEntity.toolEntities.forEach { tool ->
when (tool.toolType) {
ToolType.ORT -> {
apiJobs.add(
defaultScope.async {
// TODO: this will be replaced by an API call
val rawOrtResult = ortService.getOrtResults(projectId = repo.projectId)
val findings = ortService.getFindings(rawOrtResult)
tool.toolType.toViewModel(findings = findings)
}
)
}
else -> {
apiJobs.add(
defaultScope.async {
tool.toolType.toViewModel()
}
)
if (includeFindings) {
toolRunEntity.toolEntities.forEach { tool ->
when (tool.toolType) {
ToolType.ORT -> {
apiJobs.add(
defaultScope.async {
val rawOrtResult = ortService.getOrtResults(projectId = repo.projectId)
val findings = ortService.getFindings(rawOrtResult)
tool.toolType.toViewModel(findings = findings)
}
)
}
else -> {
apiJobs.add(
defaultScope.async {
tool.toolType.toViewModel()
}
)
}
}
}
} else {
toolRunEntity.toolEntities.forEach { tool ->
apiJobs.add(
defaultScope.async {
tool.toolType.toViewModel()
}
)
}
}
val tools = apiJobs.mapNotNull {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment

Consent

On this website, we use the web analytics service Matomo to analyze and review the use of our website. Through the collected statistics, we can improve our offerings and make them more appealing for you. Here, you can decide whether to allow us to process your data and set corresponding cookies for these purposes, in addition to technically necessary cookies. Further information on data protection—especially regarding "cookies" and "Matomo"—can be found in our privacy policy. You can withdraw your consent at any time.