mirror of
https://github.com/ossf/scorecard.git
synced 2024-11-04 03:52:31 +03:00
4d1c531690
* Raw results for license * tests * tests * e2e fix * comment * fix * linter
46 lines
1.3 KiB
Go
46 lines
1.3 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 evaluation
|
|
|
|
import (
|
|
"github.com/ossf/scorecard/v4/checker"
|
|
sce "github.com/ossf/scorecard/v4/errors"
|
|
)
|
|
|
|
// License applies the score policy for the License check.
|
|
func License(name string, dl checker.DetailLogger,
|
|
r *checker.LicenseData,
|
|
) checker.CheckResult {
|
|
if r == nil {
|
|
e := sce.WithMessage(sce.ErrScorecardInternal, "empty raw data")
|
|
return checker.CreateRuntimeErrorResult(name, e)
|
|
}
|
|
|
|
// Apply the policy evaluation.
|
|
if r.Files == nil || len(r.Files) == 0 {
|
|
return checker.CreateMinScoreResult(name, "license file not detected")
|
|
}
|
|
|
|
for _, f := range r.Files {
|
|
dl.Info(&checker.LogMessage{
|
|
Path: f.Path,
|
|
Type: checker.FileTypeSource,
|
|
Offset: 1,
|
|
})
|
|
}
|
|
|
|
return checker.CreateMaxScoreResult(name, "license file detected")
|
|
}
|