-
Notifications
You must be signed in to change notification settings - Fork 2
/
config.go
53 lines (40 loc) · 1.35 KB
/
config.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
package static
import (
"os"
"github.com/roadrunner-server/errors"
)
// Config describes file location and controls access to them.
type Config struct {
// Dir contains name of directory to control access to.
// Default - "."
Dir string `mapstructure:"dir"`
// CalculateEtag can be true/false and used to calculate etag for the static
CalculateEtag bool `mapstructure:"calculate_etag"`
// Weak etag `W/`
Weak bool `mapstructure:"weak"`
// forbid specifies a list of file extensions which are forbidden for access.
// example: .php, .exe, .bat, .htaccess etc.
Forbid []string `mapstructure:"forbid"`
// Allow specifies a list of file extensions which are allowed for access.
// example: .php, .exe, .bat, .htaccess etc.
Allow []string `mapstructure:"allow"`
// Request headers to add to every static.
Request map[string]string `mapstructure:"request"`
// Response headers to add to every static.
Response map[string]string `mapstructure:"response"`
}
// Valid returns nil if config is valid.
func (c *Config) Valid() error {
const op = errors.Op("static_plugin_valid")
st, err := os.Stat(c.Dir)
if err != nil {
if os.IsNotExist(err) {
return errors.E(op, errors.Errorf("root directory '%s' does not exists", c.Dir))
}
return err
}
if !st.IsDir() {
return errors.E(op, errors.Errorf("invalid root directory '%s'", c.Dir))
}
return nil
}