scorecard/checks/signed_releases.go

71 lines
1.8 KiB
Go
Raw Normal View History

// Copyright 2020 Security Scorecard Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2020-10-09 17:47:59 +03:00
package checks
import (
"strings"
"github.com/google/go-github/v32/github"
2020-10-27 22:23:48 +03:00
"github.com/ossf/scorecard/checker"
2020-10-09 17:47:59 +03:00
)
var releaseLookBack int = 5
2020-10-09 17:47:59 +03:00
func init() {
2020-10-13 21:55:14 +03:00
registerCheck("Signed-Releases", SignedReleases)
2020-10-09 17:47:59 +03:00
}
func SignedReleases(c checker.Checker) checker.CheckResult {
2020-10-09 17:47:59 +03:00
releases, _, err := c.Client.Repositories.ListReleases(c.Ctx, c.Owner, c.Repo, &github.ListOptions{})
if err != nil {
return checker.RetryResult(err)
2020-10-09 17:47:59 +03:00
}
totalReleases := 0
totalSigned := 0
for _, r := range releases {
assets, _, err := c.Client.Repositories.ListReleaseAssets(c.Ctx, c.Owner, c.Repo, r.GetID(), &github.ListOptions{})
if err != nil {
return checker.RetryResult(err)
2020-10-09 17:47:59 +03:00
}
if len(assets) == 0 {
2020-10-09 17:47:59 +03:00
continue
}
totalReleases++
signed := false
for _, asset := range assets {
for _, suffix := range []string{".asc", ".minisig", ".sig"} {
2020-10-09 17:47:59 +03:00
if strings.HasSuffix(asset.GetName(), suffix) {
c.Logf("signed release found: %s, url: %s", asset.GetName(), asset.GetURL())
2020-10-09 17:47:59 +03:00
signed = true
break
}
}
if signed {
totalSigned++
break
}
}
if totalReleases > releaseLookBack {
break
}
2020-10-09 17:47:59 +03:00
}
if totalReleases == 0 {
return checker.InconclusiveResult
2020-10-09 17:47:59 +03:00
}
return checker.ProportionalResult(totalSigned, totalReleases, 0.8)
2020-10-09 17:47:59 +03:00
}