package main import ( "fmt" "github.com/crowdsecurity/crowdsec/pkg/cwhub" log "github.com/sirupsen/logrus" "github.com/spf13/cobra" ) func NewCollectionsCmd() *cobra.Command { var cmdCollections = &cobra.Command{ Use: "collections [action]", Short: "Manage collections from hub", Long: `Install/Remove/Upgrade/Inspect collections from the CrowdSec Hub.`, /*TBD fix help*/ Args: cobra.MinimumNArgs(1), PersistentPreRunE: func(cmd *cobra.Command, args []string) error { if csConfig.Cscli == nil { return fmt.Errorf("you must configure cli before interacting with hub") } if err := setHubBranch(); err != nil { return fmt.Errorf("error while setting hub branch: %s", err) } return nil }, PersistentPostRun: func(cmd *cobra.Command, args []string) { if cmd.Name() == "inspect" || cmd.Name() == "list" { return } log.Infof("Run 'sudo systemctl reload crowdsec' for the new configuration to be effective.") }, } var cmdCollectionsInstall = &cobra.Command{ Use: "install collection", Short: "Install given collection(s)", Long: `Fetch and install given collection(s) from hub`, Example: `cscli collections install crowdsec/xxx crowdsec/xyz`, Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { if err := cwhub.GetHubIdx(csConfig.Cscli); err != nil { log.Fatalf("Failed to get Hub index : %v", err) log.Infoln("Run 'sudo cscli hub update' to get the hub index") } for _, name := range args { InstallItem(name, cwhub.COLLECTIONS, forceAction) } }, } cmdCollectionsInstall.PersistentFlags().BoolVarP(&downloadOnly, "download-only", "d", false, "Only download packages, don't enable") cmdCollectionsInstall.PersistentFlags().BoolVar(&forceAction, "force", false, "Force install : Overwrite tainted and outdated files") cmdCollections.AddCommand(cmdCollectionsInstall) var cmdCollectionsRemove = &cobra.Command{ Use: "remove collection", Short: "Remove given collection(s)", Long: `Remove given collection(s) from hub`, Example: `cscli collections remove crowdsec/xxx crowdsec/xyz`, Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { if err := cwhub.GetHubIdx(csConfig.Cscli); err != nil { log.Fatalf("Failed to get Hub index : %v", err) log.Infoln("Run 'sudo cscli hub update' to get the hub index") } if all { RemoveMany(cwhub.COLLECTIONS, "") } else { for _, name := range args { if !forceAction { item := cwhub.GetItem(cwhub.COLLECTIONS, name) if len(item.BelongsToCollections) > 0 { log.Warningf("%s belongs to other collections :\n%s\n", name, item.BelongsToCollections) log.Printf("Run 'sudo cscli collections remove %s --force' if you want to force remove this sub collection\n", name) continue } } RemoveMany(cwhub.COLLECTIONS, name) } } }, } cmdCollectionsRemove.PersistentFlags().BoolVar(&purge, "purge", false, "Delete source file too") cmdCollectionsRemove.PersistentFlags().BoolVar(&forceAction, "force", false, "Force remove : Remove tainted and outdated files") cmdCollectionsRemove.PersistentFlags().BoolVar(&all, "all", false, "Delete all the collections") cmdCollections.AddCommand(cmdCollectionsRemove) var cmdCollectionsUpgrade = &cobra.Command{ Use: "upgrade collection", Short: "Upgrade given collection(s)", Long: `Fetch and upgrade given collection(s) from hub`, Example: `cscli collections upgrade crowdsec/xxx crowdsec/xyz`, Run: func(cmd *cobra.Command, args []string) { if err := cwhub.GetHubIdx(csConfig.Cscli); err != nil { log.Fatalf("Failed to get Hub index : %v", err) log.Infoln("Run 'sudo cscli hub update' to get the hub index") } if all { UpgradeConfig(cwhub.COLLECTIONS, "", forceAction) } else { for _, name := range args { UpgradeConfig(cwhub.COLLECTIONS, name, forceAction) } } }, } cmdCollectionsUpgrade.PersistentFlags().BoolVarP(&all, "all", "a", false, "Upgrade all the collections") cmdCollectionsUpgrade.PersistentFlags().BoolVar(&forceAction, "force", false, "Force upgrade : Overwrite tainted and outdated files") cmdCollections.AddCommand(cmdCollectionsUpgrade) var cmdCollectionsInspect = &cobra.Command{ Use: "inspect collection", Short: "Inspect given collection", Long: `Inspect given collection`, Example: `cscli collections inspect crowdsec/xxx crowdsec/xyz`, Args: cobra.MinimumNArgs(1), Run: func(cmd *cobra.Command, args []string) { if err := cwhub.GetHubIdx(csConfig.Cscli); err != nil { log.Fatalf("Failed to get Hub index : %v", err) log.Infoln("Run 'sudo cscli hub update' to get the hub index") } for _, name := range args { InspectItem(name, cwhub.COLLECTIONS) } }, } cmdCollectionsInspect.PersistentFlags().StringVarP(&prometheusURL, "url", "u", "", "Prometheus url") cmdCollections.AddCommand(cmdCollectionsInspect) var cmdCollectionsList = &cobra.Command{ Use: "list collection [-a]", Short: "List all collections or given one", Long: `List all collections or given one`, Example: `cscli collections list`, Args: cobra.ExactArgs(0), Run: func(cmd *cobra.Command, args []string) { if err := cwhub.GetHubIdx(csConfig.Cscli); err != nil { log.Fatalf("Failed to get Hub index : %v", err) log.Infoln("Run 'sudo cscli hub update' to get the hub index") } ListItem(cwhub.COLLECTIONS, args) }, } cmdCollectionsList.PersistentFlags().BoolVarP(&all, "all", "a", false, "List as well disabled items") cmdCollections.AddCommand(cmdCollectionsList) return cmdCollections }