2020-10-26 23:22:13 +03:00
|
|
|
// 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.
|
|
|
|
|
2021-08-01 06:42:14 +03:00
|
|
|
// Package checks defines all Scorecard checks.
|
2020-10-13 18:35:55 +03:00
|
|
|
package checks
|
|
|
|
|
2022-01-13 01:14:18 +03:00
|
|
|
import (
|
|
|
|
"github.com/ossf/scorecard/v4/checker"
|
|
|
|
)
|
2020-10-13 18:35:55 +03:00
|
|
|
|
2021-05-24 21:34:33 +03:00
|
|
|
// AllChecks is the list of all security checks that will be run.
|
2021-04-10 15:26:56 +03:00
|
|
|
var AllChecks = checker.CheckNameToFnMap{}
|
2020-10-13 21:55:14 +03:00
|
|
|
|
2022-02-27 05:09:21 +03:00
|
|
|
// GetAll returns the full list of checks, given any environment variable
|
|
|
|
// constraints.
|
|
|
|
// TODO(checks): Is this actually necessary given `AllChecks` exists?
|
|
|
|
func GetAll() checker.CheckNameToFnMap {
|
|
|
|
possibleChecks := AllChecks
|
|
|
|
return possibleChecks
|
|
|
|
}
|
|
|
|
|
2022-02-08 03:49:49 +03:00
|
|
|
func registerCheck(name string, fn checker.CheckFn, supportedRequestTypes []checker.RequestType) error {
|
2022-01-13 01:14:18 +03:00
|
|
|
if name == "" {
|
|
|
|
return errInternalNameCannotBeEmpty
|
|
|
|
}
|
|
|
|
if fn == nil {
|
|
|
|
return errInternalCheckFuncCannotBeNil
|
|
|
|
}
|
2022-02-08 03:49:49 +03:00
|
|
|
AllChecks[name] = checker.Check{
|
|
|
|
Fn: fn,
|
|
|
|
SupportedRequestTypes: supportedRequestTypes,
|
|
|
|
}
|
2022-01-13 01:14:18 +03:00
|
|
|
return nil
|
2020-10-13 21:55:14 +03:00
|
|
|
}
|