mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-04-28 16:20:29 -05:00
45 lines
1.1 KiB
Go
45 lines
1.1 KiB
Go
package fs
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/google/uuid"
|
|
"github.com/sirupsen/logrus"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func setupMkdirCommand() *cobra.Command {
|
|
cmd := cobra.Command{
|
|
Use: "mkdir <path>",
|
|
Short: "Create Directory",
|
|
Args: cobra.ExactArgs(1),
|
|
PreRun: func(cmd *cobra.Command, args []string) {
|
|
openFileSystemFromFlags(cmd)
|
|
},
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
path := args[0]
|
|
if _, err := fs.ResourceByPath(path); err == nil {
|
|
logrus.Fatal("Resource already exists: " + path)
|
|
}
|
|
// TODO: Streamline with WebDAV mkcol request handling
|
|
path = strings.TrimRight(path, "/")
|
|
index := strings.LastIndex(path, "/")
|
|
parentPath := path[0:index]
|
|
parent, err := fs.ResourceByPath(parentPath)
|
|
|
|
if err != nil {
|
|
logrus.Fatal("Parent resource does not exist: " + parentPath)
|
|
}
|
|
|
|
id := uuid.New()
|
|
name := path[index+1:]
|
|
if _, err = fs.CreateMemberResource(parent, id, name, true); err != nil {
|
|
logrus.Fatal(err)
|
|
} else {
|
|
logrus.Info("Created directory " + path + " (" + id.String() + ")")
|
|
}
|
|
},
|
|
}
|
|
return &cmd
|
|
}
|