mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-09 15:38:03 -05:00
88 lines
2.9 KiB
Go
88 lines
2.9 KiB
Go
// MIT License
|
|
|
|
// Copyright (c) 2019 Zachary Rice
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
// copies or substantial portions of the Software.
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
// SOFTWARE.
|
|
|
|
package detect
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"io"
|
|
"os"
|
|
|
|
"github.com/rs/zerolog/log"
|
|
|
|
"github.com/Infisical/infisical-merge/report"
|
|
)
|
|
|
|
func IsNew(finding report.Finding, baseline []report.Finding) bool {
|
|
// Explicitly testing each property as it gives significantly better performance in comparison to cmp.Equal(). Drawback is that
|
|
// the code requires maintanance if/when the Finding struct changes
|
|
for _, b := range baseline {
|
|
|
|
if finding.Author == b.Author &&
|
|
finding.Commit == b.Commit &&
|
|
finding.Date == b.Date &&
|
|
finding.Description == b.Description &&
|
|
finding.Email == b.Email &&
|
|
finding.EndColumn == b.EndColumn &&
|
|
finding.EndLine == b.EndLine &&
|
|
finding.Entropy == b.Entropy &&
|
|
finding.File == b.File &&
|
|
// Omit checking finding.Fingerprint - if the format of the fingerprint changes, the users will see unexpected behaviour
|
|
finding.Match == b.Match &&
|
|
finding.Message == b.Message &&
|
|
finding.RuleID == b.RuleID &&
|
|
finding.Secret == b.Secret &&
|
|
finding.StartColumn == b.StartColumn &&
|
|
finding.StartLine == b.StartLine {
|
|
return false
|
|
}
|
|
}
|
|
return true
|
|
}
|
|
|
|
func LoadBaseline(baselinePath string) ([]report.Finding, error) {
|
|
var previousFindings []report.Finding
|
|
jsonFile, err := os.Open(baselinePath)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not open %s", baselinePath)
|
|
}
|
|
|
|
defer func() {
|
|
if cerr := jsonFile.Close(); cerr != nil {
|
|
log.Warn().Err(cerr).Msg("problem closing jsonFile handle")
|
|
}
|
|
}()
|
|
|
|
bytes, err := io.ReadAll(jsonFile)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("could not read data from the file %s", baselinePath)
|
|
}
|
|
|
|
err = json.Unmarshal(bytes, &previousFindings)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("the format of the file %s is not supported", baselinePath)
|
|
}
|
|
|
|
return previousFindings, nil
|
|
}
|