-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocalfilesystem_unix.go
98 lines (84 loc) · 1.9 KB
/
localfilesystem_unix.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
//go:build darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
// +build darwin dragonfly freebsd linux netbsd openbsd solaris
package fs
import (
"fmt"
"os"
"os/user"
"strconv"
"syscall"
)
const localRoot = `/`
var extraDirPermissions Permissions = AllExecute
func hasLocalFileAttributeHidden(string) (bool, error) {
return false, nil
}
func (local *LocalFileSystem) User(filePath string) (string, error) {
if filePath == "" {
return "", ErrEmptyPath
}
filePath = expandTilde(filePath)
info, err := os.Stat(filePath)
if err != nil {
return "", err
}
stat, ok := info.Sys().(*syscall.Stat_t)
if !ok {
return "", NewErrUnsupported(local, "User")
}
u, err := user.LookupId(fmt.Sprint(stat.Uid))
if err != nil {
return "", err
}
return u.Username, nil
}
func (local *LocalFileSystem) SetUser(filePath string, username string) error {
if filePath == "" {
return ErrEmptyPath
}
filePath = expandTilde(filePath)
u, err := user.Lookup(username)
if err != nil {
return err
}
uid, err := strconv.Atoi(u.Uid)
if err != nil {
return err
}
return os.Chown(filePath, uid, -1)
}
func (local *LocalFileSystem) Group(filePath string) (string, error) {
if filePath == "" {
return "", ErrEmptyPath
}
filePath = expandTilde(filePath)
info, err := os.Stat(filePath)
if err != nil {
return "", err
}
stat, ok := info.Sys().(*syscall.Stat_t)
if !ok {
return "", NewErrUnsupported(local, "Group")
}
g, err := user.LookupGroupId(fmt.Sprint(stat.Gid))
if err != nil {
return "", err
}
return g.Name, nil
}
func (local *LocalFileSystem) SetGroup(filePath string, group string) error {
filePath = expandTilde(filePath)
if filePath == "" {
return ErrEmptyPath
}
filePath = expandTilde(filePath)
g, err := user.LookupGroup(group)
if err != nil {
return err
}
gid, err := strconv.Atoi(g.Gid)
if err != nil {
return err
}
return os.Chown(filePath, -1, gid)
}