95 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			95 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| package golinters
 | |
| 
 | |
| import (
 | |
| 	"sync"
 | |
| 
 | |
| 	"github.com/ryancurrah/gomodguard"
 | |
| 	"golang.org/x/tools/go/analysis"
 | |
| 
 | |
| 	"github.com/golangci/golangci-lint/pkg/config"
 | |
| 	"github.com/golangci/golangci-lint/pkg/golinters/goanalysis"
 | |
| 	"github.com/golangci/golangci-lint/pkg/lint/linter"
 | |
| 	"github.com/golangci/golangci-lint/pkg/result"
 | |
| )
 | |
| 
 | |
| const (
 | |
| 	gomodguardName = "gomodguard"
 | |
| 	gomodguardDesc = "Allow and block list linter for direct Go module dependencies. " +
 | |
| 		"This is different from depguard where there are different block " +
 | |
| 		"types for example version constraints and module recommendations."
 | |
| )
 | |
| 
 | |
| // NewGomodguard returns a new Gomodguard linter.
 | |
| func NewGomodguard(settings *config.GoModGuardSettings) *goanalysis.Linter {
 | |
| 	var issues []goanalysis.Issue
 | |
| 	var mu sync.Mutex
 | |
| 
 | |
| 	processorCfg := &gomodguard.Configuration{}
 | |
| 	if settings != nil {
 | |
| 		processorCfg.Allowed.Modules = settings.Allowed.Modules
 | |
| 		processorCfg.Allowed.Domains = settings.Allowed.Domains
 | |
| 		processorCfg.Blocked.LocalReplaceDirectives = settings.Blocked.LocalReplaceDirectives
 | |
| 
 | |
| 		for n := range settings.Blocked.Modules {
 | |
| 			for k, v := range settings.Blocked.Modules[n] {
 | |
| 				m := map[string]gomodguard.BlockedModule{k: {
 | |
| 					Recommendations: v.Recommendations,
 | |
| 					Reason:          v.Reason,
 | |
| 				}}
 | |
| 				processorCfg.Blocked.Modules = append(processorCfg.Blocked.Modules, m)
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 
 | |
| 		for n := range settings.Blocked.Versions {
 | |
| 			for k, v := range settings.Blocked.Versions[n] {
 | |
| 				m := map[string]gomodguard.BlockedVersion{k: {
 | |
| 					Version: v.Version,
 | |
| 					Reason:  v.Reason,
 | |
| 				}}
 | |
| 				processorCfg.Blocked.Versions = append(processorCfg.Blocked.Versions, m)
 | |
| 				break
 | |
| 			}
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	analyzer := &analysis.Analyzer{
 | |
| 		Name: goanalysis.TheOnlyAnalyzerName,
 | |
| 		Doc:  goanalysis.TheOnlyanalyzerDoc,
 | |
| 		Run:  goanalysis.DummyRun,
 | |
| 	}
 | |
| 
 | |
| 	return goanalysis.NewLinter(
 | |
| 		gomodguardName,
 | |
| 		gomodguardDesc,
 | |
| 		[]*analysis.Analyzer{analyzer},
 | |
| 		nil,
 | |
| 	).WithContextSetter(func(lintCtx *linter.Context) {
 | |
| 		processor, err := gomodguard.NewProcessor(processorCfg)
 | |
| 		if err != nil {
 | |
| 			lintCtx.Log.Warnf("running gomodguard failed: %s: if you are not using go modules "+
 | |
| 				"it is suggested to disable this linter", err)
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		analyzer.Run = func(pass *analysis.Pass) (any, error) {
 | |
| 			gomodguardIssues := processor.ProcessFiles(getFileNames(pass))
 | |
| 
 | |
| 			mu.Lock()
 | |
| 			defer mu.Unlock()
 | |
| 
 | |
| 			for _, gomodguardIssue := range gomodguardIssues {
 | |
| 				issues = append(issues, goanalysis.NewIssue(&result.Issue{
 | |
| 					FromLinter: gomodguardName,
 | |
| 					Pos:        gomodguardIssue.Position,
 | |
| 					Text:       gomodguardIssue.Reason,
 | |
| 				}, pass))
 | |
| 			}
 | |
| 
 | |
| 			return nil, nil
 | |
| 		}
 | |
| 	}).WithIssuesReporter(func(*linter.Context) []goanalysis.Issue {
 | |
| 		return issues
 | |
| 	}).WithLoadMode(goanalysis.LoadModeSyntax)
 | |
| }
 | 
