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.
|
|
|
|
|
2020-10-09 17:47:59 +03:00
|
|
|
package checks
|
|
|
|
|
|
|
|
import (
|
2022-01-12 22:49:01 +03:00
|
|
|
"github.com/ossf/scorecard/v4/checker"
|
|
|
|
"github.com/ossf/scorecard/v4/checks/evaluation"
|
|
|
|
"github.com/ossf/scorecard/v4/checks/raw"
|
|
|
|
sce "github.com/ossf/scorecard/v4/errors"
|
2020-10-09 17:47:59 +03:00
|
|
|
)
|
|
|
|
|
2021-05-28 00:54:34 +03:00
|
|
|
// CheckSecurityPolicy is the registred name for SecurityPolicy.
|
|
|
|
const CheckSecurityPolicy = "Security-Policy"
|
2021-04-10 15:26:56 +03:00
|
|
|
|
2021-05-22 20:19:52 +03:00
|
|
|
//nolint:gochecknoinits
|
2020-10-09 17:47:59 +03:00
|
|
|
func init() {
|
2022-02-08 03:49:49 +03:00
|
|
|
supportedRequestTypes := []checker.RequestType{
|
2022-03-04 20:24:06 +03:00
|
|
|
checker.CommitBased,
|
2022-02-08 03:49:49 +03:00
|
|
|
}
|
|
|
|
if err := registerCheck(CheckSecurityPolicy, SecurityPolicy, supportedRequestTypes); err != nil {
|
2022-01-13 01:14:18 +03:00
|
|
|
// This should never happen.
|
|
|
|
panic(err)
|
|
|
|
}
|
2020-10-09 17:47:59 +03:00
|
|
|
}
|
|
|
|
|
2021-08-01 01:31:34 +03:00
|
|
|
// SecurityPolicy runs Security-Policy check.
|
2021-04-19 22:18:34 +03:00
|
|
|
func SecurityPolicy(c *checker.CheckRequest) checker.CheckResult {
|
2021-12-15 02:51:42 +03:00
|
|
|
rawData, err := raw.SecurityPolicy(c)
|
2021-07-22 18:37:31 +03:00
|
|
|
if err != nil {
|
2021-12-15 02:51:42 +03:00
|
|
|
e := sce.WithMessage(sce.ErrScorecardInternal, err.Error())
|
|
|
|
return checker.CreateRuntimeErrorResult(CheckSecurityPolicy, e)
|
2020-10-09 17:47:59 +03:00
|
|
|
}
|
2021-02-26 04:49:30 +03:00
|
|
|
|
2021-12-15 02:51:42 +03:00
|
|
|
// Set the raw results.
|
|
|
|
if c.RawResults != nil {
|
|
|
|
c.RawResults.SecurityPolicyResults = rawData
|
2021-09-10 20:13:14 +03:00
|
|
|
}
|
2021-02-26 04:49:30 +03:00
|
|
|
|
2021-12-15 02:51:42 +03:00
|
|
|
return evaluation.SecurityPolicy(CheckSecurityPolicy, c.Dlogger, &rawData)
|
2021-07-04 21:54:09 +03:00
|
|
|
}
|