Skip to content
This repository was archived by the owner on Oct 20, 2023. It is now read-only.

Support readonly fileshare option #61

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 10 additions & 9 deletions app/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,16 @@ import (

// Config represents the configuration of the server application.
type Config struct {
Address string
Port string
Prefix string
Dir string
TLS *TLS
Log Logging
Realm string
Users map[string]*UserInfo
Cors Cors
Address string
Port string
Prefix string
Dir string
TLS *TLS
Log Logging
Realm string
Users map[string]*UserInfo
Cors Cors
Readonly bool
}

// Logging allows definition for logging each CRUD method.
Expand Down
18 changes: 18 additions & 0 deletions app/fs.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,10 @@ func (d Dir) resolve(ctx context.Context, name string) string {

// Mkdir resolves the physical file and delegates this to an os.Mkdir execution
func (d Dir) Mkdir(ctx context.Context, name string, perm os.FileMode) error {
if d.Config.Readonly {
return os.ErrPermission
}

if name = d.resolve(ctx, name); name == "" {
return os.ErrNotExist
}
Expand All @@ -78,6 +82,12 @@ func (d Dir) OpenFile(ctx context.Context, name string, flag int, perm os.FileMo
if name = d.resolve(ctx, name); name == "" {
return nil, os.ErrNotExist
}

// open the file read-only
if d.Config.Readonly {
flag = os.O_RDONLY
}

f, err := os.OpenFile(name, flag, perm)
if err != nil {
return nil, err
Expand All @@ -95,6 +105,10 @@ func (d Dir) OpenFile(ctx context.Context, name string, flag int, perm os.FileMo

// RemoveAll resolves the physical file and delegates this to an os.RemoveAll execution
func (d Dir) RemoveAll(ctx context.Context, name string) error {
if d.Config.Readonly {
return os.ErrPermission
}

if name = d.resolve(ctx, name); name == "" {
return os.ErrNotExist
}
Expand All @@ -120,6 +134,10 @@ func (d Dir) RemoveAll(ctx context.Context, name string) error {

// Rename resolves the physical file and delegates this to an os.Rename execution
func (d Dir) Rename(ctx context.Context, oldName, newName string) error {
if d.Config.Readonly {
return os.ErrPermission
}

if oldName = d.resolve(ctx, oldName); oldName == "" {
return os.ErrNotExist
}
Expand Down
5 changes: 5 additions & 0 deletions examples/config-sample.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,3 +69,8 @@ users:
#
#cors:
# origin: '*'

# ---------------------------- Readonly ------------------------------
# Access control, only read operations are allowed.
#
readonly: true