func newPullCommand()

in internal/cmd/pull.go [30:79]


func newPullCommand() *cobra.Command {
	cliOptions := &pullOptions{}
	cmd := &cobra.Command{
		Use:   "pull",
		Short: "Pull latest version of linter",
		Long:  `An alternative to pull an image.`,
		Run: func(cmd *cobra.Command, args []string) {
			qdenv.InitializeQodanaGlobalEnv(qdenv.EmptyEnvProvider())

			commonCtx := commoncontext.Compute(
				cliOptions.Linter,
				"",
				cliOptions.Image,
				"true",
				"",
				"",
				"",
				qdenv.GetQodanaGlobalEnv(qdenv.QodanaToken),
				false,
				cliOptions.ProjectDir,
				"",
				cliOptions.ConfigName,
			)
			analyzer, ok := commonCtx.Analyzer.(*product.DockerAnalyzer)
			if !ok {
				log.Println("Native mode is used, skipping pull")
			} else {
				qdcontainer.PrepareContainerEnvSettings()
				client, err := qdcontainer.NewContainerClient(cmd.Context())
				if err != nil {
					log.Fatalf("Failed to initialize Docker API: %s", err)
				}

				core.CheckImage(analyzer.Image)
				core.PullImage(client, analyzer.Image)
			}
		},
	}
	flags := cmd.Flags()
	flags.StringVarP(&cliOptions.Linter, "linter", "l", "", "Override linter to use")
	flags.StringVarP(&cliOptions.Image, "image", "", "", "Image to pull")
	flags.StringVarP(&cliOptions.ProjectDir, "project-dir", "i", ".", "Root directory of the inspected project")
	flags.StringVar(
		&cliOptions.ConfigName,
		"config",
		"",
		"Set a custom configuration file instead of 'qodana.yaml'. Relative paths in the configuration will be based on the project directory.",
	)
	return cmd
}