blob: db50c7ddcf1afafb77a55ef26637d05d72415fc0 (
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
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
|
package static
import (
"fmt"
"os"
"path"
"strings"
"github.com/spiral/roadrunner/service"
)
// Config describes file location and controls access to them.
type Config struct {
// 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
// Always specifies list of extensions which must always be served by static
// service, even if file not found.
Always []string
// Request headers to add to every static.
Request map[string]string
// Response headers to add to every static.
Response map[string]string
}
// Hydrate must populate Config values using given Config source. Must return error if Config is not valid.
func (c *Config) Hydrate(cfg service.Config) error {
if err := cfg.Unmarshal(c); err != nil {
return err
}
return c.Valid()
}
// Valid returns nil if config is valid.
func (c *Config) Valid() error {
st, err := os.Stat(c.Dir)
if err != nil {
if os.IsNotExist(err) {
return fmt.Errorf("root directory '%s' does not exists", c.Dir)
}
return err
}
if !st.IsDir() {
return fmt.Errorf("invalid root directory '%s'", c.Dir)
}
return nil
}
// AlwaysForbid must return true if file extension is not allowed for the upload.
func (c *Config) AlwaysForbid(filename string) bool {
ext := strings.ToLower(path.Ext(filename))
for _, v := range c.Forbid {
if ext == v {
return true
}
}
return false
}
// AlwaysServe must indicate that file is expected to be served by static service.
func (c *Config) AlwaysServe(filename string) bool {
ext := strings.ToLower(path.Ext(filename))
for _, v := range c.Always {
if ext == v {
return true
}
}
return false
}
|