summaryrefslogtreecommitdiff
path: root/service/static/config.go
blob: 1020b8cdc08bf91ba7f92f2a06d590954590690f (plain)
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
package static

import (
	"github.com/pkg/errors"
	"os"
	"path"
	"strings"
)

// Config describes file location and controls access to them.
type Config struct {
	// Enables StaticFile service.
	Enable bool

	// Dir contains name of directory to control access to.
	Dir string

	// Forbid specifies list of file extensions which are forbidden for access.
	// Example: .php, .exe, .bat, .htaccess and etc.
	Forbid []string
}

// Forbids must return true if file extension is not allowed for the upload.
func (cfg *Config) Forbids(filename string) bool {
	ext := strings.ToLower(path.Ext(filename))

	for _, v := range cfg.Forbid {
		if ext == v {
			return true
		}
	}

	return false
}

// Valid validates existence of directory.
func (cfg *Config) Valid() error {
	st, err := os.Stat(cfg.Dir)
	if err != nil {
		if os.IsNotExist(err) {
			return errors.New("root directory does not exists")
		}

		return err
	}

	if !st.IsDir() {
		return errors.New("invalid root directory")
	}

	return nil
}