2021-01-05 03:47:02 +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.
|
|
|
|
|
|
|
|
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"
|
2021-01-05 03:47:02 +03:00
|
|
|
)
|
|
|
|
|
2022-02-08 03:49:49 +03:00
|
|
|
// CheckBranchProtection is the exported name for Branch-Protected check.
|
|
|
|
const CheckBranchProtection = "Branch-Protection"
|
2021-04-10 15:26:56 +03:00
|
|
|
|
2021-05-22 20:19:52 +03:00
|
|
|
//nolint:gochecknoinits
|
2021-01-05 03:47:02 +03:00
|
|
|
func init() {
|
2022-02-08 03:49:49 +03:00
|
|
|
if err := registerCheck(CheckBranchProtection, BranchProtection, nil); err != nil {
|
2022-01-13 01:14:18 +03:00
|
|
|
// this should never happen
|
|
|
|
panic(err)
|
|
|
|
}
|
2021-01-05 03:47:02 +03:00
|
|
|
}
|
|
|
|
|
2021-12-17 00:42:05 +03:00
|
|
|
// BranchProtection runs the Branch-Protection check.
|
2021-04-19 22:18:34 +03:00
|
|
|
func BranchProtection(c *checker.CheckRequest) checker.CheckResult {
|
2021-12-17 00:42:05 +03:00
|
|
|
rawData, err := raw.BranchProtection(c.RepoClient)
|
2021-01-05 03:47:02 +03:00
|
|
|
if err != nil {
|
2021-10-28 21:30:02 +03:00
|
|
|
e := sce.WithMessage(sce.ErrScorecardInternal, err.Error())
|
|
|
|
return checker.CreateRuntimeErrorResult(CheckBranchProtection, e)
|
2021-01-05 03:47:02 +03:00
|
|
|
}
|
2021-06-15 19:37:27 +03:00
|
|
|
|
2021-12-17 00:42:05 +03:00
|
|
|
// Return raw results.
|
|
|
|
if c.RawResults != nil {
|
|
|
|
c.RawResults.BranchProtectionResults = rawData
|
2021-06-15 19:37:27 +03:00
|
|
|
}
|
|
|
|
|
2021-12-17 00:42:05 +03:00
|
|
|
// Return the score evaluation.
|
|
|
|
return evaluation.BranchProtection(CheckBranchProtection, c.Dlogger, &rawData)
|
2021-01-05 03:47:02 +03:00
|
|
|
}
|