mirror of
https://codeberg.org/shroff/phylum.git
synced 2026-04-29 16:50:28 -05:00
63 lines
1.7 KiB
Go
63 lines
1.7 KiB
Go
package fs
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/shroff/phylum/server/internal/command/common"
|
|
"github.com/shroff/phylum/server/internal/core/fs"
|
|
"github.com/shroff/phylum/server/internal/core/user"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func setupSetfaclCommand() *cobra.Command {
|
|
cmd := cobra.Command{
|
|
Use: "setfacl <path> <user> (none|read|write|share)",
|
|
Short: "Access Control",
|
|
Args: cobra.ExactArgs(3),
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
f := common.UserFileSystem(cmd)
|
|
path := args[0]
|
|
r, err := f.ResourceByPathWithRoot(path)
|
|
if err != nil {
|
|
fmt.Println("cannot update permissions for '" + path + "': " + err.Error())
|
|
os.Exit(1)
|
|
}
|
|
|
|
username := args[1]
|
|
if _, err := user.ManagerFromContext(context.Background()).UserByUsername(username); err != nil {
|
|
fmt.Println("cannot update permissions for user '" + username + "': " + err.Error())
|
|
os.Exit(1)
|
|
}
|
|
|
|
permission, err := parsePermissionString(args[2])
|
|
if err != nil {
|
|
fmt.Println("cannot update permissions for '" + path + "': " + err.Error())
|
|
os.Exit(1)
|
|
}
|
|
|
|
if _, err := r.UpdatePermissions(username, permission); err != nil {
|
|
fmt.Println("cannot update permissions for '" + path + "': " + err.Error())
|
|
os.Exit(1)
|
|
}
|
|
},
|
|
}
|
|
return &cmd
|
|
}
|
|
|
|
func parsePermissionString(s string) (fs.Permission, error) {
|
|
switch s {
|
|
case "none":
|
|
return fs.PermissionNone, nil
|
|
case "read":
|
|
return fs.PermissionRead, nil
|
|
case "write":
|
|
return fs.PermissionRead | fs.PermissionWrite, nil
|
|
case "share":
|
|
return fs.PermissionRead | fs.PermissionWrite | fs.PermissionShare, nil
|
|
}
|
|
return fs.PermissionNone, errors.New("unrecognized permission: " + s)
|
|
}
|