mirror of
https://github.com/trufflesecurity/trufflehog.git
synced 2024-11-10 15:14:38 +00:00
dbcb888063
The previous implementation used int64 for both, which can be mixed up easily. Using distinct types adds a layer of type safety checked by the compiler.
38 lines
1.1 KiB
Go
38 lines
1.1 KiB
Go
package engine
|
|
|
|
import (
|
|
"runtime"
|
|
|
|
"google.golang.org/protobuf/proto"
|
|
"google.golang.org/protobuf/types/known/anypb"
|
|
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/context"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/pb/sourcespb"
|
|
"github.com/trufflesecurity/trufflehog/v3/pkg/sources/circleci"
|
|
)
|
|
|
|
// ScanCircleCI scans CircleCI logs.
|
|
func (e *Engine) ScanCircleCI(ctx context.Context, token string) error {
|
|
connection := &sourcespb.CircleCI{
|
|
Credential: &sourcespb.CircleCI_Token{
|
|
Token: token,
|
|
},
|
|
}
|
|
|
|
var conn anypb.Any
|
|
err := anypb.MarshalFrom(&conn, connection, proto.MarshalOptions{})
|
|
if err != nil {
|
|
ctx.Logger().Error(err, "failed to marshal Circle CI connection")
|
|
return err
|
|
}
|
|
|
|
sourceName := "trufflehog - Circle CI"
|
|
sourceID, jobID, _ := e.sourceManager.GetIDs(ctx, sourceName, circleci.SourceType)
|
|
|
|
circleSource := &circleci.Source{}
|
|
if err := circleSource.Init(ctx, "trufflehog - Circle CI", jobID, sourceID, true, &conn, runtime.NumCPU()); err != nil {
|
|
return err
|
|
}
|
|
_, err = e.sourceManager.Run(ctx, sourceName, circleSource)
|
|
return err
|
|
}
|