mirror of
https://github.com/ossf/scorecard.git
synced 2024-11-04 03:52:31 +03:00
1a2f08827f
Co-authored-by: Azeem Shaikh <azeems@google.com>
41 lines
1.2 KiB
Go
41 lines
1.2 KiB
Go
// Copyright 2022 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 raw
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
"github.com/ossf/scorecard/v4/checker"
|
|
)
|
|
|
|
var errEmptyClient = errors.New("CII client is nil")
|
|
|
|
// CIIBestPractices retrieves the raw data for the CIIBestPractices check.
|
|
func CIIBestPractices(c *checker.CheckRequest) (checker.CIIBestPracticesData, error) {
|
|
var results checker.CIIBestPracticesData
|
|
if c.CIIClient == nil {
|
|
return results, fmt.Errorf("%w", errEmptyClient)
|
|
}
|
|
|
|
badge, err := c.CIIClient.GetBadgeLevel(c.Ctx, c.Repo.URI())
|
|
if err != nil {
|
|
return results, fmt.Errorf("%w", err)
|
|
}
|
|
results.Badge = badge
|
|
|
|
return results, nil
|
|
}
|