Add filemanager.chown

This commit is contained in:
世界 2023-11-17 23:08:00 +08:00
parent d6fe25153c
commit 5b9d6eba38
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
2 changed files with 16 additions and 0 deletions

View file

@ -93,6 +93,13 @@ func (m *defaultManager) CreateTemp(pattern string) (*os.File, error) {
return file, nil
}
func (m *defaultManager) Chown(path string) error {
if m.chown {
return os.Chown(path, m.userID, m.groupID)
}
return nil
}
func (m *defaultManager) Mkdir(path string, perm os.FileMode) error {
path = m.BasePath(path)
err := os.Mkdir(path, perm)

View file

@ -12,6 +12,7 @@ type Manager interface {
OpenFile(name string, flag int, perm os.FileMode) (*os.File, error)
Create(name string) (*os.File, error)
CreateTemp(pattern string) (*os.File, error)
Chown(name string) error
Mkdir(path string, perm os.FileMode) error
MkdirAll(path string, perm os.FileMode) error
Remove(path string) error
@ -50,6 +51,14 @@ func CreateTemp(ctx context.Context, pattern string) (*os.File, error) {
return manager.CreateTemp(pattern)
}
func Chown(ctx context.Context, name string) error {
manager := service.FromContext[Manager](ctx)
if manager == nil {
return nil
}
return manager.Chown(name)
}
func Mkdir(ctx context.Context, path string, perm os.FileMode) error {
manager := service.FromContext[Manager](ctx)
if manager == nil {