|
| 1 | +//> using scala "2" |
| 2 | +//> using lib "com.codacy::codacy-engine-scala-seed:6.1.0" |
| 3 | +//> using lib "com.lihaoyi::os-lib:0.9.1" |
| 4 | +//> using lib "com.lihaoyi::upickle:3.1.2" |
| 5 | +//> using lib "com.lihaoyi::requests:0.8.0" |
| 6 | + |
| 7 | +import com.codacy.plugins.api.results.Pattern |
| 8 | +import com.codacy.plugins.api.results.Result |
| 9 | +import com.codacy.plugins.api.results.Tool |
| 10 | + |
| 11 | +import com.codacy.plugins.api._ |
| 12 | +import play.api.libs.json.Json |
| 13 | + |
| 14 | +case class TrivySecretRule(ID: String, Category: String, Title: String, Severity: String) |
| 15 | + |
| 16 | +implicit val trivySecretRuleRW = Json.format[TrivySecretRule] |
| 17 | + |
| 18 | +val version = os |
| 19 | + .read(os.pwd / "go.mod") |
| 20 | + .linesIterator |
| 21 | + .collectFirst { case s" github.com/aquasecurity/trivy $version" => |
| 22 | + version.trim |
| 23 | + } |
| 24 | + .get |
| 25 | + |
| 26 | +val lines = os |
| 27 | + .proc("go", "run", "./docgenerator/extract-secret-rules.go") |
| 28 | + .call() |
| 29 | + .out |
| 30 | + .lines() |
| 31 | + .mkString |
| 32 | + |
| 33 | +val trivyRules = Json.fromJson[List[TrivySecretRule]](Json.parse(lines)).asOpt.get |
| 34 | + |
| 35 | +def categoryAndSubcategoryOf(patternId: String): (Pattern.Category, Option[Pattern.Subcategory]) = |
| 36 | + (Pattern.Category.Security, None) |
| 37 | + |
| 38 | +def severityOf(rule: TrivySecretRule): Result.Level = |
| 39 | + rule.Severity match { |
| 40 | + case "CRITICAL" => Result.Level.Err |
| 41 | + case "HIGH" => Result.Level.Err |
| 42 | + case "MEDIUM" => Result.Level.Warn |
| 43 | + case "LOW" => Result.Level.Info |
| 44 | + case _ => Result.Level.Err |
| 45 | + } |
| 46 | + |
| 47 | +val patternSpecifications = trivyRules.map { rule => |
| 48 | + val (category, subcategory) = categoryAndSubcategoryOf(rule.ID) |
| 49 | + Pattern.Specification(Pattern.Id(rule.ID), severityOf(rule), category, subcategory, enabled = true) |
| 50 | +} |
| 51 | + |
| 52 | +val patternDescriptions = |
| 53 | + trivyRules.map(rule => Pattern.Description(Pattern.Id(rule.ID), Pattern.Title(s"Detects ${rule.Title}"), None, None)) |
| 54 | + |
| 55 | +val specification = Tool.Specification(Tool.Name("trivy"), Some(Tool.Version(version)), patternSpecifications.toSet) |
| 56 | + |
| 57 | +os.write.over(os.pwd / "docs" / "patterns.json", Json.prettyPrint(Json.toJson(specification)) + "\n") |
| 58 | + |
| 59 | +os.remove.all(os.pwd / "docs" / "description") |
| 60 | + |
| 61 | +os.write.over( |
| 62 | + os.pwd / "docs" / "description" / "description.json", |
| 63 | + Json.prettyPrint(Json.toJson(patternDescriptions)) + "\n", |
| 64 | + createFolders = true |
| 65 | +) |
0 commit comments