Files
phylum/server/internal/command/fs/rm.go
2025-06-05 20:10:48 +05:30

45 lines
1.1 KiB
Go

package fs
import (
"fmt"
"os"
"github.com/shroff/phylum/server/internal/command/common"
"github.com/spf13/cobra"
)
func setupRmCommand() *cobra.Command {
cmd := cobra.Command{
Use: "rm <path>",
Short: "Delete Resource",
Args: cobra.ExactArgs(1),
Run: func(cmd *cobra.Command, args []string) {
f := common.UserFileSystem(cmd)
pathOrUUID := args[0]
r, err := f.ResourceByPathWithRoot(pathOrUUID)
if err != nil {
fmt.Println("cannot remove '" + pathOrUUID + "': " + err.Error())
os.Exit(1)
}
if r.Dir() {
if recursive, err := cmd.Flags().GetBool("recursive"); err != nil || !recursive {
fmt.Println("cannot remove '" + pathOrUUID + "': Is a directory. Try again with '-r'")
os.Exit(1)
}
}
hard, _ := cmd.Flags().GetBool("hard")
_, err = f.DeleteRecursive(r, !hard)
if err != nil {
fmt.Println("cannot remove '" + pathOrUUID + "': " + err.Error())
os.Exit(1)
}
},
}
cmd.Flags().BoolP("recursive", "r", false, "Recursive (required for directories)")
cmd.Flags().BoolP("hard", "x", false, "Permanently delete (do not send to trash)")
return &cmd
}