// This file is part of arduino-cli. // // Copyright 2020 ARDUINO SA (http://www.arduino.cc/) // // This software is released under the GNU General Public License version 3, // which covers the main part of arduino-cli. // The terms of this license can be found at: // https://www.gnu.org/licenses/gpl-3.0.en.html // // You can be released from the requirements of the above licenses by purchasing // a commercial license. Buying such a license is mandatory if you want to // modify or otherwise use the software for commercial activities involving the // Arduino software without disclosing the source code of your own applications. // To purchase a commercial license, send an email to license@arduino.cc. package lib import ( "context" "os" "github.com/arduino/arduino-cli/cli/errorcodes" "github.com/arduino/arduino-cli/cli/feedback" "github.com/arduino/arduino-cli/cli/instance" "github.com/arduino/arduino-cli/cli/output" "github.com/arduino/arduino-cli/commands/lib" rpc "github.com/arduino/arduino-cli/rpc/commands" "github.com/spf13/cobra" ) func initDownloadCommand() *cobra.Command { downloadCommand := &cobra.Command{ Use: "download [LIBRARY_NAME(S)]", Short: "Downloads one or more libraries without installing them.", Long: "Downloads one or more libraries without installing them.", Example: "" + " " + os.Args[0] + " lib download AudioZero # for the latest version.\n" + " " + os.Args[0] + " lib download AudioZero@1.0.0 # for a specific version.", Args: cobra.MinimumNArgs(1), Run: runDownloadCommand, } return downloadCommand } func runDownloadCommand(cmd *cobra.Command, args []string) { instance := instance.CreateInstanceIgnorePlatformIndexErrors() refs, err := ParseLibraryReferenceArgsAndAdjustCase(instance, args) if err != nil { feedback.Errorf("Invalid argument passed: %v", err) os.Exit(errorcodes.ErrBadArgument) } for _, library := range refs { libraryDownloadReq := &rpc.LibraryDownloadReq{ Instance: instance, Name: library.Name, Version: library.Version, } _, err := lib.LibraryDownload(context.Background(), libraryDownloadReq, output.ProgressBar()) if err != nil { feedback.Errorf("Error downloading %s: %v", library, err) os.Exit(errorcodes.ErrNetwork) } } }