scorecard/checks/security_policy.go

60 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"
2020-10-27 22:23:48 +03:00
"github.com/ossf/scorecard/checker"
2020-10-09 17:47:59 +03:00
)
// CheckSecurityPolicy is the registred name for SecurityPolicy.
const CheckSecurityPolicy = "Security-Policy"
//nolint:gochecknoinits
2020-10-09 17:47:59 +03:00
func init() {
registerCheck(CheckSecurityPolicy, SecurityPolicy)
2020-10-09 17:47:59 +03:00
}
func SecurityPolicy(c *checker.CheckRequest) checker.CheckResult {
2020-11-19 18:33:21 +03:00
// check repository for repository-specific policy
2021-05-22 20:29:18 +03:00
onFile := func(name string, logf func(s string, f ...interface{})) (bool, error) {
if strings.EqualFold(name, "security.md") {
logf("security policy : %s", name)
return true, nil
2020-10-09 17:47:59 +03:00
}
return false, nil
2021-05-22 20:29:18 +03:00
}
result := CheckIfFileExists(CheckSecurityPolicy, c, onFile)
if result.Pass {
return result
2020-10-09 17:47:59 +03:00
}
// checking for community default within the .github folder
// https://docs.github.com/en/github/building-a-strong-community/creating-a-default-community-health-file
dotGitHub := c
dotGitHub.Repo = ".github"
2021-05-22 20:29:18 +03:00
onFile = func(name string, logf func(s string, f ...interface{})) (bool, error) {
if strings.EqualFold(name, "security.md") {
logf("security policy within .github folder : %s", name)
return true, nil
}
return false, nil
2021-05-22 20:29:18 +03:00
}
return CheckIfFileExists(CheckSecurityPolicy, dotGitHub, onFile)
2020-10-09 17:47:59 +03:00
}