mirror of
https://github.com/ossf/scorecard.git
synced 2024-11-10 12:27:01 +03:00
10b6052acf
* 🌱 Upgrade to go 1.18
- Upgrade to go 1.18
- Updated the deps to avoid critical CVE's
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Updated dockerfile.
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Fixed the linter issues.
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Fixed the CVE dependencies
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Rmoved the cache which is changing between 1.17 and 1.18
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Rmoved the cache which is changing between 1.17 and 1.18
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Updated ko to latest
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Fixed linter issue.
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
* Fixed linter issue.
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
Signed-off-by: naveensrinivasan <172697+naveensrinivasan@users.noreply.github.com>
83 lines
2.5 KiB
Go
83 lines
2.5 KiB
Go
// Copyright 2021 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 clients
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"math"
|
|
"net/http"
|
|
"time"
|
|
)
|
|
|
|
var errTooManyRequests = errors.New("failed after exponential backoff")
|
|
|
|
// httpClientCIIBestPractices implements the CIIBestPracticesClient interface.
|
|
// A HTTP client with exponential backoff is used to communicate with the CII Best Practices servers.
|
|
type httpClientCIIBestPractices struct{}
|
|
|
|
type expBackoffTransport struct {
|
|
numRetries uint8
|
|
}
|
|
|
|
func (transport *expBackoffTransport) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
for i := 0; i < int(transport.numRetries); i++ {
|
|
resp, err := http.DefaultClient.Do(req)
|
|
if err != nil || resp.StatusCode != http.StatusTooManyRequests {
|
|
//nolint: wrapcheck
|
|
return resp, err
|
|
}
|
|
time.Sleep(time.Duration(math.Pow(2, float64(i))) * time.Second)
|
|
}
|
|
return nil, errTooManyRequests
|
|
}
|
|
|
|
// GetBadgeLevel implements CIIBestPracticesClient.GetBadgeLevel.
|
|
func (client *httpClientCIIBestPractices) GetBadgeLevel(ctx context.Context, uri string) (BadgeLevel, error) {
|
|
repoURI := fmt.Sprintf("https://%s", uri)
|
|
url := fmt.Sprintf("https://bestpractices.coreinfrastructure.org/projects.json?url=%s", repoURI)
|
|
req, err := http.NewRequestWithContext(ctx, "GET", url, nil)
|
|
if err != nil {
|
|
return Unknown, fmt.Errorf("error during http.NewRequestWithContext: %w", err)
|
|
}
|
|
|
|
httpClient := http.Client{
|
|
Transport: &expBackoffTransport{
|
|
numRetries: 3,
|
|
},
|
|
}
|
|
resp, err := httpClient.Do(req)
|
|
if err != nil {
|
|
return Unknown, fmt.Errorf("error during http.Do: %w", err)
|
|
}
|
|
defer resp.Body.Close()
|
|
|
|
jsonData, err := io.ReadAll(resp.Body)
|
|
if err != nil {
|
|
return Unknown, fmt.Errorf("error during io.ReadAll: %w", err)
|
|
}
|
|
|
|
parsedResponse, err := ParseBadgeResponseFromJSON(jsonData)
|
|
if err != nil {
|
|
return Unknown, fmt.Errorf("error during json parsing: %w", err)
|
|
}
|
|
if len(parsedResponse) < 1 {
|
|
return NotFound, nil
|
|
}
|
|
return parsedResponse[0].getBadgeLevel()
|
|
}
|